Hasher

Struct Hasher 

Source
pub struct Hasher<'a, PHY, D>(/* private fields */);

Trait Implementations§

Source§

impl<'a, PHY, D> Clone for Hasher<'a, PHY, D>

Source§

fn clone(&self) -> Self

Returns a duplicate 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<'a, PHY, D> Default for Hasher<'a, PHY, D>

Source§

fn default() -> Self

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

impl<'a, PHY, D> FixedOutputDirty for Hasher<'a, PHY, D>
where PHY: Read + Write, <PHY as Read>::Error: Debug, <PHY as Write>::Error: Debug, D: DelayUs<u32>,

Source§

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_dirty(&mut self, out: &mut GenericArray<u8, Self::OutputSize>)

Retrieve result into provided buffer and leave hasher in a dirty state. Read more
Source§

impl<'a, PHY, D> Reset for Hasher<'a, PHY, D>
where PHY: Read + Write, <PHY as Read>::Error: Debug, <PHY as Write>::Error: Debug, D: DelayUs<u32>,

Source§

fn reset(&mut self)

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

impl<'a, PHY, D> Update for Hasher<'a, PHY, D>
where PHY: Read + Write, <PHY as Read>::Error: Debug, <PHY as Write>::Error: Debug, D: DelayUs<u32>,

Source§

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

Digest input data. Read more
Source§

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

Digest input data in a chained manner.

Auto Trait Implementations§

§

impl<'a, PHY, D> Freeze for Hasher<'a, PHY, D>

§

impl<'a, PHY, D> RefUnwindSafe for Hasher<'a, PHY, D>

§

impl<'a, PHY, D> Send for Hasher<'a, PHY, D>
where PHY: Send, D: Send,

§

impl<'a, PHY, D> Sync for Hasher<'a, PHY, D>
where PHY: Sync, D: Sync,

§

impl<'a, PHY, D> Unpin for Hasher<'a, PHY, D>

§

impl<'a, PHY, D> !UnwindSafe for Hasher<'a, PHY, D>

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<D> Digest for D

Source§

type OutputSize = <D as FixedOutput>::OutputSize

Output size for Digest
Source§

fn new() -> D

Create new hasher instance
Source§

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

Digest data, updating the internal state. Read more
Source§

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

Digest input data in a chained manner.
Source§

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

Retrieve result and consume hasher instance.
Source§

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

Retrieve result and reset hasher instance. Read more
Source§

fn reset(&mut self)

Reset hasher instance to its initial state.
Source§

fn output_size() -> usize

Get output size of the hasher
Source§

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
Source§

impl<D> FixedOutput for D

Source§

type OutputSize = <D as FixedOutputDirty>::OutputSize

Output size for fixed output digest
Source§

fn finalize_into( self, out: &mut GenericArray<u8, <D as FixedOutput>::OutputSize>, )

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

fn finalize_into_reset( &mut self, out: &mut GenericArray<u8, <D as FixedOutput>::OutputSize>, )

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

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

Retrieve result and consume the hasher instance.
Source§

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

Retrieve result and reset the hasher instance.
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.