Struct sha3::CShake256Core
source · pub struct CShake256Core { /* private fields */ }
Expand description
Core CSHAKE256 hasher state.
Implementations§
source§impl CShake256Core
impl CShake256Core
sourcepub fn new(customization: &[u8]) -> Self
pub fn new(customization: &[u8]) -> Self
Creates a new CSHAKE instance with the given customization.
sourcepub fn new_with_function_name(function_name: &[u8], customization: &[u8]) -> Self
pub fn new_with_function_name(function_name: &[u8], customization: &[u8]) -> Self
Creates a new CSHAKE instance with the given function name and customization. Note that the function name is intended for use by NIST and should only be set to values defined by NIST. You probably don’t need to use this function.
Trait Implementations§
source§impl AlgorithmName for CShake256Core
impl AlgorithmName for CShake256Core
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 CShake256Core
impl BlockSizeUser for CShake256Core
source§impl BufferKindUser for CShake256Core
impl BufferKindUser for CShake256Core
§type BufferKind = Eager
type BufferKind = Eager
Block buffer kind over which type operates.
source§impl Clone for CShake256Core
impl Clone for CShake256Core
source§fn clone(&self) -> CShake256Core
fn clone(&self) -> CShake256Core
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 CShake256Core
impl Debug for CShake256Core
source§impl ExtendableOutputCore for CShake256Core
impl ExtendableOutputCore for CShake256Core
§type ReaderCore = CShake256ReaderCore
type ReaderCore = CShake256ReaderCore
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 CShake256Core
impl UpdateCore for CShake256Core
source§fn update_blocks(&mut self, blocks: &[Block<Self>])
fn update_blocks(&mut self, blocks: &[Block<Self>])
Update state using the provided data blocks.