Type Alias block_buffer::EagerBuffer

source ·
pub type EagerBuffer<B> = BlockBuffer<B, Eager>;
Expand description

Eager block buffer.

Aliased Type§

struct EagerBuffer<B> {
    pub(crate) buffer: GenericArray<u8, B>,
    pub(crate) pos: u8,
    pub(crate) _pd: PhantomData<Eager>,
}

Fields§

§buffer: GenericArray<u8, B>§pos: u8§_pd: PhantomData<Eager>

Implementations§

source§

impl<BlockSize, Kind> BlockBuffer<BlockSize, Kind>where BlockSize: ArrayLength<u8> + IsLess<U256>, Le<BlockSize, U256>: NonZero, Kind: BufferKind,

source

pub fn new(buf: &[u8]) -> Self

Create new buffer from slice.

Panics

If slice length is not valid for used buffer kind.

source

pub fn try_new(buf: &[u8]) -> Result<Self, Error>

Create new buffer from slice.

Returns an error if slice length is not valid for used buffer kind.

source

pub fn digest_blocks( &mut self, input: &[u8], compress: impl FnMut(&[Block<BlockSize>]) )

Digest data in input in blocks of size BlockSize using the compress function, which accepts slice of blocks.

source

pub fn reset(&mut self)

Reset buffer by setting cursor position to zero.

source

pub fn pad_with_zeros(&mut self) -> &mut Block<BlockSize>

Pad remaining data with zeros and return resulting block.

source

pub fn get_pos(&self) -> usize

Return current cursor position.

source

pub fn get_data(&self) -> &[u8]

Return slice of data stored inside the buffer.

source

pub fn set(&mut self, buf: Block<BlockSize>, pos: usize)

Set buffer content and cursor position.

Panics

If pos is bigger or equal to block size.

source

pub fn size(&self) -> usize

Return size of the internal buffer in bytes.

source

pub fn remaining(&self) -> usize

Return number of remaining bytes in the internal buffer.

source

pub(crate) fn set_pos_unchecked(&mut self, pos: usize)

source§

impl<BlockSize> BlockBuffer<BlockSize, Eager>where BlockSize: ArrayLength<u8> + IsLess<U256>, Le<BlockSize, U256>: NonZero,

source

pub fn set_data( &mut self, data: &mut [u8], process_blocks: impl FnMut(&mut [Block<BlockSize>]) )

Set data to generated blocks.

source

pub fn digest_pad( &mut self, delim: u8, suffix: &[u8], compress: impl FnMut(&Block<BlockSize>) )

Compress remaining data after padding it with delim, zeros and the suffix bytes. If there is not enough unused space, compress will be called twice.

Panics

If suffix length is bigger than block size.

source

pub fn len64_padding_be( &mut self, data_len: u64, compress: impl FnMut(&Block<BlockSize>) )

Pad message with 0x80, zeros and 64-bit message length using big-endian byte order.

source

pub fn len64_padding_le( &mut self, data_len: u64, compress: impl FnMut(&Block<BlockSize>) )

Pad message with 0x80, zeros and 64-bit message length using little-endian byte order.

source

pub fn len128_padding_be( &mut self, data_len: u128, compress: impl FnMut(&Block<BlockSize>) )

Pad message with 0x80, zeros and 128-bit message length using big-endian byte order.

Trait Implementations§

source§

impl<BlockSize, Kind> Clone for BlockBuffer<BlockSize, Kind>where BlockSize: ArrayLength<u8> + IsLess<U256>, Le<BlockSize, U256>: NonZero, Kind: BufferKind,

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<BlockSize, Kind> Debug for BlockBuffer<BlockSize, Kind>where BlockSize: ArrayLength<u8> + IsLess<U256> + Debug, Le<BlockSize, U256>: NonZero, Kind: BufferKind + Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<BlockSize, Kind> Default for BlockBuffer<BlockSize, Kind>where BlockSize: ArrayLength<u8> + IsLess<U256>, Le<BlockSize, U256>: NonZero, Kind: BufferKind,

source§

fn default() -> Self

Returns the “default value” for a type. Read more