1 2 3 4 5 6 7 8 9 10 11 12 13
#![no_std]
//! This crate implements RustCrypto traits on top of the `pqcrypto` crate. It exposes all the
//! functionality of `pqcrypto` as well.
//!
//! The signature schemes implement `Signer`, `Verifier`, and `Signature` from RustCrypto's
//! `signature` crate.
//!
//! The KEMs implement `Encapsulator`, `Decapsulator`, and `EncappedKey` from RustCrypto's `kem`
//! crate.
pub mod kem;
pub mod sign;