pkcs8 0.5.3

Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8: Private-Key Information Syntax Specification (RFC 5208)
Documentation
[dependencies.base64ct]
features = ["alloc"]
optional = true
version = "0.2"

[dependencies.der]
features = ["oid"]
version = "0.2"

[dependencies.pkcs5]
optional = true
version = "0.1.1"

[dependencies.rand_core]
default-features = false
optional = true
version = "0.6"

[dependencies.spki]
version = "0.2"

[dependencies.zeroize]
default-features = false
features = ["alloc"]
optional = true
version = "1"
[dev-dependencies.hex-literal]
version = "0.3"

[features]
alloc = ["der/alloc", "zeroize"]
encryption = ["alloc", "pkcs5/alloc", "pkcs5/pbes2", "rand_core"]
pem = ["alloc", "base64ct"]
std = ["alloc", "der/std"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "data-structures", "encoding", "no-std"]
description = "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208)\n"
edition = "2018"
keywords = ["crypto", "key", "pkcs", "private"]
license = "Apache-2.0 OR MIT"
name = "pkcs8"
readme = "README.md"
repository = "https://github.com/RustCrypto/utils/tree/master/pkcs8"
version = "0.5.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]