hacl 0.0.2

Crypto library using formally verified code from the HACL project
#![doc = include_str!("../README.md")]

pub mod aead;
pub mod digest;
pub mod ecdh;
pub mod ed25519;
pub mod hkdf;
pub mod hmac;
pub mod p256;
pub mod rsa_pss;
pub mod signature;
pub mod x25519;

#[cfg(feature = "hazmat")]
pub mod hazmat;

mod util;

#[cfg(feature = "random")]
pub mod rand_util;

pub mod prelude;