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
//! Message processors for received CMS structures.
//!
//! This module provides processors for extracting keys and data from
//! received CMS messages in the TightBeam handshake protocol.

pub mod kari;
pub use kari::TightBeamKariRecipient;

pub mod enveloped_data;
pub use enveloped_data::TightBeamEnvelopedDataProcessor;

pub mod signed_data;
pub use signed_data::TightBeamSignedDataProcessor;