pub struct Sha3_256(_);
Expand description

A wrapper for [tiny_keccak::Sha3::v256] that implements RustCrypto [digest] traits [BlockInput], [Update], [Reset], and [FixedOutput]. Consequently, this wrapper can be used in RustCrypto APIs that require a hash function (usually something that impls [Digest]).

Trait Implementations§

source§

impl BlockInput for Sha3_256

§

type BlockSize = UInt<UInt<UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B1>, B0>, B0>, B0>

Block size
source§

impl Clone for Sha3_256

source§

fn clone(&self) -> Sha3_256

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for Sha3_256

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl FixedOutput for Sha3_256

§

type OutputSize = UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>

Output size for fixed output digest
source§

fn finalize_into(self, out: &mut GenericArray<u8, Self::OutputSize>)

Write result into provided array and consume the hasher instance.
source§

fn finalize_into_reset(&mut self, out: &mut GenericArray<u8, Self::OutputSize>)

Write result into provided array and reset the hasher instance.
§

fn finalize_fixed(self) -> GenericArray<u8, Self::OutputSize>where Self: Sized,

Retrieve result and consume the hasher instance.
§

fn finalize_fixed_reset(&mut self) -> GenericArray<u8, Self::OutputSize>

Retrieve result and reset the hasher instance.
source§

impl Reset for Sha3_256

source§

fn reset(&mut self)

Reset hasher instance to its initial state and return current state.
source§

impl Update for Sha3_256

source§

fn update(&mut self, data: impl AsRef<[u8]>)

Digest input data. Read more
§

fn chain(self, data: impl AsRef<[u8]>) -> Selfwhere Self: Sized,

Digest input data in a chained manner.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<D> Digest for Dwhere D: Update + FixedOutput + Reset + Clone + Default,

§

type OutputSize = <D as FixedOutput>::OutputSize

Output size for Digest
§

fn new() -> D

Create new hasher instance
§

fn update(&mut self, data: impl AsRef<[u8]>)

Digest data, updating the internal state. Read more
§

fn chain(self, data: impl AsRef<[u8]>) -> D

Digest input data in a chained manner.
§

fn finalize(self) -> GenericArray<u8, <D as Digest>::OutputSize>

Retrieve result and consume hasher instance.
§

fn finalize_reset(&mut self) -> GenericArray<u8, <D as Digest>::OutputSize>

Retrieve result and reset hasher instance. Read more
§

fn reset(&mut self)

Reset hasher instance to its initial state.
§

fn output_size() -> usize

Get output size of the hasher
§

fn digest(data: &[u8]) -> GenericArray<u8, <D as Digest>::OutputSize>

Convenience function to compute hash of the data. It will handle hasher creation, data feeding and finalization. Read more
§

impl<D> DynDigest for Dwhere D: Update + FixedOutput + Reset + Clone + 'static,

§

fn update(&mut self, data: &[u8])

Digest input data. Read more
§

fn finalize_reset(&mut self) -> Box<[u8], Global>

Retrieve result and reset hasher instance
§

fn finalize(self: Box<D, Global>) -> Box<[u8], Global>

Retrieve result and consume boxed hasher instance
§

fn reset(&mut self)

Reset hasher instance to its initial state.
§

fn output_size(&self) -> usize

Get output size of the hasher
§

fn box_clone(&self) -> Box<dyn DynDigest + 'static, Global>

Clone hasher state into a boxed trait object
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V