pub struct KangarooTwelveCore<'cs> { /* private fields */ }Expand description
Core KangarooTwelve hasher state.
Implementations§
Trait Implementations§
Source§impl AlgorithmName for KangarooTwelveCore<'_>
impl AlgorithmName for KangarooTwelveCore<'_>
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 KangarooTwelveCore<'_>
impl BlockSizeUser for KangarooTwelveCore<'_>
Source§impl BufferKindUser for KangarooTwelveCore<'_>
impl BufferKindUser for KangarooTwelveCore<'_>
Source§type BufferKind = Eager
type BufferKind = Eager
Block buffer kind over which type operates.
Source§impl<'cs> Clone for KangarooTwelveCore<'cs>
impl<'cs> Clone for KangarooTwelveCore<'cs>
Source§fn clone(&self) -> KangarooTwelveCore<'cs>
fn clone(&self) -> KangarooTwelveCore<'cs>
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 Debug for KangarooTwelveCore<'_>
impl Debug for KangarooTwelveCore<'_>
Source§impl Default for KangarooTwelveCore<'_>
impl Default for KangarooTwelveCore<'_>
Source§impl ExtendableOutputCore for KangarooTwelveCore<'_>
impl ExtendableOutputCore for KangarooTwelveCore<'_>
Source§type ReaderCore = KangarooTwelveReaderCore
type ReaderCore = KangarooTwelveReaderCore
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 Reset for KangarooTwelveCore<'_>
impl Reset for KangarooTwelveCore<'_>
Source§impl UpdateCore for KangarooTwelveCore<'_>
impl UpdateCore for KangarooTwelveCore<'_>
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 KangarooTwelveCore<'_>
Auto Trait Implementations§
impl<'cs> Freeze for KangarooTwelveCore<'cs>
impl<'cs> RefUnwindSafe for KangarooTwelveCore<'cs>
impl<'cs> Send for KangarooTwelveCore<'cs>
impl<'cs> Sync for KangarooTwelveCore<'cs>
impl<'cs> Unpin for KangarooTwelveCore<'cs>
impl<'cs> UnwindSafe for KangarooTwelveCore<'cs>
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