Intro
forge_hasher implement by Rust.
Hash algorithms support blake2b,keccak, sha2, sha3 currently.
Hash len support 160, 224, 256, 384, 512.
Hash round support [1, 100].
API
hash
Usage
let message = b"hello rust";
let default_hash = hash?;
let sha3_hash = hash?;
assert_eq!;