Skip to main content

pqcrypto_std/
lib.rs

1//! This library implements standardized quantum-resistand cryptographic algorithms.
2//!
3//! Currently supports [ML-DSA](mldsa) for signatures and [ML-KEM](mlkem) key encapsulation.
4
5#![cfg_attr(not(test), no_std)]
6#![allow(clippy::identity_op)]
7
8pub mod mldsa;
9pub mod mlkem;
10
11mod hash;