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

Types which consume data in blocks.

Required Methods

Update state using the provided data blocks.

Implementations on Foreign Types

Implementors