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
use crate::digest::Digest;
use crate::hashing::ripemd160;
#[derive(Clone)]
pub struct Ripemd160 {
    ctx: ripemd160::Context,
    computed: bool,
}
impl Ripemd160 {
    pub const fn new() -> Ripemd160 {
        Ripemd160 {
            ctx: ripemd160::Ripemd160::new(),
            computed: false,
        }
    }
}
impl Digest for Ripemd160 {
    fn reset(&mut self) {
        self.ctx.reset();
        self.computed = false;
    }
    fn input(&mut self, msg: &[u8]) {
        assert!(!self.computed, "context is already finalized, needs reset");
        self.ctx.update_mut(msg);
    }
    fn result(&mut self, slice: &mut [u8]) {
        assert!(!self.computed, "context is already finalized, needs reset");
        self.computed = true;
        slice.copy_from_slice(&self.ctx.finalize_reset());
    }
    fn output_bits(&self) -> usize {
        ripemd160::Ripemd160::OUTPUT_BITS
    }
    fn block_size(&self) -> usize {
        ripemd160::Ripemd160::BLOCK_BYTES
    }
}