oboron 0.7.0

Encryption and encoding library for developer ergonomics: prefix entropy, compact outputs, high performance
Documentation
//! Z-tier obfuscation schemes (NOT cryptographically secure)
//!
//! ⚠️ **WARNING**:  Everything in this module is for OBFUSCATION ONLY.   
//! Do NOT use z-tier schemes for actual encryption or security.
//!
//! Z-tier schemes use 32-byte secrets instead of 64-byte keys.

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

mod constants;
#[cfg(feature = "legacy")]
mod legacy;
mod obz;
mod omnibz;
mod zcodec;
mod zdec;
mod zdec_auto;
mod zenc;
#[cfg(feature = "zmock")]
mod zmock1;
#[cfg(feature = "zrbcx")]
mod zrbcx;
mod zsecret;

pub(crate) use zdec::dec_from_format_ztier;
pub(crate) use zenc::enc_to_format_ztier;

// Re-export public types
#[cfg(feature = "zmock")]
pub use zcodec::{Zmock1B32, Zmock1B64, Zmock1C32, Zmock1Hex};
#[cfg(feature = "zrbcx")]
pub use zcodec::{ZrbcxB32, ZrbcxB64, ZrbcxC32, ZrbcxHex};

pub use obz::Obz;
pub use omnibz::Omnibz;

#[cfg(feature = "zmock")]
pub(crate) use zmock1::{decrypt_zmock1, encrypt_zmock1};
#[cfg(feature = "zrbcx")]
pub(crate) use zrbcx::{decrypt_zrbcx, encrypt_zrbcx};

#[cfg(feature = "legacy")]
pub use legacy::Legacy;