pub struct CShake256Core { /* private fields */ }Expand description
cSHAKE256 core hasher.
Implementations§
Source§impl CShake256Core
impl CShake256Core
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§impl BlockSizeUser for CShake256Core
impl BlockSizeUser for CShake256Core
Source§impl BufferKindUser for CShake256Core
impl BufferKindUser for CShake256Core
Source§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 duplicate 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 CustomizedInit for CShake256Core
impl CustomizedInit for CShake256Core
Source§fn new_customized(customization: &[u8]) -> Self
fn new_customized(customization: &[u8]) -> Self
Create new hasher instance with the given customization string.
Source§impl Debug for CShake256Core
impl Debug for CShake256Core
Source§impl Default for CShake256Core
impl Default for CShake256Core
Source§fn default() -> CShake256Core
fn default() -> CShake256Core
Returns the “default value” for a type. Read more
Source§impl Drop for CShake256Core
impl Drop for CShake256Core
Source§impl ExtendableOutputCore for CShake256Core
impl ExtendableOutputCore for CShake256Core
Source§type ReaderCore = Sha3ReaderCore<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>>
type ReaderCore = Sha3ReaderCore<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>>
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 SerializableState for CShake256Core
impl SerializableState for CShake256Core
Source§type SerializedStateSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>
type SerializedStateSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, B0>, B0>, B1>, B0>, B0>, B0>, B0>
Size of serialized internal state.
Source§fn serialize(&self) -> SerializedState<Self>
fn serialize(&self) -> SerializedState<Self>
Serialize and return internal state.
Source§fn deserialize(
serialized_state: &SerializedState<Self>,
) -> Result<Self, DeserializeStateError>
fn deserialize( serialized_state: &SerializedState<Self>, ) -> Result<Self, DeserializeStateError>
Create an object from serialized internal 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.
impl HashMarker for CShake256Core
Auto Trait Implementations§
impl Freeze for CShake256Core
impl RefUnwindSafe for CShake256Core
impl Send for CShake256Core
impl Sync for CShake256Core
impl Unpin for CShake256Core
impl UnsafeUnpin for CShake256Core
impl UnwindSafe for CShake256Core
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> SmallBlockSizeUser for T
impl<T> SmallBlockSizeUser for T
Source§type _BlockSize = <T as BlockSizeUser>::BlockSize
type _BlockSize = <T as BlockSizeUser>::BlockSize
Helper associated type equal to
<Self as BlockSizeUser>::BlockSize.