pqcrypto-std 0.3.0

Standardized quantum-resistant cryptographic primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This library implements standardized quantum-resistand cryptographic algorithms.
//!
//! Currently supports [ML-DSA](mldsa) for signatures and [ML-KEM](mlkem) key encapsulation.

#![cfg_attr(not(test), no_std)]
#![allow(clippy::identity_op)]

pub mod mldsa;
pub mod mlkem;

mod hash;