Struct keccak_hasher::KeccakHasher[][src]

pub struct KeccakHasher;

Concrete Hasher impl for the Keccak-256 hash

Trait Implementations

impl Default for KeccakHasher
[src]

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

impl Debug for KeccakHasher
[src]

Formats the value using the given formatter. Read more

impl Clone for KeccakHasher
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for KeccakHasher
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hasher for KeccakHasher
[src]

The output type of the Hasher

What to use to build HashMaps with this Hasher

LENGTH: usize = 32

The length in bytes of the Hasher output

Compute the hash of the provided slice of bytes returning the Out type of the Hasher

Auto Trait Implementations