diff options
| author | Steven Fackler <[email protected]> | 2016-08-11 21:01:27 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-11 21:01:27 -0700 |
| commit | 652326003cefe215dbfc838051e6114515cc5190 (patch) | |
| tree | 22dc99a726321cd8228004c34c40ca4a0648c594 /openssl/src/crypto/mod.rs | |
| parent | Merge branch 'release-v0.7.14' into release (diff) | |
| parent | Release openssl-sys v0.7.15, openssl v0.8.0 (diff) | |
| download | rust-openssl-openssl-sys-v0.7.15.tar.xz rust-openssl-openssl-sys-v0.7.15.zip | |
Merge branch 'release-v0.7.15-sys-v0.8.0' into releaseopenssl-v0.8.0openssl-sys-v0.7.15
Diffstat (limited to 'openssl/src/crypto/mod.rs')
| -rw-r--r-- | openssl/src/crypto/mod.rs | 11 |
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; |