diff options
| author | Steven Fackler <[email protected]> | 2016-08-07 22:35:37 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-07 22:35:37 -0700 |
| commit | 2a3e9a28564626bea0bf729a0ecee43553697654 (patch) | |
| tree | fbe2674308cf5790c1b60e5ab12097c54dfe14b7 /openssl-sys/src | |
| parent | Move init to crate root (diff) | |
| download | rust-openssl-2a3e9a28564626bea0bf729a0ecee43553697654.tar.xz rust-openssl-2a3e9a28564626bea0bf729a0ecee43553697654.zip | |
Add RSA::generate
Diffstat (limited to 'openssl-sys/src')
| -rw-r--r-- | openssl-sys/src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index b141fa9d..6966bb8f 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -17,6 +17,7 @@ pub type ASN1_INTEGER = c_void; pub type ASN1_STRING = c_void; pub type ASN1_TIME = c_void; pub type BN_CTX = c_void; +pub type BN_GENCB = c_void; pub type COMP_METHOD = c_void; pub type DH = c_void; pub type ENGINE = c_void; @@ -295,6 +296,8 @@ pub const NID_key_usage: c_int = 83; pub const PKCS5_SALT_LEN: c_int = 8; +pub const RSA_F4: c_long = 0x10001; + pub const SSL_CTRL_SET_TMP_DH: c_int = 3; pub const SSL_CTRL_EXTRA_CHAIN_CERT: c_int = 14; pub const SSL_CTRL_OPTIONS: c_int = 32; @@ -800,7 +803,7 @@ extern "C" { pub fn RSA_new() -> *mut RSA; 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_generate_key_ex(rsa: *mut RSA, bits: c_int, e: *mut BIGNUM, cb: *mut BN_GENCB) -> c_int; pub fn RSA_private_decrypt(flen: c_int, from: *const u8, to: *mut u8, k: *mut RSA, pad: c_int) -> c_int; pub fn RSA_public_decrypt(flen: c_int, from: *const u8, to: *mut u8, k: *mut RSA, |