Enum gpgme::HashAlgorithm[][src]

pub enum HashAlgorithm {
    None,
    Md2,
    Md4,
    Md5,
    Sha1,
    Sha224,
    Sha256,
    Sha384,
    Sha512,
    RipeMd160,
    Tiger,
    Haval,
    Crc32,
    Crc32Rfc1510,
    CrC24Rfc2440,
    Other(gpgme_hash_algo_t),
}

Variants

Methods

impl HashAlgorithm
[src]

impl HashAlgorithm
[src]

Trait Implementations

impl Copy for HashAlgorithm
[src]

impl Clone for HashAlgorithm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for HashAlgorithm
[src]

impl PartialEq for HashAlgorithm
[src]

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

This method tests for !=.

impl Hash for HashAlgorithm
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for HashAlgorithm
[src]

Formats the value using the given formatter. Read more

impl Display for HashAlgorithm
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations