summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2020-09-24 10:24:20 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2020-09-25 13:09:46 +0200
commitefc45302fb53b65ab8839a8d8aa982d857547352 (patch)
tree70fb1ab3084adf861fdc34e45b44a599848704a7 /openpgp/src/crypto
parentf3608f5c87c011076390a5e4aa551c8332ef3b90 (diff)
openpgp: Fix deprecation notices.
Diffstat (limited to 'openpgp/src/crypto')
-rw-r--r--openpgp/src/crypto/s2k.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/openpgp/src/crypto/s2k.rs b/openpgp/src/crypto/s2k.rs
index f403589c..67198a0e 100644
--- a/openpgp/src/crypto/s2k.rs
+++ b/openpgp/src/crypto/s2k.rs
@@ -68,9 +68,11 @@ pub enum S2K {
///
/// This mechanism uses neither iteration to increase the time it
/// takes to derive the key from the password nor does it salt the
- /// password. This makes dictionary attacks more feasible. Do
- /// not use this variant.
- #[deprecated(since = "rfc4880", note = "Use `S2K::Iterated`.")]
+ /// password. This makes dictionary attacks more feasible.
+ ///
+ /// This mechanism has been deprecated in RFC 4880. Do not use this
+ /// variant.
+ #[deprecated(note = "Use `S2K::Iterated`.")]
Simple {
/// Hash used for key derivation.
hash: HashAlgorithm