phantom-protocol 0.1.0

Phantom Universal Transport Core SDK — post-quantum secure L4/L6 network framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod adaptive_crypto;
pub mod aes_session;
pub mod hybrid_kem;
pub mod hybrid_sign;
pub mod kdf;
pub mod pow;
pub mod rng;
pub mod self_tests;
// `keys.rs` previously wrapped pqcrypto-* opaque secret keys with manual
// `unsafe` `ptr::write_volatile` zeroing. After Phase 5.1 we use ml-kem /
// ml-dsa types that implement `Zeroize` natively, so this module is gone
// — one fewer `#[allow(unsafe_code)]` opt-in in the crate.