[][src]Struct blake2_rfc_bellman_edition::blake2b::Blake2b

pub struct Blake2b { /* fields omitted */ }

State context.

Methods

impl Blake2b[src]

pub fn new(nn: usize) -> Self[src]

Creates a new hashing context without a key.

pub fn with_key(nn: usize, k: &[u8]) -> Self[src]

Creates a new hashing context with a key.

pub fn with_params(nn: usize, key: &[u8], salt: &[u8], persona: &[u8]) -> Self[src]

Creates a new hashing context with the full set of sequential-mode parameters.

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

Updates the hashing context with more data.

pub fn finalize(self) -> Blake2bResult[src]

Consumes the hashing context and returns the resulting hash.

Trait Implementations

impl Clone for Blake2b[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Blake2b[src]

impl Default for Blake2b[src]

impl Write for Blake2b[src]

fn write_vectored(&mut self, bufs: &[IoVec]) -> Result<usize, Error>[src]

🔬 This is a nightly-only experimental API. (iovec)

Like write, except that it writes from a slice of buffers. Read more

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0
[src]

Attempts to write an entire buffer into this writer. Read more

fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>
1.0.0
[src]

Writes a formatted string into this writer, returning any error encountered. Read more

fn by_ref(&mut self) -> &mut Self
1.0.0
[src]

Creates a "by reference" adaptor for this instance of Write. Read more

Auto Trait Implementations

impl Send for Blake2b

impl Sync for Blake2b

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

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

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

type Owned = T