rmls 0.0.4

Messaging Layer Security in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]
#![warn(rust_2018_idioms)]
#![allow(dead_code)]

pub mod crypto;
pub mod framing;
pub mod group;
pub mod key_package;
pub mod key_schedule;
pub mod ratchet_tree;
pub mod secret_tree;
pub mod utilities;