From 55ffc9b2e415c3286c8d903b7c0284c834e4a13d Mon Sep 17 00:00:00 2001 From: Rohit Aggarwal Date: Thu, 8 Mar 2018 11:54:19 +0000 Subject: Add support LibreSSL and remove OpenSSL binding which we aren't using --- openssl-sys/src/libressl/mod.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'openssl-sys/src/libressl') 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 @@ -133,6 +133,12 @@ pub struct DSA { pub engine: *mut ::ENGINE, } +#[repr(C)] +pub struct ECDSA_SIG { + pub r: *mut ::BIGNUM, + pub s: *mut ::BIGNUM +} + #[repr(C)] pub struct EVP_PKEY { pub type_: c_int, -- cgit v1.2.3