1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
use hash_db::Hasher;
use tiny_keccak::{Hasher as _, Keccak};
use hash256_std_hasher::Hash256StdHasher;
#[derive(Default, Debug, Clone, PartialEq)]
pub struct KeccakHasher;
impl Hasher for KeccakHasher {
type Out = [u8; 32];
type StdHasher = Hash256StdHasher;
const LENGTH: usize = 32;
fn hash(x: &[u8]) -> Self::Out {
let mut keccak = Keccak::v256();
keccak.update(x);
let mut out = [0u8; 32];
keccak.finalize(&mut out);
out
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::collections::HashMap;
#[test]
fn hash256_std_hasher_works() {
let hello_bytes = b"Hello world!";
let hello_key = KeccakHasher::hash(hello_bytes);
let mut h: HashMap<<KeccakHasher as Hasher>::Out, Vec<u8>> = Default::default();
h.insert(hello_key, hello_bytes.to_vec());
h.remove(&hello_key);
let mut h: HashMap<<KeccakHasher as Hasher>::Out, Vec<u8>, std::hash::BuildHasherDefault<Hash256StdHasher>> = Default::default();
h.insert(hello_key, hello_bytes.to_vec());
h.remove(&hello_key);
}
}