summaryrefslogtreecommitdiffstats
path: root/openpgp/src/types/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/types/mod.rs')
-rw-r--r--openpgp/src/types/mod.rs15
1 files changed, 6 insertions, 9 deletions
diff --git a/openpgp/src/types/mod.rs b/openpgp/src/types/mod.rs
index dc98dfe4..cf3b4568 100644
--- a/openpgp/src/types/mod.rs
+++ b/openpgp/src/types/mod.rs
@@ -97,13 +97,11 @@ pub(crate) use timestamp::normalize_systemtime;
pub enum PublicKeyAlgorithm {
/// RSA (Encrypt or Sign)
RSAEncryptSign,
- /// RSA Encrypt-Only
- #[deprecated(since = "rfc4880",
- note = "Use `PublicKeyAlgorithm::RSAEncryptSign`.")]
+ /// RSA Encrypt-Only, deprecated in RFC 4880.
+ #[deprecated(note = "Use `PublicKeyAlgorithm::RSAEncryptSign`.")]
RSAEncrypt,
- /// RSA Sign-Only
- #[deprecated(since = "rfc4880",
- note = "Use `PublicKeyAlgorithm::RSAEncryptSign`.")]
+ /// RSA Sign-Only, deprecated in RFC 4880.
+ #[deprecated(note = "Use `PublicKeyAlgorithm::RSAEncryptSign`.")]
RSASign,
/// ElGamal (Encrypt-Only)
ElGamalEncrypt,
@@ -113,9 +111,8 @@ pub enum PublicKeyAlgorithm {
ECDH,
/// Elliptic curve DSA
ECDSA,
- /// ElGamal (Encrypt or Sign)
- #[deprecated(since = "rfc4880",
- note = "If you really must, use \
+ /// ElGamal (Encrypt or Sign), deprecated in RFC 4880.
+ #[deprecated(note = "If you really must, use \
`PublicKeyAlgorithm::ElGamalEncrypt`.")]
ElGamalEncryptSign,
/// "Twisted" Edwards curve DSA