pub struct CShake128Core { /* private fields */ }Expand description
cSHAKE128 core hasher.
Implementations§
Source§impl CShake128Core
impl CShake128Core
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§impl BlockSizeUser for CShake128Core
impl BlockSizeUser for CShake128Core
Source§impl BufferKindUser for CShake128Core
impl BufferKindUser for CShake128Core
Source§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 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 CShake128Core
impl CustomizedInit for CShake128Core
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 CShake128Core
impl Debug for CShake128Core
Source§impl Default for CShake128Core
impl Default for CShake128Core
Source§fn default() -> CShake128Core
fn default() -> CShake128Core
Returns the “default value” for a type. Read more
Source§impl Drop for CShake128Core
impl Drop for CShake128Core
Source§impl ExtendableOutputCore for CShake128Core
impl ExtendableOutputCore for CShake128Core
Source§type ReaderCore = Sha3ReaderCore<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, B0>, B1>, B0>, B0>, B0>>
type ReaderCore = Sha3ReaderCore<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B1>, 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 CShake128Core
impl SerializableState for CShake128Core
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 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 Freeze for CShake128Core
impl RefUnwindSafe for CShake128Core
impl Send for CShake128Core
impl Sync for CShake128Core
impl Unpin for CShake128Core
impl UnsafeUnpin 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
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.