mod error;
#[cfg(not(target_endian = "little"))]
compile_error!("Key Exchange is only supported on little-endian machines");
#[allow(clippy::module_inception)]
pub(crate) mod handshake;
pub(crate) mod handshake_state_machine;
pub(crate) mod handshake_worker;
mod initiator_state_machine;
mod responder_state_machine;