| /// 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::*; | |