#![cfg_attr(test, feature(test))]
#![feature(stdsimd, llvm_asm)]
#![allow(unused_macros, unused_assignments)]
#[cfg(test)]
extern crate test;
#[cfg(test)]
extern crate hex;
mod util;
pub mod mem;
pub mod hash;
pub mod kdf;
pub mod mac;
pub mod blockmode;
pub mod blockcipher;
pub mod streamcipher;
pub mod aeadcipher;
#[cfg(feature = "openssh")]
pub mod openssh;