tightbeam-rs 0.9.0

A secure, high-performance messaging protocol library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! CMS handshake message builders.
//!
//! This module provides builders for constructing CMS structures used in the
//! TightBeam handshake protocol.

pub mod enveloped_data;
pub mod error;
pub mod kari;
pub mod signed_data;

pub use enveloped_data::TightBeamEnvelopedDataBuilder;
pub use error::KariBuilderError;
pub use kari::TightBeamKariBuilder;
pub use signed_data::TightBeamSignedDataBuilder;