Enum gpgme::KeyAlgorithm[][src]

pub enum KeyAlgorithm {
    Rsa,
    RsaEncrypt,
    RsaSign,
    ElgamalEncrypt,
    Dsa,
    Ecc,
    Elgamal,
    Ecdsa,
    Ecdh,
    Eddsa,
    Other(gpgme_pubkey_algo_t),
}

Variants

Methods

impl KeyAlgorithm
[src]

impl KeyAlgorithm
[src]

Trait Implementations

impl Copy for KeyAlgorithm
[src]

impl Clone for KeyAlgorithm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for KeyAlgorithm
[src]

impl PartialEq for KeyAlgorithm
[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 KeyAlgorithm
[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 KeyAlgorithm
[src]

Formats the value using the given formatter. Read more

impl Display for KeyAlgorithm
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations