diff options
| author | Steven Fackler <[email protected]> | 2016-08-09 23:13:56 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-09 23:13:56 -0700 |
| commit | 35c79d176811af9e5cb0c012fe8daecbf7b0cdd4 (patch) | |
| tree | ddd891b25817a3bfbc67a466ccaf2668d2de2400 /openssl/src/c_helpers.rs | |
| parent | Test hmac features (diff) | |
| download | rust-openssl-35c79d176811af9e5cb0c012fe8daecbf7b0cdd4.tar.xz rust-openssl-35c79d176811af9e5cb0c012fe8daecbf7b0cdd4.zip | |
Fix build
Diffstat (limited to 'openssl/src/c_helpers.rs')
| -rw-r--r-- | openssl/src/c_helpers.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openssl/src/c_helpers.rs b/openssl/src/c_helpers.rs index a195d88f..90fcf877 100644 --- a/openssl/src/c_helpers.rs +++ b/openssl/src/c_helpers.rs @@ -10,4 +10,5 @@ extern "C" { pub fn rust_HMAC_Init_ex(ctx: *mut ffi::HMAC_CTX, key: *const c_void, keylen: c_int, md: *const ffi::EVP_MD, impl_: *mut ffi::ENGINE) -> c_int; pub fn rust_HMAC_Final(ctx: *mut ffi::HMAC_CTX, output: *mut c_uchar, len: *mut c_uint) -> c_int; pub fn rust_HMAC_Update(ctx: *mut ffi::HMAC_CTX, input: *const c_uchar, len: c_uint) -> c_int; + pub fn rust_DH_new_from_params(p: *mut ffi::BIGNUM, g: *mut ffi::BIGNUM, q: *mut ffi::BIGNUM) -> *mut ffi::DH; } |