[][src]Trait ethsign_crypto::Keccak256

pub trait Keccak256<T: Sized> {
    fn keccak256(&self) -> T;
}

Helper trait for conveniently hashing byte slices

Required methods

fn keccak256(&self) -> T

Hash self to a hash type T.

Loading content...

Implementations on Foreign Types

impl Keccak256<[u8; 32]> for [u8][src]

Loading content...

Implementors

impl<T: AsRef<[u8]>> Keccak256<[u8; 32]> for T[src]

Loading content...