#![feature(asm)]
#![feature(box_syntax)]
#![feature(simd)]
#![feature(slicing_syntax)]
#![allow(unstable)]
extern crate "rustc-serialize" as serialize;
extern crate time;
#[cfg(test)] extern crate test;
pub mod aead;
pub mod aes;
pub mod aes_gcm;
pub mod aessafe;
pub mod bcrypt;
pub mod bcrypt_pbkdf;
pub mod blake2b;
pub mod blockmodes;
pub mod blowfish;
pub mod buffer;
pub mod chacha20;
pub mod chacha20poly1305;
mod cryptoutil;
pub mod curve25519;
pub mod digest;
pub mod ed25519;
pub mod fortuna;
pub mod ghash;
pub mod hmac;
pub mod hkdf;
pub mod mac;
pub mod md5;
pub mod pbkdf2;
pub mod poly1305;
pub mod rc4;
pub mod ripemd160;
pub mod salsa20;
pub mod scrypt;
pub mod sha1;
pub mod sha2;
pub mod symmetriccipher;
pub mod util;
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub mod aesni;