summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/mod.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-12-19 10:31:32 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-12-19 10:32:18 +0100
commitc97666274f71ee10dc90804b5483e12c8bfeef31 (patch)
tree6da3dcdf225370d44b0cac910bb924039e3fe5f6 /openpgp/src/crypto/mod.rs
parent8799d48c5525ebe564070c4c3cd19df1b866e5ca (diff)
openpgp: Make crypto::mem public and improve the documentation.
Diffstat (limited to 'openpgp/src/crypto/mod.rs')
-rw-r--r--openpgp/src/crypto/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/crypto/mod.rs b/openpgp/src/crypto/mod.rs
index f02657df..fc2a0fef 100644
--- a/openpgp/src/crypto/mod.rs
+++ b/openpgp/src/crypto/mod.rs
@@ -15,7 +15,7 @@ pub(crate) mod ecdh;
pub mod hash;
mod keygrip;
pub use self::keygrip::Keygrip;
-pub(crate) mod mem;
+pub mod mem;
pub mod mpis;
pub mod s2k;
pub mod sexp;