tiger

Struct Tiger

Source
pub struct Tiger { /* private fields */ }
Expand description

The Tiger hasher

Trait Implementations§

Source§

impl BlockInput for Tiger

Source§

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

Block size
Source§

impl Clone for Tiger

Source§

fn clone(&self) -> Tiger

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 Tiger

Source§

fn default() -> Self

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

impl FixedOutputDirty for Tiger

Source§

type OutputSize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B1>, 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 Reset for Tiger

Source§

fn reset(&mut self)

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

impl Update for Tiger

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 Freeze for Tiger

§

impl RefUnwindSafe for Tiger

§

impl Send for Tiger

§

impl Sync for Tiger

§

impl Unpin for Tiger

§

impl UnwindSafe for Tiger

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, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> DynDigest for D
where D: Update + FixedOutput + Reset + Clone + 'static,

Source§

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

Digest input data. Read more
Source§

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

Retrieve result and reset hasher instance
Source§

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

Retrieve result and consume boxed hasher instance
Source§

fn reset(&mut self)

Reset hasher instance to its initial state.
Source§

fn output_size(&self) -> usize

Get output size of the hasher
Source§

fn box_clone(&self) -> Box<dyn DynDigest>

Clone hasher state into a boxed trait object
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> ToOwned for T
where T: Clone,

Source§

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 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.