summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2021-08-17 14:02:32 +0200
committerJustus Winter <justus@sequoia-pgp.org>2021-08-17 14:02:32 +0200
commite09134c41b3ed37e31a3cd8727119d427daadf0c (patch)
treea09efd167189f6325242cff7174383a9c3a53abe
parentdadd52e4655a25f7204dcfd898811d9c67fe7220 (diff)
openpgp: Hint at how to encrypt and decrypt keys in a cert.
- Fixes #731.
-rw-r--r--openpgp/src/cert.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/openpgp/src/cert.rs b/openpgp/src/cert.rs
index 6bb72c20..ea6c1d24 100644
--- a/openpgp/src/cert.rs
+++ b/openpgp/src/cert.rs
@@ -35,6 +35,7 @@
//! also include any secret key material.
//! - *Using a certificate*: See the [`Cert`] and [`ValidCert`] data structures.
//! - *Revoking a certificate*: See the [`CertRevocationBuilder`] data structure.
+//! - *Decrypt or encrypt secret keys*: See [`packet::Key::encrypt_secret`]'s example.
//! - *Merging packets*: See the [`Cert::insert_packets`] method.
//! - *Merging certificates*: See the [`Cert::merge_public`] method.
//! - *Creating third-party certifications*: See the [`UserID::certify`]