[][src]Enum sequoia_openpgp::policy::AsymmetricAlgorithm

pub enum AsymmetricAlgorithm {
    RSA1024,
    RSA2048,
    RSA3072,
    RSA4096,
    ElGamal1024,
    ElGamal2048,
    ElGamal3072,
    ElGamal4096,
    DSA1024,
    DSA2048,
    DSA3072,
    DSA4096,
    NistP256,
    NistP384,
    NistP521,
    BrainpoolP256,
    BrainpoolP512,
    Cv25519,
    Unknown,
    // some variants omitted
}

Asymmetric encryption algorithms.

This type is for refining the StandardPolicy with respect to asymmetric algorithms. In contrast to PublicKeyAlgorithm, it does not concern itself with the use (encryption or signing), and it does include key sizes (if applicable) and elliptic curves.

Key sizes put into are buckets, rounding down to the nearest bucket. For example, a 3253-bit RSA key is categorized as RSA3072.

Note: This enum cannot be exhaustively matched to allow future extensions.

Variants

RSA1024

RSA with key sizes up to 2048-1 bit.

RSA2048

RSA with key sizes up to 3072-1 bit.

RSA3072

RSA with key sizes up to 4096-1 bit.

RSA4096

RSA with key sizes larger or equal to 4096 bit.

ElGamal1024

ElGamal with key sizes up to 2048-1 bit.

ElGamal2048

ElGamal with key sizes up to 3072-1 bit.

ElGamal3072

ElGamal with key sizes up to 4096-1 bit.

ElGamal4096

ElGamal with key sizes larger or equal to 4096 bit.

DSA1024

DSA with key sizes up to 2048-1 bit.

DSA2048

DSA with key sizes up to 3072-1 bit.

DSA3072

DSA with key sizes up to 4096-1 bit.

DSA4096

DSA with key sizes larger or equal to 4096 bit.

NistP256

NIST curve P-256.

NistP384

NIST curve P-384.

NistP521

NIST curve P-521.

BrainpoolP256

brainpoolP256r1.

BrainpoolP512

brainpoolP512r1.

Cv25519

D.J. Bernstein's Curve25519.

Unknown

Unknown algorithm.

Trait Implementations

impl Clone for AsymmetricAlgorithm[src]

impl Debug for AsymmetricAlgorithm[src]

impl Display for AsymmetricAlgorithm[src]

impl From<AsymmetricAlgorithm> for u8[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.