From a5548dc2e4db5b4a5469e7b320f37f89e32bb1b3 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 2 Jul 2019 14:44:14 +0200 Subject: openpgp: Make the crypto::hash module public, remove re-export. --- openpgp/src/crypto/mod.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'openpgp/src/crypto/mod.rs') diff --git a/openpgp/src/crypto/mod.rs b/openpgp/src/crypto/mod.rs index cc1bdc18..8a37e509 100644 --- a/openpgp/src/crypto/mod.rs +++ b/openpgp/src/crypto/mod.rs @@ -12,7 +12,7 @@ use Result; pub(crate) mod aead; mod asymmetric; pub(crate) mod ecdh; -mod hash; +pub mod hash; mod keygrip; pub use self::keygrip::Keygrip; pub(crate) mod mem; @@ -27,8 +27,6 @@ pub use self::asymmetric::{ KeyPair, }; -pub use self::hash::Hash; - /// Holds a session key. /// /// The session key is cleared when dropped. -- cgit v1.2.3