Struct sha3::Shake128Core
source · pub struct Shake128Core { /* private fields */ }
Expand description
Core SHAKE128 hasher state.
Trait Implementations§
source§impl AlgorithmName for Shake128Core
impl AlgorithmName for Shake128Core
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 Shake128Core
impl BlockSizeUser for Shake128Core
source§impl BufferKindUser for Shake128Core
impl BufferKindUser for Shake128Core
§type BufferKind = Eager
type BufferKind = Eager
Block buffer kind over which type operates.
source§impl Clone for Shake128Core
impl Clone for Shake128Core
source§fn clone(&self) -> Shake128Core
fn clone(&self) -> Shake128Core
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 Shake128Core
impl Debug for Shake128Core
source§impl Default for Shake128Core
impl Default for Shake128Core
source§impl ExtendableOutputCore for Shake128Core
impl ExtendableOutputCore for Shake128Core
§type ReaderCore = Shake128ReaderCore
type ReaderCore = Shake128ReaderCore
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 Shake128Core
impl UpdateCore for Shake128Core
source§fn update_blocks(&mut self, blocks: &[Block<Self>])
fn update_blocks(&mut self, blocks: &[Block<Self>])
Update state using the provided data blocks.