File size: 411 Bytes
9425aed | 1 2 3 4 5 6 7 8 9 10 11 12 13 | /// Sovereign WASM Operations — Production-Ready Cryptography & Unicode
/// Deterministic, timing-safe operations for browser cryptography
///
/// Modules:
/// - unicode_engine: NFC/NFKC normalization, code point analysis, bidi detection
/// - crypto_engine: SHA-512, Blake3, HMAC, constant-time comparison
pub mod unicode_engine;
pub mod crypto_engine;
pub use unicode_engine::*;
pub use crypto_engine::*;
|