//! Handshake primitives for building custom protocols.
//!
//! This module provides composable building blocks for implementing
//! custom handshake protocols like PQXDH. These primitives handle:
//! - Multi-input key derivation functions
//! - Transcript hashing utilities
//! - Prekey bundle ASN.1 structures
/// UNSTABLE: PQXDH prekey structures; no orchestrator consumes them yet.
/// Gated behind `unstable-pqxdh` until an end-to-end protocol exists.
pub use multi_input_kdf;
pub use transcript_hash;
pub use kdf_chain;
pub use ;