aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-11-17 20:40:46 -0800
committerSteven Fackler <[email protected]>2015-11-17 20:40:46 -0800
commitccd3a1cf07ec11767df8b9ddc4e0161439b0e04b (patch)
treefcc183e68b243b708e18275053db579d92dd6cc2 /openssl-sys
parentRemove unecessary build dependency (diff)
parentFix a leak when using `EVP_PKEY_get1_RSA`. (diff)
downloadrust-openssl-ccd3a1cf07ec11767df8b9ddc4e0161439b0e04b.tar.xz
rust-openssl-ccd3a1cf07ec11767df8b9ddc4e0161439b0e04b.zip
Merge pull request #306 from overminder/get1-leak-fix
Fix a leak when using `EVP_PKEY_get1_RSA`.
Diffstat (limited to 'openssl-sys')
-rw-r--r--openssl-sys/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs
index 018f8bca..239f8d9e 100644
--- a/openssl-sys/src/lib.rs
+++ b/openssl-sys/src/lib.rs
@@ -482,6 +482,7 @@ extern "C" {
pub fn RAND_bytes(buf: *mut u8, num: c_int) -> c_int;
+ pub fn RSA_free(rsa: *mut RSA);
pub fn RSA_generate_key(modsz: c_int, e: c_ulong, cb: *const c_void, cbarg: *const c_void) -> *mut RSA;
pub fn RSA_generate_key_ex(rsa: *mut RSA, bits: c_int, e: *mut BIGNUM, cb: *const c_void) -> c_int;
pub fn RSA_private_decrypt(flen: c_int, from: *const u8, to: *mut u8, k: *mut RSA,