diff options
| author | Steven Fackler <[email protected]> | 2014-12-10 13:37:03 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-12-10 13:37:03 -0800 |
| commit | ae9e2b1e257a744fa538cf3db299cac0584b4417 (patch) | |
| tree | 2a83cbb0a893bff7c04553123022c501c95cdff0 /openssl-sys/src | |
| parent | Merge pull request #114 from DiamondLovesYou/master (diff) | |
| parent | Add the openssl function prototype 'HMAC_CTX_cleanup'. (diff) | |
| download | rust-openssl-ae9e2b1e257a744fa538cf3db299cac0584b4417.tar.xz rust-openssl-ae9e2b1e257a744fa538cf3db299cac0584b4417.zip | |
Merge pull request #117 from Ummon/master
Add the openssl function prototype 'HMAC_CTX_cleanup'.
Diffstat (limited to 'openssl-sys/src')
| -rw-r--r-- | openssl-sys/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index 0644a674..1faf749e 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -361,6 +361,7 @@ extern "C" { pub fn HMAC_Init_ex(ctx: *mut HMAC_CTX, key: *const u8, keylen: c_int, md: *const EVP_MD, imple: *const ENGINE); pub fn HMAC_Final(ctx: *mut HMAC_CTX, output: *mut u8, len: *mut c_uint); pub fn HMAC_Update(ctx: *mut HMAC_CTX, input: *const u8, len: c_uint); + pub fn HMAC_CTX_cleanup(ctx: *mut HMAC_CTX); pub fn PEM_read_bio_X509(bio: *mut BIO, out: *mut *mut X509, callback: Option<PasswordCallback>, |