HasherList

Trait HasherList 

Source
pub trait HasherList {
    type MD4: Md4;
    type MD5: Md5;
    type SHA1: Sha1;
    type SHA256: Sha256;
    type RIPEMD160: Ripemd160;
}
Expand description

List of hash functions to use. Trait may change in later versions to include constructors for actual hasher objects.

Required Associated Types§

Source

type MD4: Md4

The type that offers MD4 hashing. See the Md4 trait.

Source

type MD5: Md5

The type that offers MD5 hashing. See the Md5 trait.

Source

type SHA1: Sha1

The type that offers SHA1 hashing. See the Sha1 trait.

Source

type SHA256: Sha256

The type that offers SHA256 hashing. See the Sha256 trait.

Source

type RIPEMD160: Ripemd160

The type that offers Ripemd160 hashing. See the Ripemd160 trait.

Implementors§