Crate big_hash

Source
Expand description

Compute MD5, SHA256, and SHA512 hashes of data through the core::hash API.

§Be warned that:

Structs§

Md5Hasher
Glue between core::hash and md5.
Sha256Hasher
Glue between core::hash and hmac_sha256.
Sha512Hasher
Glue between core::hash and hmac_sha512.

Functions§

md5_hash
Compute an MD5 digest through the core::hash API.
sha256_hash
Compute an SHA256 hash through the core::hash API.
sha512_hash
Compute an SHA512 hash through the core::hash API.