pub trait BufferKindUser: BlockSizeUser {
    type BufferKind: BufferKind;
}
Available on crate feature core-api only.
Expand description

Types which use BlockBuffer functionality.

Required Associated Types§

source

type BufferKind: BufferKind

Block buffer kind over which type operates.

Implementors§

source§

impl<T, OutSize, O> BufferKindUser 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,