pub struct Sha3_512Core { /* private fields */ }Expand description
Core SHA-3-512 hasher state.
Trait Implementations§
Source§impl AlgorithmName for Sha3_512Core
 
impl AlgorithmName for Sha3_512Core
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_512Core
 
impl BlockSizeUser for Sha3_512Core
Source§impl BufferKindUser for Sha3_512Core
 
impl BufferKindUser for Sha3_512Core
Source§type BufferKind = Eager
 
type BufferKind = Eager
Block buffer kind over which type operates.
Source§impl Clone for Sha3_512Core
 
impl Clone for Sha3_512Core
Source§fn clone(&self) -> Sha3_512Core
 
fn clone(&self) -> Sha3_512Core
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_512Core
 
impl Debug for Sha3_512Core
Source§impl Default for Sha3_512Core
 
impl Default for Sha3_512Core
Source§impl FixedOutputCore for Sha3_512Core
 
impl FixedOutputCore for Sha3_512Core
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_512Core
 
impl OutputSizeUser for Sha3_512Core
Source§impl UpdateCore for Sha3_512Core
 
impl UpdateCore for Sha3_512Core
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_512Core
Auto Trait Implementations§
impl Freeze for Sha3_512Core
impl RefUnwindSafe for Sha3_512Core
impl Send for Sha3_512Core
impl Sync for Sha3_512Core
impl Unpin for Sha3_512Core
impl UnwindSafe for Sha3_512Core
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