oboron 0.7.0

Encryption and encoding library for developer ergonomics: prefix entropy, compact outputs, high performance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
//! Omnibz - Multi-format z-tier codec with runtime format selection
//!
//! ⚠️ **WARNING**: Z-tier schemes provide NO cryptographic security.
//! Use only for obfuscation, never for actual encryption.

#![cfg(feature = "ztier")]

#[cfg(feature = "keyless")]
use crate::constants::HARDCODED_SECRET_BYTES;
use crate::{format::IntoFormat, Error};

use super::zdec_auto;
use super::zsecret::ZSecret;

/// A z-tier codec implementation that takes format on enc operation and autodetects on dec operation.
///
/// This is the z-tier equivalent of `Omnib`, working with 32-byte secrets instead of 64-byte keys.
/// Unlike other implementations (Obz, ZrbcxC32, etc.) it does not have a format stored internally.
///
/// This struct allows specifying the format (scheme + encoding) at enc call time,
/// and automatically detects both scheme and encoding on dec calls.
/// It is the only z-tier codec implementation that does full format autodetection.
///
/// **WARNING**: Z-tier schemes provide NO cryptographic security.
/// Use only for obfuscation, never for actual encryption.
///
/// # Examples
///
/// ```rust
/// # fn main() -> Result<(), oboron::Error> {
/// # #[cfg(all(feature = "zrbcx", feature = "zmock"))]
/// # {
/// # use oboron::ztier::Omnibz;
/// let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"; // 43 chars
/// let omz = Omnibz::new(secret)?;
///
/// // Encode with explicit format
/// let ot1 = omz.enc("hello", "zrbcx.c32")?;
/// let ot2 = omz.enc("world", "zmock1.b64")?;
///
/// // autodec detects both scheme and encoding
/// let pt1 = omz.autodec(&ot1)?;
/// let pt2 = omz.autodec(&ot2)?;
/// assert_eq!(pt1, "hello");
/// assert_eq!(pt2, "world");
/// # }
/// # Ok(())
/// # }
/// ```
pub struct Omnibz {
    zsecret: ZSecret,
}

impl Omnibz {
    /// Create a new Omnibz instance with a base64 secret.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # fn main() -> Result<(), oboron::Error> {
    /// # #[cfg(feature = "zrbcx")]
    /// # {
    /// # use oboron::ztier::Omnibz;
    /// let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"; // 43 chars
    /// let omz = Omnibz::new(secret)?;
    /// # }
    /// # Ok(())
    /// # }
    /// ```
    pub fn new(secret_b64: &str) -> Result<Self, Error> {
        Ok(Self {
            zsecret: ZSecret::from_base64(secret_b64)?,
        })
    }

    /// Create a new Omnibz instance with hardcoded secret (testing only).
    ///
    /// # Examples
    ///
    /// ```rust
    /// # fn main() -> Result<(), oboron::Error> {
    /// # #[cfg(all(feature = "zrbcx", feature = "keyless"))]
    /// # {
    /// # use oboron::ztier::Omnibz;
    /// let omz = Omnibz::new_keyless()?;
    /// let ot = omz.enc("test", "zrbcx.b64")?;
    /// # }
    /// # Ok(())
    /// # }
    /// ```
    #[cfg(feature = "keyless")]
    pub fn new_keyless() -> Result<Self, Error> {
        Ok(Self {
            zsecret: ZSecret::from_bytes(&HARDCODED_SECRET_BYTES)?,
        })
    }

    /// Encrypt and encode plaintext with the specified format.
    ///
    /// Accepts either a format string (`&str`) or a `Format` instance.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # fn main() -> Result<(), oboron::Error> {
    /// # #[cfg(feature = "zrbcx")]
    /// # {
    /// # use oboron::ztier::Omnibz;
    /// # use oboron::{Format, Scheme, Encoding};
    /// let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
    /// let omz = Omnibz::new(secret)?;
    ///
    /// // Using format string
    /// let ot1 = omz.enc("hello", "zrbcx.b64")?;
    ///
    /// // Using Format instance
    /// let ot2 = omz.enc("hello", Format::new(Scheme::Zrbcx, Encoding::B64))?;
    /// # }
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn enc(&self, plaintext: &str, format: impl IntoFormat) -> Result<String, Error> {
        let format = format.into_format()?;
        validate_ztier_scheme(format.scheme())?;
        // Pass full 32-byte secret - z-tier enc function uses it directly
        crate::ztier::enc_to_format_ztier(plaintext, format, self.zsecret.master_secret())
    }

    /// Decode and decrypt obtext with the specified format.
    ///
    /// Accepts either a format string (`&str`) or a `Format` instance.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # fn main() -> Result<(), oboron::Error> {
    /// # #[cfg(feature = "zrbcx")]
    /// # {
    /// # use oboron::ztier::Omnibz;
    /// # use oboron::{Format, Scheme, Encoding};
    /// let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
    /// let omz = Omnibz::new(secret)?;
    /// let ot = omz.enc("test", "zrbcx.b64")?;
    ///
    /// // Using format string
    /// let pt1 = omz.dec(&ot, "zrbcx.b64")?;
    ///
    /// // Using Format instance
    /// let pt2 = omz.dec(&ot, Format::new(Scheme::Zrbcx, Encoding::B64))?;
    /// # }
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn dec(&self, obtext: &str, format: impl IntoFormat) -> Result<String, Error> {
        let format = format.into_format()?;
        validate_ztier_scheme(format.scheme())?;
        // Pass full 32-byte secret - z-tier dec function uses it directly
        crate::ztier::dec_from_format_ztier(obtext, format, self.zsecret.master_secret())
    }

    /// Decode+decrypt with automatic scheme and encoding detection.
    ///
    /// Automatically detects both the z-tier scheme and encoding used.
    /// Falls back to legacy decoding if scheme detection fails.
    ///
    /// # Examples
    ///
    /// ```rust
    /// # fn main() -> Result<(), oboron::Error> {
    /// # #[cfg(feature = "zrbcx")]
    /// # {
    /// # use oboron::ztier::Omnibz;
    /// let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
    /// let omz = Omnibz::new(secret)?;
    /// let ot = omz.enc("hello", "zrbcx.b64")?;
    /// let pt2 = omz.autodec(&ot)?;  // Autodetects zrbcx.b64
    /// assert_eq!(pt2, "hello");
    /// # }
    /// # Ok(())
    /// # }
    /// ```
    pub fn autodec(&self, obtext: &str) -> Result<String, Error> {
        zdec_auto::dec_any_format_ztier(&self.zsecret, obtext)
    }

    /// Get the secret used by this instance (base64 format, 43 chars).
    ///
    /// # Examples
    ///
    /// ```rust
    /// # fn main() -> Result<(), oboron::Error> {
    /// # #[cfg(feature = "zrbcx")]
    /// # {
    /// # use oboron::ztier::Omnibz;
    /// let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
    /// let omz = Omnibz::new(secret)?;
    /// let retrieved = omz.secret();
    /// assert_eq!(retrieved, secret);
    /// assert_eq!(retrieved.len(), 43);
    /// # }
    /// # Ok(())
    /// # }
    /// ```
    pub fn secret(&self) -> String {
        self.zsecret.secret_base64()
    }

    /// Get the secret as hex (64 chars).
    ///
    /// # Examples
    ///
    /// ```rust
    /// # fn main() -> Result<(), oboron::Error> {
    /// # #[cfg(all(feature = "zrbcx", feature = "hex-keys"))]
    /// # {
    /// # use oboron::ztier::Omnibz;
    /// let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
    /// let omz = Omnibz::new(secret)?;
    /// let secret_hex = omz.secret_hex();
    /// assert_eq!(secret_hex.len(), 64); // 32 bytes = 64 hex chars
    /// # }
    /// # Ok(())
    /// # }
    /// ```
    #[cfg(feature = "hex-keys")]
    pub fn secret_hex(&self) -> String {
        self.zsecret.secret_hex()
    }

    /// Get the secret as raw bytes (32 bytes).
    ///
    /// # Examples
    ///
    /// ```rust
    /// # fn main() -> Result<(), oboron::Error> {
    /// # #[cfg(all(feature = "zrbcx", feature = "bytes-keys"))]
    /// # {
    /// # use oboron::ztier::Omnibz;
    /// let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
    /// let omz = Omnibz::new(secret)?;
    /// let secret_bytes = omz.secret_bytes();
    /// assert_eq!(secret_bytes.len(), 32);
    /// # }
    /// # Ok(())
    /// # }
    /// ```
    #[cfg(feature = "bytes-keys")]
    pub fn secret_bytes(&self) -> &[u8; 32] {
        self.zsecret.secret_bytes()
    }

    // Alt input constructors ==========================================

    /// Create a new Omnibz instance with a hex secret (64 chars).
    ///
    /// # Examples
    ///
    /// ```rust
    /// # fn main() -> Result<(), oboron::Error> {
    /// # #[cfg(all(feature = "zrbcx", feature = "hex-keys"))]
    /// # {
    /// # use oboron::ztier::Omnibz;
    /// let secret_hex = "0".repeat(64); // 32 bytes as hex
    /// let omz = Omnibz::from_secret_hex(&secret_hex)?;
    /// # }
    /// # Ok(())
    /// # }
    /// ```
    #[cfg(feature = "hex-keys")]
    pub fn from_secret_hex(secret_hex: &str) -> Result<Self, Error> {
        Ok(Self {
            zsecret: ZSecret::from_hex(secret_hex)?,
        })
    }

    /// Create a new Omnibz instance from raw secret bytes (32 bytes).
    ///
    /// # Examples
    ///
    /// ```rust
    /// # fn main() -> Result<(), oboron::Error> {
    /// # #[cfg(all(feature = "zrbcx", feature = "bytes-keys"))]
    /// # {
    /// # use oboron::ztier::Omnibz;
    /// let secret_bytes = [0u8; 32];
    /// let omz = Omnibz::from_bytes(&secret_bytes)?;
    /// # }
    /// # Ok(())
    /// # }
    /// ```
    #[cfg(feature = "bytes-keys")]
    pub fn from_bytes(secret_bytes: &[u8; 32]) -> Result<Self, Error> {
        Ok(Self {
            zsecret: ZSecret::from_bytes(secret_bytes)?,
        })
    }
}

/// Helper function to validate that a scheme is a z-tier scheme
fn validate_ztier_scheme(scheme: crate::Scheme) -> Result<(), Error> {
    match scheme {
        #[cfg(feature = "zrbcx")]
        crate::Scheme::Zrbcx => Ok(()),
        #[cfg(feature = "zmock")]
        crate::Scheme::Zmock1 => Ok(()),
        #[cfg(feature = "legacy")]
        crate::Scheme::Legacy => Ok(()),
        _ => Err(Error::InvalidScheme),
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    #[cfg(feature = "zrbcx")]
    fn test_omnibz_basic() {
        let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"; // 43 chars
        let omz = Omnibz::new(secret).unwrap();

        let plaintext = "hello world";
        let ot = omz.enc(plaintext, "zrbcx.b64").unwrap();
        let pt2 = omz.dec(&ot, "zrbcx.b64").unwrap();

        assert_eq!(pt2, plaintext);
    }

    #[test]
    #[cfg(feature = "zrbcx")]
    fn test_omnibz_autodec() {
        let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
        let omz = Omnibz::new(secret).unwrap();

        let plaintext = "test data";
        let ot = omz.enc(plaintext, "zrbcx.c32").unwrap();
        let pt2 = omz.autodec(&ot).unwrap();

        assert_eq!(pt2, plaintext);
    }

    #[test]
    #[cfg(all(feature = "zrbcx", feature = "zmock"))]
    fn test_omnibz_multiple_formats() {
        let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
        let omz = Omnibz::new(secret).unwrap();

        let plaintext = "multi format test";

        let ot1 = omz.enc(plaintext, "zrbcx.b64").unwrap();
        let ot2 = omz.enc(plaintext, "zmock1.c32").unwrap();

        let pt1 = omz.autodec(&ot1).unwrap();
        let pt2 = omz.autodec(&ot2).unwrap();

        assert_eq!(pt1, plaintext);
        assert_eq!(pt2, plaintext);
    }

    #[test]
    #[cfg(feature = "zrbcx")]
    fn test_omnibz_secret_methods() {
        let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
        let omz = Omnibz::new(secret).unwrap();

        let retrieved = omz.secret();
        assert_eq!(retrieved, secret);
        assert_eq!(retrieved.len(), 43);

        #[cfg(feature = "hex-keys")]
        {
            let secret_hex = omz.secret_hex();
            assert_eq!(secret_hex.len(), 64);
        }

        #[cfg(feature = "bytes-keys")]
        {
            let secret_bytes = omz.secret_bytes();
            assert_eq!(secret_bytes.len(), 32);
        }
    }

    #[test]
    #[cfg(all(feature = "zrbcx", feature = "keyless"))]
    fn test_omnibz_keyless() {
        let omz = Omnibz::new_keyless().unwrap();

        let plaintext = "keyless test";
        let ot = omz.enc(plaintext, "zrbcx.b64").unwrap();
        let pt2 = omz.autodec(&ot).unwrap();

        assert_eq!(pt2, plaintext);
    }

    #[test]
    #[cfg(all(feature = "zrbcx", feature = "hex-keys"))]
    fn test_omnibz_from_hex() {
        let secret_hex = "0".repeat(64);
        let omz = Omnibz::from_secret_hex(&secret_hex).unwrap();

        let plaintext = "hex secret test";
        let ot = omz.enc(plaintext, "zrbcx.b64").unwrap();
        let pt2 = omz.autodec(&ot).unwrap();

        assert_eq!(pt2, plaintext);
    }

    #[test]
    #[cfg(all(feature = "zrbcx", feature = "bytes-keys"))]
    fn test_omnibz_from_bytes() {
        let secret_bytes = [0u8; 32];
        let omz = Omnibz::from_bytes(&secret_bytes).unwrap();

        let plaintext = "bytes secret test";
        let ot = omz.enc(plaintext, "zrbcx.b64").unwrap();
        let pt2 = omz.autodec(&ot).unwrap();

        assert_eq!(pt2, plaintext);
    }

    #[test]
    #[cfg(feature = "zrbcx")]
    fn test_omnibz_rejects_non_ztier_scheme() {
        let secret = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
        let omz = Omnibz::new(secret).unwrap();

        #[cfg(feature = "aasv")]
        {
            let result = omz.enc("test", "aasv.b64");
            assert!(result.is_err());
        }
    }
}