Trait XofReaderCore

Source
pub trait XofReaderCore: BlockSizeUser {
    // Required method
    fn read_block(&mut self) -> GenericArray<u8, Self::BlockSize>;
}
Expand description

Core reader trait for extendable-output function (XOF) result.

Required Methods§

Source

fn read_block(&mut self) -> GenericArray<u8, Self::BlockSize>

Read next XOF block.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl XofReaderCore for CShake128ReaderCore

Source§

impl XofReaderCore for CShake256ReaderCore

Source§

impl XofReaderCore for Shake128ReaderCore

Source§

impl XofReaderCore for Shake256ReaderCore

Source§

impl XofReaderCore for TurboShake128ReaderCore

Source§

impl XofReaderCore for TurboShake256ReaderCore

Implementors§