[][src]Trait digest::UpdateCore

pub trait UpdateCore {
    type BlockSize: ArrayLength<u8>;
    pub fn update_blocks(
        &mut self,
        blocks: &[GenericArray<u8, Self::BlockSize>]
    ); }

Trait for updating hasher state with input data divided into blocks.

Associated Types

type BlockSize: ArrayLength<u8>[src]

Block size in bytes.

Loading content...

Required methods

pub fn update_blocks(&mut self, blocks: &[GenericArray<u8, Self::BlockSize>])[src]

Update the hasher state using the provided data.

Loading content...

Implementors

Loading content...