Struct block_buffer::BlockBuffer[][src]

pub struct BlockBuffer<BlockSize: ArrayLength<u8>> { /* fields omitted */ }
Expand description

Buffer for block processing of data

Implementations

Process data in input in blocks of size BlockSize using function f.

Process data in input in blocks of size BlockSize using function f, which accepts slice of blocks.

Variant that doesn’t flush the buffer until there’s additional data to be processed. Suitable for tweakable block ciphers like Threefish that need to know whether a block is the last data block before processing it.

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

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

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

Pad message with a given padding P

Returns PadError if internall buffer is full, which can only happen if input_lazy was used.

Return size of the internall buffer in bytes

Return current cursor position

Return number of remaining bytes in the internall buffer

Reset buffer by setting cursor position to zero

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.