phantom_protocol/crypto/mod.rs
1pub mod adaptive_crypto;
2pub mod aes_session;
3pub mod cid_chain;
4pub mod header_protection;
5pub mod hybrid_kem;
6pub mod hybrid_sign;
7pub mod kdf;
8pub mod pow;
9pub mod rng;
10pub mod self_tests;
11// `keys.rs` previously wrapped pqcrypto-* opaque secret keys with manual
12// `unsafe` `ptr::write_volatile` zeroing. After Phase 5.1 we use ml-kem /
13// ml-dsa types that implement `Zeroize` natively, so this module is gone
14// — one fewer `#[allow(unsafe_code)]` opt-in in the crate.