summaryrefslogtreecommitdiffstats
path: root/openpgp/src/message
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-01-03 13:26:00 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-01-03 13:26:00 +0100
commita608d9a1c57560a42cfc3b9642586166f8ab8e52 (patch)
tree8f27a9a50996feb7719d7e7721909b6a57717cb2 /openpgp/src/message
parent5b0a9623a4c2e5a44300fdf149c757972c0d2497 (diff)
openpgp: Move crypto::s2k::S2K to crypto.
- The module contains only one exported item.
Diffstat (limited to 'openpgp/src/message')
-rw-r--r--openpgp/src/message/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/message/mod.rs b/openpgp/src/message/mod.rs
index b08de710..0839d482 100644
--- a/openpgp/src/message/mod.rs
+++ b/openpgp/src/message/mod.rs
@@ -450,7 +450,7 @@ mod tests {
use crate::SymmetricAlgorithm;
use crate::PublicKeyAlgorithm;
use crate::SignatureType;
- use crate::crypto::s2k::S2K;
+ use crate::crypto::S2K;
use crate::crypto::mpis::{Ciphertext, MPI};
use crate::packet::prelude::*;
use crate::KeyID;