[][src]Trait digest::FixedOutput

pub trait FixedOutput {
    type OutputSize: ArrayLength<u8>;
    fn fixed_result(self) -> GenericArray<u8, Self::OutputSize>;
}

Trait for returning digest result with the fixed size

Associated Types

Loading content...

Required methods

fn fixed_result(self) -> GenericArray<u8, Self::OutputSize>

Retrieve result and consume hasher instance.

Loading content...

Implementors

Loading content...