libsoliton 0.1.3

Core cryptographic library for the LO protocol — hybrid post-quantum key exchange, signatures, ratchet, and storage encryption
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Safe Rust wrappers over cryptographic primitives.
//!
//! Each module validates inputs and zeroizes intermediates.
//! All implementations are pure Rust — no C FFI.

pub mod aead;
pub mod argon2;
pub mod ed25519;
pub mod hkdf;
pub mod hmac;
pub mod mldsa;
pub mod mlkem;
pub mod random;
pub mod sha3_256;
pub mod x25519;
pub mod xwing;