[][src]Struct sequoia_openpgp::crypto::KeyPair

pub struct KeyPair { /* fields omitted */ }

A cryptographic key pair.

A KeyPair is a combination of public and secret key. If both are available in memory, a KeyPair is a convenient implementation of Signer and Decryptor.

Implementations

impl KeyPair[src]

pub fn new(
    public: Key<PublicParts, UnspecifiedRole>,
    secret: Unencrypted
) -> Result<Self>
[src]

Creates a new key pair.

pub fn public(&self) -> &Key<PublicParts, UnspecifiedRole>[src]

Returns a reference to the public key.

pub fn secret(&self) -> &Unencrypted[src]

Returns a reference to the secret key.

Trait Implementations

impl Clone for KeyPair[src]

impl Decryptor for KeyPair[src]

fn decrypt(
    &mut self,
    ciphertext: &Ciphertext,
    plaintext_len: Option<usize>
) -> Result<SessionKey>
[src]

Creates a signature over the digest produced by hash_algo.

impl From<KeyPair> for Key<SecretParts, UnspecifiedRole>[src]

impl Signer for KeyPair[src]

Auto Trait Implementations

impl RefUnwindSafe for KeyPair

impl Send for KeyPair

impl Sync for KeyPair

impl Unpin for KeyPair

impl UnwindSafe for KeyPair

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.