[go: up one dir, main page]

[][src]Trait digest::Update

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

Trait for updating hasher state with input data.

Required methods

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

Update the hasher state using the provided data.

Loading content...

Implementors

impl<D: UpdateCore> Update for CoreWrapper<D, D::BlockSize>[src]

Loading content...