Trait digest::Update[][src]

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]

This is supported on crate feature core-api only.

impl<T> Update for RtVariableCoreWrapper<T> where
    T: VariableOutputCore + UpdateCore
[src]

This is supported on crate feature core-api only.
Loading content...