diff options
| author | Steven Fackler <[email protected]> | 2018-03-11 15:27:28 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-03-11 15:27:28 -0700 |
| commit | d0329473bd06c72229aef05277f53e0c2fd759c2 (patch) | |
| tree | 5b4ce5cde1a896abb1b65e9020e689a054777694 /openssl-sys/src/libressl | |
| parent | Generic custom extension add fn return type (diff) | |
| parent | Merge pull request #863 from rohit-lshift/master (diff) | |
| download | rust-openssl-d0329473bd06c72229aef05277f53e0c2fd759c2.tar.xz rust-openssl-d0329473bd06c72229aef05277f53e0c2fd759c2.zip | |
Merge branch 'master' into custom-extensions
Diffstat (limited to 'openssl-sys/src/libressl')
| -rw-r--r-- | openssl-sys/src/libressl/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/openssl-sys/src/libressl/mod.rs b/openssl-sys/src/libressl/mod.rs index 8454a78a..c47363ca 100644 --- a/openssl-sys/src/libressl/mod.rs +++ b/openssl-sys/src/libressl/mod.rs @@ -134,6 +134,12 @@ pub struct DSA { } #[repr(C)] +pub struct ECDSA_SIG { + pub r: *mut ::BIGNUM, + pub s: *mut ::BIGNUM +} + +#[repr(C)] pub struct EVP_PKEY { pub type_: c_int, pub save_type: c_int, |