Skip to content

Commit f1a555d

Browse files
authored
pkcs8: add tracking issues for PKCS#8 encryption support (#264)
Updates the rustdoc with links to #263
1 parent a8ed0fe commit f1a555d

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

pkcs8/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
//! private keys.
3636
//!
3737
//! However, support for actually decrypting/encrypting them remains TBD.
38+
//! Please see the following GitHub issue for more information:
39+
//!
40+
//! <https://github.com/RustCrypto/utils/issues/263>
3841
//!
3942
//! # Minimum Supported Rust Version
4043
//!

pkcs8/src/private_key_info/encrypted.rs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,16 @@ use der::{Decodable, Encodable, Message};
1414
/// tl;dr: none yet!
1515
///
1616
/// This crate does not (yet) support decrypting/encrypting private key data.
17+
/// However, support for the following may be added in future releases:
1718
///
18-
/// [PKCS#5 v1.5] supports several password-based encryption algorithms,
19-
/// including `PBE-SHA1-3DES`.
19+
/// - [PKCS#5 v1.5] supports several password-based encryption algorithms,
20+
/// including `PBE-SHA1-3DES`.
21+
/// - [PKCS#5 v2] adds support for AES-CBC encryption with iterated PRFs
22+
/// such as `hmacWithSHA256`.
2023
///
21-
/// [PKCS#5 v2] adds support for AES encryption with iterated PRFs
22-
/// such as `hmacWithSHA256`.
24+
/// Please see the following GitHub issue for tracking information:
2325
///
24-
/// We may consider adding support for these in future releases of this crate.
26+
/// <https://github.com/RustCrypto/utils/issues/263>
2527
///
2628
/// ## Schema
2729
/// Structure described in [RFC 5208 Section 6]:

0 commit comments

Comments
 (0)