Struct sha3::Keccak256Core
source · [−]pub struct Keccak256Core { /* private fields */ }Expand description
Core Keccak-256 hasher state.
Trait Implementations
sourceimpl AlgorithmName for Keccak256Core
impl AlgorithmName for Keccak256Core
sourcefn write_alg_name(f: &mut Formatter<'_>) -> Result
fn write_alg_name(f: &mut Formatter<'_>) -> Result
Write algorithm name into f.
sourceimpl BlockSizeUser for Keccak256Core
impl BlockSizeUser for Keccak256Core
sourcefn block_size() -> usize
fn block_size() -> usize
Return block size in bytes.
sourceimpl BufferKindUser for Keccak256Core
impl BufferKindUser for Keccak256Core
type BufferKind = Eager
type BufferKind = Eager
Block buffer kind over which type operates.
sourceimpl Clone for Keccak256Core
impl Clone for Keccak256Core
sourcefn clone(&self) -> Keccak256Core
fn clone(&self) -> Keccak256Core
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for Keccak256Core
impl Debug for Keccak256Core
sourceimpl Default for Keccak256Core
impl Default for Keccak256Core
sourceimpl FixedOutputCore for Keccak256Core
impl FixedOutputCore for Keccak256Core
sourcefn 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. Read more
sourceimpl OutputSizeUser for Keccak256Core
impl OutputSizeUser for Keccak256Core
type OutputSize = U32
type OutputSize = U32
Size of the output in bytes.
sourcefn output_size() -> usize
fn output_size() -> usize
Return output size in bytes.
sourceimpl Reset for Keccak256Core
impl Reset for Keccak256Core
sourceimpl UpdateCore for Keccak256Core
impl UpdateCore for Keccak256Core
sourcefn 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 Keccak256Core
Auto Trait Implementations
impl RefUnwindSafe for Keccak256Core
impl Send for Keccak256Core
impl Sync for Keccak256Core
impl Unpin for Keccak256Core
impl UnwindSafe for Keccak256Core
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more