Struct sha3::Shake256Core
source · pub struct Shake256Core { /* private fields */ }
Expand description
Core SHAKE256 hasher state.
Trait Implementations§
source§impl AlgorithmName for Shake256Core
impl AlgorithmName for Shake256Core
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 Shake256Core
impl BlockSizeUser for Shake256Core
source§impl BufferKindUser for Shake256Core
impl BufferKindUser for Shake256Core
§type BufferKind = Eager
type BufferKind = Eager
Block buffer kind over which type operates.
source§impl Clone for Shake256Core
impl Clone for Shake256Core
source§fn clone(&self) -> Shake256Core
fn clone(&self) -> Shake256Core
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 Shake256Core
impl Debug for Shake256Core
source§impl Default for Shake256Core
impl Default for Shake256Core
source§impl ExtendableOutputCore for Shake256Core
impl ExtendableOutputCore for Shake256Core
§type ReaderCore = Shake256ReaderCore
type ReaderCore = Shake256ReaderCore
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 Shake256Core
impl UpdateCore for Shake256Core
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 Shake256Core
Auto Trait Implementations§
impl RefUnwindSafe for Shake256Core
impl Send for Shake256Core
impl Sync for Shake256Core
impl Unpin for Shake256Core
impl UnwindSafe for Shake256Core
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