diff options
| author | [email protected] <[email protected]> | 2017-12-02 17:13:23 +0100 |
|---|---|---|
| committer | [email protected] <[email protected]> | 2017-12-02 17:13:23 +0100 |
| commit | 9f1066704c23cf3639e68a5e53b585927d3318e6 (patch) | |
| tree | ace02c7011b366ff6c3ca26168737cfa8202f64b /openssl-sys/src | |
| parent | Adding dp(), dq() and qi() methods to RSA, to get the CRT parameters back (diff) | |
| download | rust-openssl-9f1066704c23cf3639e68a5e53b585927d3318e6.tar.xz rust-openssl-9f1066704c23cf3639e68a5e53b585927d3318e6.zip | |
Fixing the CI tests
Diffstat (limited to 'openssl-sys/src')
| -rw-r--r-- | openssl-sys/src/ossl110.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl-sys/src/ossl110.rs b/openssl-sys/src/ossl110.rs index 8cd9a2e1..fabfb2b6 100644 --- a/openssl-sys/src/ossl110.rs +++ b/openssl-sys/src/ossl110.rs @@ -177,7 +177,7 @@ extern "C" { dmp1: *mut *const ::BIGNUM, dmq1: *mut *const ::BIGNUM, iqmp: *mut *const ::BIGNUM, - ) -> c_int; + ); pub fn RSA_set0_key( r: *mut ::RSA, n: *mut ::BIGNUM, |