pkcs8 0.8.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
1
2
3
4
5
6
//! Serialized DER-encoded documents stored in heap-backed buffers.
// TODO(tarcieri): heapless support?

#[cfg(feature = "pkcs5")]
pub(crate) mod encrypted_private_key;
pub(crate) mod private_key;