commit | 2e2294c1da19b22cce2841bb92bfbb756546ea22 | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Thu Aug 29 16:00:30 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Aug 29 16:00:30 2024 +0000 |
tree | fa3eeeceb154f02b1c73b9ee2e73eeb9ea268d54 | |
parent | 954d364277990d58870206f636d9f1438c250bba [diff] | |
parent | f7b297f24186617855944e6ca4d6eae6e277b849 [diff] |
Migrate 25 crates to monorepo. am: f7b297f241 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/pkcs8/+/3248114 Change-Id: I54b4542cfa57503d049a7d6a835fe1cf22945a89 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.65 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.