aboutsummaryrefslogtreecommitdiff
path: root/openssl/src/crypto/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/src/crypto/mod.rs')
-rw-r--r--openssl/src/crypto/mod.rs11
1 files changed, 3 insertions, 8 deletions
diff --git a/openssl/src/crypto/mod.rs b/openssl/src/crypto/mod.rs
index 95b27022..93aba9eb 100644
--- a/openssl/src/crypto/mod.rs
+++ b/openssl/src/crypto/mod.rs
@@ -14,9 +14,8 @@
// limitations under the License.
//
-use nid::Nid;
-
pub mod hash;
+#[cfg(feature = "hmac")]
pub mod hmac;
pub mod pkcs5;
pub mod pkey;
@@ -24,9 +23,5 @@ pub mod rand;
pub mod symm;
pub mod memcmp;
pub mod rsa;
-
-mod symm_internal;
-
-trait HashTypeInternals {
- fn as_nid(&self) -> Nid;
-}
+pub mod dsa;
+mod util;