crypto2 0.1.2

cryptographic algorithms
#![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;


// cryptographic hash function (CHF)
pub mod hash;

// Key derivation function (KDF)
pub mod kdf;

pub mod mac;

pub mod blockmode;

pub mod blockcipher;
pub mod streamcipher;
pub mod aeadcipher;


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