crypt_guard 3.0.1

CryptGuard is a post-quantum cryptography framework with NIST FIPS 203/204/205 (ML-KEM, ML-DSA, SLH-DSA) plus legacy Kyber/Falcon/Dilithium, combined with AES and XChaCha20.
Documentation
1
2
3
4
5
6
7
8
use crypt_guard::Encryptor;
use crypt_guard::{MlKem768, XChaCha20Poly1305};

fn main() {
    let _ = Encryptor::<MlKem768, XChaCha20Poly1305>::new()
        .recipient(vec![0u8; 32])
        .seal();
}