Struct pkcs8::PrivateKeyInfo[][src]

pub struct PrivateKeyInfo<'a> {
    pub algorithm: AlgorithmIdentifier<'a>,
    pub private_key: &'a [u8],
}

PKCS#8 PrivateKeyInfo.

ASN.1 structure containing an AlgorithmIdentifier and private key data in an algorithm specific format.

Described in RFC 5208 Section 5:

PrivateKeyInfo ::= SEQUENCE {
        version                   Version,
        privateKeyAlgorithm       PrivateKeyAlgorithmIdentifier,
        privateKey                PrivateKey,
        attributes           [0]  IMPLICIT Attributes OPTIONAL }

Version ::= INTEGER

PrivateKeyAlgorithmIdentifier ::= AlgorithmIdentifier

PrivateKey ::= OCTET STRING

Attributes ::= SET OF Attribute

Fields

algorithm: AlgorithmIdentifier<'a>

X.509 AlgorithmIdentifier for the private key type

private_key: &'a [u8]

Private key data

Implementations

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

pub fn encrypt(
    &self,
    rng: impl CryptoRng + RngCore,
    password: impl AsRef<[u8]>
) -> Result<EncryptedPrivateKeyDocument>
[src]

This is supported on crate feature encryption only.

Encrypt this private key using a symmetric encryption key derived from the provided password.

pub fn to_der(&self) -> PrivateKeyDocument[src]

This is supported on crate feature alloc only.

Encode this PrivateKeyInfo as ASN.1 DER.

pub fn to_pem(&self) -> Zeroizing<String>[src]

This is supported on crate feature pem only.

Encode this PrivateKeyInfo as PEM-encoded ASN.1 DER.

Trait Implementations

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

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

impl From<&'_ PrivateKeyInfo<'_>> for PrivateKeyDocument[src]

impl From<PrivateKeyInfo<'_>> for PrivateKeyDocument[src]

impl<'a> Message<'a> for PrivateKeyInfo<'a>[src]

impl<'a> TryFrom<&'a [u8]> for PrivateKeyInfo<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'a> TryFrom<Any<'a>> for PrivateKeyInfo<'a>[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<'a> RefUnwindSafe for PrivateKeyInfo<'a>

impl<'a> Send for PrivateKeyInfo<'a>

impl<'a> Sync for PrivateKeyInfo<'a>

impl<'a> Unpin for PrivateKeyInfo<'a>

impl<'a> UnwindSafe for PrivateKeyInfo<'a>

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<'a, T> Choice<'a> for T where
    T: Decodable<'a> + Encodable + Tagged
[src]

impl<'a, T> Decodable<'a> for T where
    T: TryFrom<Any<'a>, Error = Error>, 
[src]

impl<'a, M> Encodable for M where
    M: Message<'a>, 
[src]

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<'a, M> Tagged for M where
    M: Message<'a>, 
[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.