openmls 0.9.0-rc.1

A Rust implementation of the Messaging Layer Security (MLS) protocol, as defined in RFC 9420.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Test and Known Answer Test (KAT) modules for the MLS group.

mod commit_builder_leaf_node_validation;
mod external_init;
mod mls_group;
mod past_secrets;
// Pulls in `openmls_sqlite_storage` and `openmls_libcrux_crypto`
// directly, so it is only compiled when both providers are enabled.
#[cfg(all(feature = "sqlite-provider", feature = "libcrux-provider"))]
mod past_secrets_storage_compatibility;
mod proposals;
mod secret_tree_persistence;