pkcs8 0.9.0

Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8: Private-Key Information Syntax Specification (RFC 5208), with additional support for PKCS#8v2 asymmetric key packages (RFC 5958)
Documentation
[dependencies.der]
features = ["oid"]
version = "0.6"

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

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

[dependencies.spki]
version = "0.6"

[dependencies.subtle]
default-features = false
optional = true
version = "2"
[dev-dependencies.hex-literal]
version = "0.3"

[dev-dependencies.tempfile]
version = "3"

[features]
3des = ["encryption", "pkcs5/3des"]
alloc = ["der/alloc", "der/zeroize", "spki/alloc"]
des-insecure = ["encryption", "pkcs5/des-insecure"]
encryption = ["alloc", "pkcs5/alloc", "pkcs5/pbes2", "rand_core"]
getrandom = ["rand_core/getrandom"]
pem = ["alloc", "der/pem", "spki/pem"]
sha1 = ["encryption", "pkcs5/sha1"]
std = ["alloc", "der/std", "spki/std"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "data-structures", "encoding", "no-std", "parser-implementations"]
description = "Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:\nPrivate-Key Information Syntax Specification (RFC 5208), with additional\nsupport for PKCS#8v2 asymmetric key packages (RFC 5958)\n"
edition = "2021"
keywords = ["crypto", "key", "pkcs", "private"]
license = "Apache-2.0 OR MIT"
name = "pkcs8"
readme = "README.md"
repository = "https://github.com/RustCrypto/formats/tree/master/pkcs8"
resolver = "2"
rust-version = "1.57"
version = "0.9.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]