Struct NoOpHasher

Source
pub struct NoOpHasher;
Expand description

A digest::Digest implementation which always returns the digest [0;32].

Trait Implementations§

Source§

impl Digest for NoOpHasher

Source§

fn new() -> Self

Create new hasher instance.
Source§

fn new_with_prefix(_data: impl AsRef<[u8]>) -> Self

Create new hasher instance which has processed the provided data.
Source§

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

Process data, updating the internal state.
Source§

fn chain_update(self, _data: impl AsRef<[u8]>) -> Self

Process input data in a chained manner.
Source§

fn finalize(self) -> Output<Self>

Retrieve result and consume hasher instance.
Source§

fn finalize_into(self, out: &mut Output<Self>)

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

fn finalize_reset(&mut self) -> Output<Self>
where Self: FixedOutputReset,

Retrieve result and reset hasher instance.
Source§

fn finalize_into_reset(&mut self, out: &mut Output<Self>)
where Self: FixedOutputReset,

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

fn reset(&mut self)
where Self: Reset,

Reset hasher instance to its initial state.
Source§

fn output_size() -> usize

Get output size of the hasher
Source§

fn digest(_data: impl AsRef<[u8]>) -> Output<Self>

Compute hash of data.
Source§

impl FixedOutput for NoOpHasher

Source§

fn finalize_into(self, out: &mut Output<Self>)

Consume value and write result into provided array.
Source§

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

Retrieve result and consume the hasher instance.
Source§

impl FixedOutputReset for NoOpHasher

Source§

fn finalize_into_reset(&mut self, out: &mut Output<Self>)

Write result into provided array and reset the hasher state.
Source§

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

Retrieve result and reset the hasher state.
Source§

impl OutputSizeUser for NoOpHasher

Source§

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

Size of the output in bytes.
Source§

fn output_size() -> usize

Return output size in bytes.
Source§

impl Reset for NoOpHasher

Source§

fn reset(&mut self)

Reset state to its initial value.
Source§

impl Update for NoOpHasher

Source§

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

Update state using the provided data.
Source§

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

Digest input data in a chained manner.

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

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 for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.