1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Server-side handshake logic for TightBeam protocol. //! //! This module contains server-specific handshake implementations and utilities. #[cfg(feature = "transport-cms")] mod cms; #[cfg(feature = "transport-cms")] pub use cms::CmsHandshakeServer; #[cfg(feature = "transport-ecies")] mod ecies; #[cfg(feature = "transport-ecies")] pub use ecies::EciesHandshakeServer;