x0x 0.17.1

Agent-to-agent gossip network for AI systems — no winners, no losers, just cooperation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! MLS (Messaging Layer Security) group encryption for secure agent communication.
//!
//! This module provides end-to-end encryption for group communications using
//! MLS-inspired protocols with ChaCha20-Poly1305 AEAD encryption.

pub mod cipher;
pub mod error;
pub mod group;
pub mod keys;
pub mod welcome;

pub use cipher::MlsCipher;
pub use error::{MlsError, Result};
pub use group::{CommitOperation, MlsCommit, MlsGroup, MlsGroupContext, MlsMemberInfo};
pub use keys::MlsKeySchedule;
pub use welcome::MlsWelcome;