Hasher
Package hasher provides a Hasher trait.
Add this to your Cargo.toml:
[]
= "0.1"
Supported algorithms
- blake2b
- keccak
- sm3
Test
$ cargo test --all-features
Package hasher provides a Hasher trait.
pub trait Hasher {
const LENGTH: usize;
fn digest(&self, data: &[u8]) -> Vec<u8>;
}
Add this to your Cargo.toml:
[dependencies]
hasher = "0.1"
$ cargo test --all-features