light_double_ratchet/lib.rs
1//! This crate implements the [Double Ratchet][a] algorithm in Rust. The cryptographic algorithm
2//! enables forward secrecy and break-in recovery for texting apps, and is used by Signal, WhatsApp,
3//! among others.
4//!
5//! _Currently in development._
6//!
7//! <div class="warning">
8//!
9//! The implementation has *not* been audited for security. USE AT YOUR OWN RISK.
10//!
11//! </div>
12//!
13//! [a]: https://en.wikipedia.org/wiki/Double_Ratchet_Algorithm
14
15#![warn(missing_docs)]
16
17pub mod kdf_chains;