[][src]Enum sequoia_openpgp::crypto::mpis::SecretKeyMaterial

pub enum SecretKeyMaterial {
    RSA {
        d: ProtectedMPI,
        p: ProtectedMPI,
        q: ProtectedMPI,
        u: ProtectedMPI,
    },
    DSA {
        x: ProtectedMPI,
    },
    ElGamal {
        x: ProtectedMPI,
    },
    EdDSA {
        scalar: ProtectedMPI,
    },
    ECDSA {
        scalar: ProtectedMPI,
    },
    ECDH {
        scalar: ProtectedMPI,
    },
    Unknown {
        mpis: Box<[ProtectedMPI]>,
        rest: Protected,
    },
    // some variants omitted
}

Holds a secret key.

Provides a typed and structured way of storing multiple MPIs in packets.

Variants

RSA

RSA secret key.

Fields of RSA

d: ProtectedMPI

Secret exponent, inverse of e in Phi(N).

p: ProtectedMPI

Larger secret prime.

q: ProtectedMPI

Smaller secret prime.

u: ProtectedMPI

Inverse of p mod q.

DSA

NIST DSA secret key.

Fields of DSA

x: ProtectedMPI

Secret key log_g(y) in Zp.

ElGamal

ElGamal secret key.

Fields of ElGamal

x: ProtectedMPI

Secret key log_g(y) in Zp.

EdDSA

DJBs "Twisted" Edwards curve DSA secret key.

Fields of EdDSA

scalar: ProtectedMPI

Secret scalar.

ECDSA

NISTs Elliptic curve DSA secret key.

Fields of ECDSA

scalar: ProtectedMPI

Secret scalar.

ECDH

Elliptic curve ElGamal secret key.

Fields of ECDH

scalar: ProtectedMPI

Secret scalar.

Unknown

Unknown number of MPIs for an unknown algorithm.

Fields of Unknown

mpis: Box<[ProtectedMPI]>

The successfully parsed MPIs.

rest: Protected

Any data that failed to parse.

Implementations

impl SecretKeyMaterial[src]

pub fn algo(&self) -> Option<PublicKeyAlgorithm>[src]

Returns, if known, the public-key algorithm for this secret key.

impl SecretKeyMaterial[src]

pub fn parse_chksumd<T: Read>(algo: PublicKeyAlgorithm, cur: T) -> Result<Self>[src]

Parses secret key MPIs for algo plus their SHA1 checksum. Fails if the checksum is wrong.

pub fn parse<T: AsRef<[u8]>>(algo: PublicKeyAlgorithm, buf: T) -> Result<Self>[src]

Parses a set of OpenPGP MPIs representing a secret key.

See Section 3.2 of RFC 4880 for details.

impl SecretKeyMaterial[src]

pub fn serialize_chksumd<W: Write>(&self, w: &mut W) -> Result<()>[src]

Writes this secret key with a checksum to w.

Trait Implementations

impl Arbitrary for SecretKeyMaterial[src]

impl Clone for SecretKeyMaterial[src]

impl Debug for SecretKeyMaterial[src]

impl Eq for SecretKeyMaterial[src]

impl From<SecretKeyMaterial> for SecretKeyMaterial[src]

impl From<SecretKeyMaterial> for Unencrypted[src]

impl Hash for SecretKeyMaterial[src]

fn hash(&self, hash: &mut Context)[src]

Update the Hash with a hash of the MPIs.

impl Hash for SecretKeyMaterial[src]

impl Marshal for SecretKeyMaterial[src]

impl MarshalInto for SecretKeyMaterial[src]

impl Ord for SecretKeyMaterial[src]

impl PartialEq<SecretKeyMaterial> for SecretKeyMaterial[src]

impl PartialOrd<SecretKeyMaterial> for SecretKeyMaterial[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>,