aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChris Cole <[email protected]>2014-09-27 23:58:48 -0400
committerChris Cole <[email protected]>2014-09-27 23:58:48 -0400
commit2ef537cfb24285156127a9a406d5e882b3e8df7c (patch)
tree921027414262d74c3469ffdc2db1b837b26f2de6 /src
parentUse CRYPTO_free to free the result of BN_bn2bin. (diff)
downloadrust-openssl-2ef537cfb24285156127a9a406d5e882b3e8df7c.tar.xz
rust-openssl-2ef537cfb24285156127a9a406d5e882b3e8df7c.zip
Removing unused signatures for the time being.
Diffstat (limited to 'src')
-rw-r--r--src/bn/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bn/mod.rs b/src/bn/mod.rs
index 3a6f18fd..213792ae 100644
--- a/src/bn/mod.rs
+++ b/src/bn/mod.rs
@@ -62,9 +62,6 @@ extern {
fn BN_cmp(a: *mut BIGNUM, b: *mut BIGNUM) -> c_int;
fn BN_ucmp(a: *mut BIGNUM, b: *mut BIGNUM) -> c_int;
fn BN_is_zero(a: *mut BIGNUM) -> c_int;
- fn BN_is_one(a: *mut BIGNUM) -> c_int;
- fn BN_is_word(a: *mut BIGNUM) -> c_int;
- fn BN_is_odd(a: *mut BIGNUM) -> c_int;
/* Prime handling */
fn BN_generate_prime_ex(r: *mut BIGNUM, bits: c_int, safe: c_int, add: *mut BIGNUM, rem: *mut BIGNUM, cb: *const c_void) -> c_int;