[][src]Struct sequoia_openpgp::cert::CertBuilder

pub struct CertBuilder { /* fields omitted */ }

Simplifies generation of Keys.

Builder to generate complex Cert hierarchies with multiple user IDs.

Methods

impl CertBuilder[src]

pub fn new() -> Self[src]

Returns a new CertBuilder.

The returned CertBuilder is setup to only create a certification-capable primary key using the default cipher suite. You'll almost certainly want to add subkeys (using CertBuilder::add_signing_subkey, or CertBuilder::add_transport_encryption_subkey, for instance), and user ids (using CertBuilder::add_userid).

pub fn general_purpose<C, U>(ciphersuite: C, userids: Option<U>) -> Self where
    C: Into<Option<CipherSuite>>,
    U: Into<UserID>, 
[src]

Generates a general-purpose key.

The key's primary key is certification- and signature-capable. The key has one subkey, an encryption-capable subkey.

pub fn autocrypt<'a, V, U>(version: V, userid: Option<U>) -> Self where
    V: Into<Option<Autocrypt>>,
    U: Into<UserID>, 
[src]

Generates a key compliant to Autocrypt.

If no version is given the latest one is used.

The autocrypt specification requires a UserID. However, because it can be useful to add the UserID later, it is permitted to be none.

pub fn set_cipher_suite(self, cs: CipherSuite) -> Self[src]

Sets the encryption and signature algorithms for primary and all subkeys.

pub fn add_userid<'a, U>(self, uid: U) -> Self where
    U: Into<UserID>, 
[src]

Adds a new user ID. The first user ID added will be the primary user ID.

pub fn add_user_attribute<'a, U>(self, ua: U) -> Self where
    U: Into<UserAttribute>, 
[src]

Adds a new user attribute.

pub fn add_signing_subkey(self) -> Self[src]

Adds a signing capable subkey.

pub fn add_transport_encryption_subkey(self) -> Self[src]

Adds a subkey suitable for transport encryption.

pub fn add_storage_encryption_subkey(self) -> Self[src]

Adds a subkey suitable for storage encryption.

pub fn add_certification_subkey(self) -> Self[src]

Adds an certification capable subkey.

pub fn add_authentication_subkey(self) -> Self[src]

Adds an authentication capable subkey.

pub fn add_subkey<T>(self, flags: KeyFlags, expiration: T) -> Self where
    T: Into<Option<Duration>>, 
[src]

Adds a custom subkey.

If expiration is None, the subkey uses the same expiration time as the primary key.

pub fn primary_keyflags(self, flags: KeyFlags) -> Self[src]

Sets the capabilities of the primary key. The function automatically makes the primary key certification capable if subkeys are added.

pub fn set_password(self, password: Option<Password>) -> Self[src]

Sets a password to encrypt the secret keys with.

pub fn set_expiration<T>(self, expiration: T) -> Self where
    T: Into<Option<Duration>>, 
[src]

Sets the expiration time.

A value of None means never.

pub fn generate(self) -> Result<(Cert, Signature)>[src]

Generates the actual Cert.

Trait Implementations

impl Clone for CertBuilder[src]

impl Debug for CertBuilder[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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,