openmls 0.4.1

This is a WIP Rust implementation of the Messaging Layer Security (MLS) protocol based on draft 12+.
Documentation
//! Unit tests for the core group

#[cfg(feature = "test-utils")]
pub mod kat_messages;

#[cfg(feature = "test-utils")]
pub mod kat_transcripts;

#[cfg(test)]
mod test_commit_validation;
#[cfg(test)]
mod test_encoding;
#[cfg(test)]
mod test_external_commit_validation;
#[cfg(test)]
mod test_framing;
#[cfg(test)]
mod test_framing_validation;
#[cfg(test)]
mod test_group;
#[cfg(test)]
mod test_past_secrets;
#[cfg(test)]
mod test_proposal_validation;
#[cfg(test)]
mod test_remove_operation;
#[cfg(test)]
mod test_wire_format_policy;
#[cfg(test)]
pub(crate) mod utils;

pub(crate) mod tree_printing;