pub trait BlockSizeUser {
    type BlockSize: ArrayLength<u8> + 'static;

    // Provided method
    fn block_size() -> usize { ... }
}
Expand description

Types which process data in blocks.

Required Associated Types§

source

type BlockSize: ArrayLength<u8> + 'static

Size of the block in bytes.

Provided Methods§

source

fn block_size() -> usize

Return block size in bytes.

Implementations on Foreign Types§

source§

impl<T> BlockSizeUser for &Twhere T: BlockSizeUser,

source§

impl<T> BlockSizeUser for &mut Twhere T: BlockSizeUser,

Implementors§

source§

impl<T> BlockSizeUser for CoreWrapper<T>where T: BufferKindUser + HashMarker, T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,

source§

impl<T, OutSize, O> BlockSizeUser for CtVariableCoreWrapper<T, OutSize, O>where T: VariableOutputCore, OutSize: ArrayLength<u8> + IsLessOrEqual<T::OutputSize>, LeEq<OutSize, T::OutputSize>: NonZero, T::BlockSize: IsLess<U256>, Le<T::BlockSize, U256>: NonZero,