brec 0.6.0

A flexible binary format for storing and streaming structured data as packets with CRC protection and recoverability from corruption. Built for extensibility and robustness.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod algorithm;
mod codec;
mod consts;
pub mod error;
pub mod options;
mod record;

pub use algorithm::CryptAlgorithm;
pub use codec::CryptCodec;
pub use error::{CryptError, CryptResult};
pub use options::{CryptPolicy, DecryptOptions, EncryptOptions};
pub use record::CryptEnvelopeRecord;