[package]
name = "pkcs8"
version = "0.3.3"
description = """
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8:
Private-Key Information Syntax Specification (RFC 5208)
"""
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
edition = "2018"
documentation = "https://docs.rs/pkcs8"
repository = "https://github.com/RustCrypto/utils/tree/master/pkcs8"
categories = ["cryptography", "data-structures", "encoding", "no-std"]
keywords = ["crypto", "key", "private"]
readme = "README.md"
[dependencies.der]
version = "0.1"
path = "../der"
features = ["oid"]
[dependencies.subtle-encoding]
version = "0.5"
optional = true
default-features = false
features = ["alloc", "base64"]
[dependencies.zeroize]
version = "1"
optional = true
default-features = false
features = ["alloc"]
[dev-dependencies]
hex-literal = "0.3"
[features]
alloc = ["der/alloc", "zeroize"]
pem = ["alloc", "subtle-encoding"]
std = ["alloc", "der/std"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]