libmhash 0.2.1

A file hashing library that can do multiple hashes for multile files at the same time.
Documentation
mod common;
mod crc32;
mod hash_helper;
mod hasher;
mod md2;
mod md4;
mod md5;
mod sha1;
mod sha2;
mod sha3;
mod tester;

pub use self::sha1::SHA1;
pub use self::sha2::SHA2_224;
pub use self::sha2::SHA2_256;
pub use self::sha2::SHA2_384;
pub use self::sha2::SHA2_512;
pub use crc32::CRC32;
pub use crc32::CRC32C;
pub use hasher::Hasher;
pub use hasher::HasherTag;
pub use md2::MD2;
pub use md4::MD4;
pub use md5::MD5;
pub use sha3::SHA3_224;
pub use sha3::SHA3_256;
pub use sha3::SHA3_384;
pub use sha3::SHA3_512;