commit | 24e1933ec4f11e5ea32acacf27b7a2d0173add4f | [log] [tgz] |
---|---|---|
author | Sam Saccone <[email protected]> | Tue Dec 19 01:58:55 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Dec 19 01:58:55 2023 +0000 |
tree | 820fbb9ea9a539f139b6f6d44bdaa9a58e9a1999 | |
parent | 1e3e51bc631ff9173305c6711aa8dd4f72d34ff7 [diff] | |
parent | dcbba4d46d8edcc4c79df047e0966823c361bed2 [diff] |
Revert "Upgrade pkcs8 to 0.10.2" am: dcbba4d46d Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/pkcs8/+/2880482 Change-Id: I13610652c7be38852e236ca780e5a959f5d8de19 Signed-off-by: Automerger Merge Worker <[email protected]>
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #8: Private-Key Information Syntax Specification (RFC 5208).
PKCS#8 is a format for cryptographic private keys, often containing pairs of private and public keys.
You can identify a PKCS#8 private key encoded as PEM (i.e. text) by the following:
-----BEGIN PRIVATE KEY-----
PKCS#8 private keys can optionally be encrypted under a password using key derivation algorithms like PBKDF2 and scrypt, and encrypted with ciphers like AES-CBC. When a PKCS#8 private key has been encrypted, it starts with the following:
-----BEGIN ENCRYPTED PRIVATE KEY-----
PKCS#8 private keys can also be serialized in an ASN.1-based binary format. The PEM text encoding is a Base64 representation of this format.
This crate is implemented in an algorithm-agnostic manner with the goal of enabling PKCS#8 support for any algorithm.
That said, it has been tested for interoperability against keys generated by OpenSSL for the following algorithms:
id-ecPublicKey
)id-Ed25519
)id-rsaEncryption
)id-X25519
)Please open an issue if you encounter trouble using it with a particular algorithm, including the ones listed above or other algorithms.
This crate requires Rust 1.57 at a minimum.
We may change the MSRV in the future, but it will be accompanied by a minor version bump.
Licensed under either of:
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.