diff options
| author | Alex Crichton <[email protected]> | 2014-10-01 13:05:42 -0700 |
|---|---|---|
| committer | Alex Crichton <[email protected]> | 2014-10-01 13:28:56 -0700 |
| commit | be0e83c9788cfea1ef0a422a9b56d11ffdc48da0 (patch) | |
| tree | fa573ced19393e50d0e8cdeba501abedc8213ece /src/crypto/mod.rs | |
| parent | Merge pull request #57 from vhbit/mut-cleanup (diff) | |
| download | rust-openssl-be0e83c9788cfea1ef0a422a9b56d11ffdc48da0.tar.xz rust-openssl-be0e83c9788cfea1ef0a422a9b56d11ffdc48da0.zip | |
Add bindings to CRYPTO_memcmp
This should help other projects use a constant-time memory comparison.
Diffstat (limited to 'src/crypto/mod.rs')
| -rw-r--r-- | src/crypto/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crypto/mod.rs b/src/crypto/mod.rs index d7c62f98..e695de33 100644 --- a/src/crypto/mod.rs +++ b/src/crypto/mod.rs @@ -21,3 +21,4 @@ pub mod pkcs5; pub mod pkey; pub mod rand; pub mod symm; +pub mod memcmp; |