[][src]Trait digest::Update

pub trait Update {
    fn update(&mut self, data: &[u8]);
}

Trait for updating hasher state with input data.

Required methods

fn update(&mut self, data: &[u8])[src]

Update the hasher state using the provided data.

Loading content...

Implementors

impl<D: UpdateCore> Update for UpdateCoreWrapper<D>[src]

Loading content...