Enum pretty_good::KeyEncryptionMethod [] [src]

pub enum KeyEncryptionMethod {
    Unencrypted,
    SymmetricKey(SymmetricKeyAlgorithmVec<u8>),
    StringToKey(SymmetricKeyAlgorithmVec<u8>, StringToKey),
    StringToKeySha1(SymmetricKeyAlgorithmVec<u8>, StringToKey),
}

Variants

Trait Implementations

impl Clone for KeyEncryptionMethod
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for KeyEncryptionMethod
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations