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

    fn read_boxed(&mut self, n: usize) -> Box<[u8], Global>Notable traits for Box<W, Global>impl<W> Write for Box<W, Global> where
    W: Write + ?Sized
impl<R> Read for Box<R, Global> where
    R: Read + ?Sized
impl<F, A> Future for Box<F, A> where
    F: Future + Unpin + ?Sized,
    A: Allocator + 'static, 
type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
    I: Iterator + ?Sized,
    A: Allocator
type Item = <I as Iterator>::Item;
{ ... } }
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.

Provided Methods

Read output into a boxed slice of the specified size.

Can be called an unlimited number of times in combination with read.

Box<[u8]> is used instead of Vec<u8> to save stack space, since they have size of 2 and 3 words respectively.

Implementors