Trait digest::ExtendableOutput[][src]

pub trait ExtendableOutput {
    type Reader: XofReader;
    fn xof_result(self) -> Self::Reader;
}

Trait which describes extendable output (XOF) of hash functions. Using this trait you first need to get structure which implements XofReader, using which you can read extendable output.

Associated Types

Required Methods

Finalize hash function and return XOF reader

Implementors