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
59
60
61
62
use digest::{
consts::{U136, U32},
generic_array::GenericArray,
BlockInput, Digest, FixedOutput, Reset, Update,
};
use tiny_keccak::{Hasher, Sha3};
#[derive(Clone)]
pub struct Sha3_256(Sha3);
static_assertions::assert_impl_all!(Sha3_256: Digest);
impl Default for Sha3_256 {
#[inline]
fn default() -> Self {
Self(Sha3::v256())
}
}
impl BlockInput for Sha3_256 {
type BlockSize = U136;
}
impl Update for Sha3_256 {
#[inline]
fn update(&mut self, data: impl AsRef<[u8]>) {
self.0.update(data.as_ref());
}
}
impl Reset for Sha3_256 {
#[inline]
fn reset(&mut self) {
*self = Self::default();
}
}
impl FixedOutput for Sha3_256 {
type OutputSize = U32;
#[inline]
fn finalize_into(self, out: &mut GenericArray<u8, Self::OutputSize>) {
self.0.finalize(out.as_mut());
}
#[inline]
fn finalize_into_reset(&mut self, out: &mut GenericArray<u8, Self::OutputSize>) {
self.clone().finalize_into(out);
Reset::reset(self)
}
}