diff options
Diffstat (limited to 'openssl/src/crypto/mod.rs')
| -rw-r--r-- | openssl/src/crypto/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/openssl/src/crypto/mod.rs b/openssl/src/crypto/mod.rs index bb77453f..6a34bd59 100644 --- a/openssl/src/crypto/mod.rs +++ b/openssl/src/crypto/mod.rs @@ -14,6 +14,8 @@ // limitations under the License. // +use nid::Nid; + pub mod hash; pub mod hmac; pub mod pkcs5; @@ -22,5 +24,12 @@ pub mod rand; pub mod symm; pub mod memcmp; pub mod rsa; +pub mod dsa; +#[cfg(feature = "catch_unwind")] +mod util; mod symm_internal; + +trait HashTypeInternals { + fn as_nid(&self) -> Nid; +} |