ahsah 2.1.0

Incremental hashing contexts for MD5 and SHA-2 with reader helpers and optional SIMD decode paths
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod md5;
mod sha2;
mod sha224;
mod sha256;
mod sha384;
mod sha512;
#[cfg(feature = "simd")]
mod simd;

pub use md5::{Md5, MD5};
pub use sha224::Sha224;
pub use sha256::Sha256;
pub use sha384::Sha384;
pub use sha512::Sha512;