Crate pkcs8[][src]

Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:

Private-Key Information Syntax Specification (as defined in RFC 5208).

About

This is a minimalistic library targeting no_std platforms and small code size. It supports decoding/encoding of the following types without the use of a heap:

When the alloc feature is enabled, the following additional types are available which provide more convenient decoding/encoding support:

When the pem feature is enabled, it also supports decoding/encoding documents from "PEM encoding" format as defined in RFC 7468.

Supported Algorithms

This crate has been tested against keys generated by OpenSSL for the following algorithms:

  • ECC (id-ecPublicKey)
  • Ed25519 (Ed25519)
  • RSA (rsaEncryption)

It may work with other algorithms which use an optional OID for AlgorithmIdentifier parameters.

Encrypted Private Key Support

EncryptedPrivateKeyInfo supports decoding/encoding encrypted PKCS#8 private keys.

However, support for actually decrypting/encrypting them remains TBD. Please see the following GitHub issue for more information:

https://github.com/RustCrypto/utils/issues/263

Minimum Supported Rust Version

This crate requires Rust 1.47 at a minimum.

Re-exports

pub use der;
pub use pkcs5;

Structs

AlgorithmIdentifier

X.509 AlgorithmIdentifier as defined in RFC 5280 Section 4.1.1.2.

EncryptedPrivateKeyInfopkcs5

PKCS#8 EncryptedPrivateKeyInfo.

ObjectIdentifier

Object identifier (OID).

PrivateKeyDocumentalloc

PKCS#8 private key document.

PrivateKeyInfo

PKCS#8 PrivateKeyInfo.

PublicKeyDocumentalloc

SPKI public key document.

SubjectPublicKeyInfo

X.509 SubjectPublicKeyInfo (SPKI).

Enums

Error

Error type

Traits

FromPrivateKey

Parse a private key object from a PKCS#8 encoded document.

FromPublicKey

Parse a public key object from an encoded SPKI document.

ToPrivateKeyalloc

Serialize a private key object to a PKCS#8 encoded document.

ToPublicKeyalloc

Serialize a public key object to a SPKI-encoded document.

Type Definitions

Result

Result type