Struct sha3::CShake128Core
source · pub struct CShake128Core { /* private fields */ }
Expand description
Core CSHAKE128 hasher state.
Implementations§
source§impl CShake128Core
impl CShake128Core
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 CShake128Core
impl AlgorithmName for CShake128Core
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 CShake128Core
impl BlockSizeUser for CShake128Core
source§impl BufferKindUser for CShake128Core
impl BufferKindUser for CShake128Core
§type BufferKind = Eager
type BufferKind = Eager
Block buffer kind over which type operates.
source§impl Clone for CShake128Core
impl Clone for CShake128Core
source§fn clone(&self) -> CShake128Core
fn clone(&self) -> CShake128Core
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 CShake128Core
impl Debug for CShake128Core
source§impl ExtendableOutputCore for CShake128Core
impl ExtendableOutputCore for CShake128Core
§type ReaderCore = CShake128ReaderCore
type ReaderCore = CShake128ReaderCore
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.
source§impl UpdateCore for CShake128Core
impl UpdateCore for CShake128Core
source§fn update_blocks(&mut self, blocks: &[Block<Self>])
fn update_blocks(&mut self, blocks: &[Block<Self>])
Update state using the provided data blocks.
impl HashMarker for CShake128Core
Auto Trait Implementations§
impl RefUnwindSafe for CShake128Core
impl Send for CShake128Core
impl Sync for CShake128Core
impl Unpin for CShake128Core
impl UnwindSafe for CShake128Core
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more