[][src]Struct sequoia_openpgp::packet::key::Unencrypted

pub struct Unencrypted { /* fields omitted */ }

Unencrypted secret key. Can be used as-is.

The secret key is encrypted in memory and only decrypted on demand. See crypto::mem::Encrypted for details.

Implementations

impl Unencrypted[src]

pub fn map<F, T>(&self, fun: F) -> T where
    F: FnMut(&SecretKeyMaterial) -> T, 
[src]

Maps the given function over the secret.

pub fn encrypt(&self, password: &Password) -> Result<Encrypted>[src]

Encrypts this secret key using password.

Trait Implementations

impl Clone for Unencrypted[src]

impl Debug for Unencrypted[src]

impl Eq for Unencrypted[src]

impl From<SecretKeyMaterial> for Unencrypted[src]

impl From<Unencrypted> for SecretKeyMaterial[src]

impl Hash for Unencrypted[src]

impl PartialEq<Unencrypted> for Unencrypted[src]

impl StructuralEq for Unencrypted[src]

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