pub trait BufferKindUser: BlockSizeUser {
    type BufferKind: BufferKind;
}
Expand description

Types which use BlockBuffer functionality.

Required Associated Types§

source

type BufferKind: BufferKind

Block buffer kind over which type operates.

Object Safety§

This trait is not object safe.

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,