diff options
| author | Steven Fackler <[email protected]> | 2016-08-07 16:28:29 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-07 16:29:36 -0700 |
| commit | 7ca5ccf0646478b6d3557b066594d7e7afc36c53 (patch) | |
| tree | 5244c966b649b73fc5e599edfc31edb1b1d2224e /openssl/src/crypto/mod.rs | |
| parent | Refactor BigNum (diff) | |
| download | rust-openssl-7ca5ccf0646478b6d3557b066594d7e7afc36c53.tar.xz rust-openssl-7ca5ccf0646478b6d3557b066594d7e7afc36c53.zip | |
Hash reform
Closes #430
Diffstat (limited to 'openssl/src/crypto/mod.rs')
| -rw-r--r-- | openssl/src/crypto/mod.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/openssl/src/crypto/mod.rs b/openssl/src/crypto/mod.rs index 5b891ce7..873f9d47 100644 --- a/openssl/src/crypto/mod.rs +++ b/openssl/src/crypto/mod.rs @@ -14,8 +14,6 @@ // limitations under the License. // -use nid::Nid; - pub mod hash; pub mod hmac; pub mod pkcs5; @@ -28,7 +26,3 @@ pub mod dsa; mod util; mod symm_internal; - -trait HashTypeInternals { - fn as_nid(&self) -> Nid; -} |