[][src]Enum pgp::types::PlainSecretParamsRef

pub enum PlainSecretParamsRef<'a> {
    RSA {
        d: MpiRef<'a>,
        p: MpiRef<'a>,
        q: MpiRef<'a>,
        u: MpiRef<'a>,
    },
    DSA(MpiRef<'a>),
    ECDSA(MpiRef<'a>),
    ECDH(MpiRef<'a>),
    Elgamal(MpiRef<'a>),
    EdDSA(MpiRef<'a>),
}

Variants

RSA

Fields of RSA

d: MpiRef<'a>p: MpiRef<'a>q: MpiRef<'a>u: MpiRef<'a>
DSA(MpiRef<'a>)
ECDSA(MpiRef<'a>)
ECDH(MpiRef<'a>)
Elgamal(MpiRef<'a>)
EdDSA(MpiRef<'a>)

Methods

impl<'a> PlainSecretParamsRef<'a>[src]

pub fn from_slice(data: &'a [u8], alg: PublicKeyAlgorithm) -> Result<Self>[src]

pub fn to_owned(&self) -> PlainSecretParams[src]

pub fn string_to_key_id(&self) -> u8[src]

pub fn compare_checksum_simple(&self, other: Option<&[u8]>) -> Result<()>[src]

pub fn checksum_simple(&self) -> Vec<u8>[src]

pub fn checksum_sha1(&self) -> Vec<u8>[src]

pub fn as_repr(&self, public_params: &PublicParams) -> Result<SecretKeyRepr>[src]

Trait Implementations

impl<'a> Serialize for PlainSecretParamsRef<'a>[src]

impl<'a> Clone for PlainSecretParamsRef<'a>[src]

impl<'a> Eq for PlainSecretParamsRef<'a>[src]

impl<'a> PartialEq<PlainSecretParamsRef<'a>> for PlainSecretParamsRef<'a>[src]

impl<'a> Debug for PlainSecretParamsRef<'a>[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

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