pub trait XofReader {
    fn read(&mut self, buffer: &mut [u8]);
}
Expand description

Trait for reader types which are used to extract extendable output from a XOF (extendable-output function) result.

Required Methods

Read output into the buffer. Can be called an unlimited number of times.

Implementors