Trait digest::BlockInput
source · [−]pub trait BlockInput {
type BlockSize: ArrayLength<u8>;
}Expand description
Trait to indicate that digest function processes data in blocks of size
BlockSize.
The main usage of this trait is for implementing HMAC generically.
Required Associated Types
type BlockSize: ArrayLength<u8>
type BlockSize: ArrayLength<u8>
Block size
