[][src]Struct blake3::Hasher

pub struct Hasher { /* fields omitted */ }

An incremental hash state that can accept any number of writes.

In addition to its inherent methods, this type implements several commonly used traits from the digest and crypto_mac crates.

Methods

impl Hasher[src]

pub fn new() -> Self[src]

Construct a new Hasher for the regular hash function.

pub fn new_keyed(key: &[u8; 32]) -> Self[src]

Construct a new Hasher for the keyed hash function. See keyed_hash.

pub fn new_derive_key(context: &str) -> Self[src]

Construct a new Hasher for the key derivation function. See derive_key. The context string should be hardcoded, globally unique, and application-specific.

pub fn reset(&mut self) -> &mut Self[src]

Reset the Hasher to its initial state.

This is functionally the same as overwriting the Hasher with a new one, using the same key or context string if any. However, depending on how much inlining the optimizer does, moving a Hasher might copy its entire CV stack, most of which is useless uninitialized bytes. This methods avoids that copy.

pub fn update(&mut self, input: &[u8]) -> &mut Self[src]

Add input bytes to the hash state. You can call this any number of times.

Note that the degree of SIMD and multi-threading parallelism that Hasher can use is limited by the size of this input buffer. The 8 KiB buffer currently used by std::io::copy is enough to leverage AVX2, for example, but not enough to leverage AVX-512. If multi-threading is enabled (the rayon feature), the optimal input buffer size will vary considerably across different CPUs, and it may be several mebibytes.

pub fn finalize(&self) -> Hash[src]

Finalize the hash state and return the Hash of the input.

This method is idempotent. Calling it twice will give the same result. You can also add more input and finalize again.

Important traits for OutputReader
pub fn finalize_xof(&self) -> OutputReader[src]

Finalize the hash state and return an OutputReader, which can supply any number of output bytes.

This method is idempotent. Calling it twice will give the same result. You can also add more input and finalize again.

Trait Implementations

impl BlockInput for Hasher[src]

type BlockSize = U64

impl Clone for Hasher[src]

impl Debug for Hasher[src]

impl Default for Hasher[src]

impl ExtendableOutput for Hasher[src]

type Reader = OutputReader

impl FixedOutput for Hasher[src]

type OutputSize = U32

impl Input for Hasher[src]

impl Mac for Hasher[src]

type OutputSize = U32

type KeySize = U32

impl Reset for Hasher[src]

impl Write for Hasher[src]

fn write(&mut self, input: &[u8]) -> Result<usize>[src]

This is equivalent to update.

Auto Trait Implementations

impl RefUnwindSafe for Hasher

impl Send for Hasher

impl Sync for Hasher

impl Unpin for Hasher

impl UnwindSafe for Hasher

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<D> Digest for D where
    D: Input + FixedOutput + Reset + Clone + Default
[src]

type OutputSize = <D as FixedOutput>::OutputSize

impl<D> DynDigest for D where
    D: 'static + Input + FixedOutput + Reset + Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.