logo
pub trait AlgorithmName {
    fn write_alg_name(f: &mut Formatter<'_>) -> Result;
}
Expand description

Trait which stores algorithm name constant, used in Debug implementations.

Required Methods

Write algorithm name into f.

Implementors

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