Struct sha3::TurboShake128Core
source · pub struct TurboShake128Core { /* private fields */ }
Expand description
Core TurboSHAKE128 hasher state.
Implementations§
Trait Implementations§
source§impl AlgorithmName for TurboShake128Core
impl AlgorithmName for TurboShake128Core
source§fn write_alg_name(f: &mut Formatter<'_>) -> Result
fn write_alg_name(f: &mut Formatter<'_>) -> Result
Write algorithm name into
f
.source§impl BlockSizeUser for TurboShake128Core
impl BlockSizeUser for TurboShake128Core
source§impl BufferKindUser for TurboShake128Core
impl BufferKindUser for TurboShake128Core
§type BufferKind = Eager
type BufferKind = Eager
Block buffer kind over which type operates.
source§impl Clone for TurboShake128Core
impl Clone for TurboShake128Core
source§fn clone(&self) -> TurboShake128Core
fn clone(&self) -> TurboShake128Core
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TurboShake128Core
impl Debug for TurboShake128Core
source§impl ExtendableOutputCore for TurboShake128Core
impl ExtendableOutputCore for TurboShake128Core
§type ReaderCore = TurboShake128ReaderCore
type ReaderCore = TurboShake128ReaderCore
XOF reader core state.
source§fn finalize_xof_core(&mut self, buffer: &mut Buffer<Self>) -> Self::ReaderCore
fn finalize_xof_core(&mut self, buffer: &mut Buffer<Self>) -> Self::ReaderCore
Retrieve XOF reader using remaining data stored in the block buffer
and leave hasher in a dirty state. Read more
source§impl UpdateCore for TurboShake128Core
impl UpdateCore for TurboShake128Core
source§fn update_blocks(&mut self, blocks: &[Block<Self>])
fn update_blocks(&mut self, blocks: &[Block<Self>])
Update state using the provided data blocks.