dcrypt_kem/
lib.rs

1//! Key Encapsulation Mechanisms (KEM) and Key Exchange
2//!
3//! This crate implements various key encapsulation mechanisms and key exchange
4//! protocols, both traditional and post-quantum.
5
6#![cfg_attr(not(feature = "std"), no_std)]
7
8pub mod ecdh;
9pub mod error;
10pub mod kyber;
11
12// Re-exports
13pub use ecdh::{EcdhP192, EcdhP224, EcdhP256, EcdhP384, EcdhP521}; // Added EcdhP192
14pub use kyber::{Kyber1024, Kyber512, Kyber768};