Trait snow::types::Hash[][src]

pub trait Hash: Send + Sync {
    fn name(&self) -> &'static str;
fn block_len(&self) -> usize;
fn hash_len(&self) -> usize;
fn reset(&mut self);
fn input(&mut self, data: &[u8]);
fn result(&mut self, out: &mut [u8]); fn hmac(&mut self, key: &[u8], data: &[u8], out: &mut [u8]) { ... }
fn hkdf(
        &mut self,
        chaining_key: &[u8],
        input_key_material: &[u8],
        outputs: usize,
        out1: &mut [u8],
        out2: &mut [u8],
        out3: &mut [u8]
    ) { ... } }
Expand description

Hashing operations

Required methods

fn name(&self) -> &'static str[src]

Expand description

The string that the Noise spec defines for the primitive

fn block_len(&self) -> usize[src]

Expand description

The block length for the primitive

fn hash_len(&self) -> usize[src]

Expand description

The final hash digest length for the primitive

fn reset(&mut self)[src]

Expand description

Reset the internal state

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

Expand description

Provide input to the internal state

fn result(&mut self, out: &mut [u8])[src]

Expand description

Get the resulting hash

Loading content...

Provided methods

fn hmac(&mut self, key: &[u8], data: &[u8], out: &mut [u8])[src]

Expand description

Calculate HMAC, as specified in the Noise spec.

NOTE: This method clobbers the existing internal state

fn hkdf(
    &mut self,
    chaining_key: &[u8],
    input_key_material: &[u8],
    outputs: usize,
    out1: &mut [u8],
    out2: &mut [u8],
    out3: &mut [u8]
)
[src]

Expand description

Derive keys as specified in the Noise spec.

NOTE: This method clobbers the existing internal state

Loading content...

Implementors

Loading content...