diff --git a/pkcs8/src/lib.rs b/pkcs8/src/lib.rs index 510e0040..4d3fe7c3 100644 --- a/pkcs8/src/lib.rs +++ b/pkcs8/src/lib.rs @@ -35,6 +35,9 @@ //! private keys. //! //! However, support for actually decrypting/encrypting them remains TBD. +//! Please see the following GitHub issue for more information: +//! +//! //! //! # Minimum Supported Rust Version //! diff --git a/pkcs8/src/private_key_info/encrypted.rs b/pkcs8/src/private_key_info/encrypted.rs index 689496cc..681b8ccb 100644 --- a/pkcs8/src/private_key_info/encrypted.rs +++ b/pkcs8/src/private_key_info/encrypted.rs @@ -14,14 +14,16 @@ use der::{Decodable, Encodable, Message}; /// tl;dr: none yet! /// /// This crate does not (yet) support decrypting/encrypting private key data. +/// However, support for the following may be added in future releases: /// -/// [PKCS#5 v1.5] supports several password-based encryption algorithms, -/// including `PBE-SHA1-3DES`. +/// - [PKCS#5 v1.5] supports several password-based encryption algorithms, +/// including `PBE-SHA1-3DES`. +/// - [PKCS#5 v2] adds support for AES-CBC encryption with iterated PRFs +/// such as `hmacWithSHA256`. /// -/// [PKCS#5 v2] adds support for AES encryption with iterated PRFs -/// such as `hmacWithSHA256`. +/// Please see the following GitHub issue for tracking information: /// -/// We may consider adding support for these in future releases of this crate. +/// /// /// ## Schema /// Structure described in [RFC 5208 Section 6]: