latticearc 0.5.1

Production-ready post-quantum cryptography. Hybrid ML-KEM+X25519 by default, all 4 NIST standards (FIPS 203–206), post-quantum TLS, and FIPS 140-3 backend — one crate, zero unsafe.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![deny(unsafe_code)]
#![deny(missing_docs)]
#![deny(clippy::unwrap_used)]
#![deny(clippy::panic)]

//! Cryptographically Secure Random Number Generation
//!
//! Provides CSPRNG implementations and entropy health tests.

pub mod csprng;
pub mod entropy_tests;

// Re-exports
pub use csprng::*;
pub use entropy_tests::{
    frequency_test, repetition_test, run_entropy_health_tests, run_entropy_health_tests_on_bytes,
};