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
}
}