tightbeam-rs 0.6.2

A secure, high-performance messaging protocol library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Client-side handshake logic for TightBeam protocol.
//!
//! This module contains client-specific handshake implementations and utilities.

#[cfg(feature = "transport-cms")]
mod cms;

#[cfg(feature = "transport-cms")]
pub use cms::CmsHandshakeClient;

#[cfg(feature = "transport-ecies")]
mod ecies;

#[cfg(feature = "transport-ecies")]
pub use ecies::{EciesHandshakeClient, ExtractVerifyingKey};