// File: crates/hybrid/src/kem/mod.rs
//! Hybrid Key Encapsulation Mechanisms (KEMs).
//!
//! This module provides KEMs that combine a classical primitive (like ECDH)
//! with a post-quantum primitive (like ML-KEM) to provide security against
//! both classical and quantum adversaries.
// Internal modules
pub
// Concrete hybrid KEM implementations
// Tests
// Re-export the primary hybrid KEM structs for easy access.
pub use EcdhK256MlKem512;
pub use EcdhP256MlKem512;
pub use EcdhP256MlKem768;
pub use EcdhP384MlKem1024;
pub use EcdhP521MlKem1024;
pub use HybridSharedSecret;