Struct sha3::Sha3_224Core
source · pub struct Sha3_224Core { /* private fields */ }
Expand description
Core SHA-3-224 hasher state.
Trait Implementations§
source§impl AlgorithmName for Sha3_224Core
impl AlgorithmName for Sha3_224Core
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 Sha3_224Core
impl BlockSizeUser for Sha3_224Core
source§impl BufferKindUser for Sha3_224Core
impl BufferKindUser for Sha3_224Core
§type BufferKind = Eager
type BufferKind = Eager
Block buffer kind over which type operates.
source§impl Clone for Sha3_224Core
impl Clone for Sha3_224Core
source§fn clone(&self) -> Sha3_224Core
fn clone(&self) -> Sha3_224Core
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 Sha3_224Core
impl Debug for Sha3_224Core
source§impl Default for Sha3_224Core
impl Default for Sha3_224Core
source§impl FixedOutputCore for Sha3_224Core
impl FixedOutputCore for Sha3_224Core
source§fn finalize_fixed_core(
&mut self,
buffer: &mut Buffer<Self>,
out: &mut Output<Self>
)
fn finalize_fixed_core( &mut self, buffer: &mut Buffer<Self>, out: &mut Output<Self> )
Finalize state using remaining data stored in the provided block buffer,
write result into provided array and leave
self
in a dirty state.source§impl OutputSizeUser for Sha3_224Core
impl OutputSizeUser for Sha3_224Core
source§impl UpdateCore for Sha3_224Core
impl UpdateCore for Sha3_224Core
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 Sha3_224Core
Auto Trait Implementations§
impl RefUnwindSafe for Sha3_224Core
impl Send for Sha3_224Core
impl Sync for Sha3_224Core
impl Unpin for Sha3_224Core
impl UnwindSafe for Sha3_224Core
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