zoe_wire_protocol/inbox/
mod.rs

1//! Inbox system for asynchronous message protocols
2//!
3//! This module provides the infrastructure for PQXDH-based inboxes that allow
4//! asynchronous secure communication establishment.
5
6pub mod pqxdh;
7
8pub use pqxdh::*;