//! Key-exchange algorithms.
//!
//! Each algorithm produces a shared secret `K` and an exchange hash `H`. `H`
//! is the session identifier on the first KEX, and is what host-key signatures
//! cover. `K` and `H` together seed the key derivation (RFC 4253 ยง7.2).
pub use ;
pub use Curve25519Sha256;
pub use ;
pub use ;
pub use ;
/// Trait implemented by each KEX algorithm module.