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§

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

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

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

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

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

Implementors§