RustCrypto: SHA-3
Pure Rust implementation of the SHA-3 cryptographic hash algorithms.
There are 6 standard algorithms specified in the SHA-3 standard:
SHA3-224,SHA3-256,SHA3-384,SHA3-512SHAKE128andSHAKE256(an extendable output function (XOF))
Additionally, this crate supports:
cSHAKE128andcSHAKE256the customizable XOFs as defined in the NIST SHA-3 Derived FunctionsTurboSHAKEXOF variant- CryptoNight variant of SHA-3
Keccak224,Keccak256,Keccak384,Keccak512(NIST submission without padding changes)
Examples
Output size of SHA3-256 is fixed, so its functionality is usually
accessed via the Digest trait:
use hex;
use ;
let mut hasher = new;
hasher.update;
let hash = hasher.finalize;
assert_eq!;
// Hex-encode hash using https://docs.rs/base16ct
let hex_hash = encode_string;
assert_eq!;
SHAKE functions have an extendable output, so finalization method returns
XOF reader from which results of arbitrary length can be read. Note that
these functions do not implement Digest, so lower-level traits have to
be imported:
use ;
use hex;
let mut hasher = default;
hasher.update;
let mut reader = hasher.finalize_xof;
let mut buf = ;
reader.read;
assert_eq!;
Also, see the examples section in the RustCrypto/hashes readme.
License
The crate is licensed under either of:
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.