Trait Update
digest
pub trait Update { pub fn update(&mut self, data: &[u8]); }
Trait for updating hasher state with input data.
pub fn update(&mut self, data: &[u8])
Update the hasher state using the provided data.
impl<D: UpdateCore> Update for CoreWrapper<D, D::BlockSize>
pub fn update(&mut self, input: &[u8])