SNAPKITTYWEST's picture
chore: push full sov-kernel-monster content from local build
9425aed verified
Raw
History Blame Contribute Delete
411 Bytes
/// 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::*;