[][src]Enum sequoia_openpgp::cert::prelude::CipherSuite

pub enum CipherSuite {
    Cv25519,
    RSA3k,
    P256,
    P384,
    P521,
    RSA2k,
    RSA4k,
}

Groups symmetric and asymmetric algorithms.

This is used to select a suite of ciphers.

Examples

use sequoia_openpgp as openpgp;
use openpgp::cert::prelude::*;
use openpgp::types::PublicKeyAlgorithm;

let (ecc, _) =
    CertBuilder::general_purpose(None, Some("alice@example.org"))
        .set_cipher_suite(CipherSuite::Cv25519)
        .generate()?;
assert_eq!(ecc.primary_key().pk_algo(), PublicKeyAlgorithm::EdDSA);

let (rsa, _) =
    CertBuilder::general_purpose(None, Some("alice@example.org"))
        .set_cipher_suite(CipherSuite::RSA4k)
        .generate()?;
assert_eq!(rsa.primary_key().pk_algo(), PublicKeyAlgorithm::RSAEncryptSign);

Variants

Cv25519

EdDSA and ECDH over Curve25519 with SHA512 and AES256

RSA3k

3072 bit RSA with SHA512 and AES256

P256

EdDSA and ECDH over NIST P-256 with SHA256 and AES256

P384

EdDSA and ECDH over NIST P-384 with SHA384 and AES256

P521

EdDSA and ECDH over NIST P-521 with SHA512 and AES256

RSA2k

2048 bit RSA with SHA512 and AES256

RSA4k

4096 bit RSA with SHA512 and AES256

Trait Implementations

impl Clone for CipherSuite[src]

impl Copy for CipherSuite[src]

impl Debug for CipherSuite[src]

impl Default for CipherSuite[src]

impl Eq for CipherSuite[src]

impl Ord for CipherSuite[src]

impl PartialEq<CipherSuite> for CipherSuite[src]

impl PartialOrd<CipherSuite> for CipherSuite[src]

impl StructuralEq for CipherSuite[src]

impl StructuralPartialEq for CipherSuite[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, 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.