Struct octavo_digest::whirlpool::Whirlpool [] [src]

pub struct Whirlpool {
    // some fields omitted
}

WHIRLPOOL implementation

For details check out module documentation

Trait Implementations

impl Clone for Whirlpool
[src]

fn clone(&self) -> Whirlpool

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Default for Whirlpool
[src]

fn default() -> Self

Returns the "default value" for a type. Read more

impl Digest for Whirlpool
[src]

type OutputBits = U512

Output size in bits

type OutputBytes = U64

Output size in bytes

type BlockSize = U64

Block size in bytes

fn update<T>(&mut self, update: T) where T: AsRef<[u8]>

Update digest with data.

fn result<T>(self, out: T) where T: AsMut<[u8]>

Write resulting hash into output. Read more

fn output_bits() -> usize

Output size in bits

fn output_bytes() -> usize

Output size in bytes

fn block_size() -> usize

Block size in bytes