summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/mod.rs
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/crypto/mod.rs
parent5b0a9623a4c2e5a44300fdf149c757972c0d2497 (diff)
openpgp: Move crypto::s2k::S2K to crypto.
- The module contains only one exported item.
Diffstat (limited to 'openpgp/src/crypto/mod.rs')
-rw-r--r--openpgp/src/crypto/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/openpgp/src/crypto/mod.rs b/openpgp/src/crypto/mod.rs
index 904eaea2..51db3b18 100644
--- a/openpgp/src/crypto/mod.rs
+++ b/openpgp/src/crypto/mod.rs
@@ -17,7 +17,8 @@ mod keygrip;
pub use self::keygrip::Keygrip;
pub mod mem;
pub mod mpis;
-pub mod s2k;
+mod s2k;
+pub use s2k::S2K;
pub mod sexp;
pub(crate) mod symmetric;