From: Christian Neukirchen Date: Wed, 5 Oct 2016 14:35:48 +0000 (+0200) Subject: LibreSSL: Fix dh5 code X-Git-Tag: hostap_2_7~2277 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d42179e1246f996d334c8bd18deca469fdb1add;p=thirdparty%2Fhostap.git LibreSSL: Fix dh5 code Add LibreSSL check to old OpenSSL #ifdef guard as DH_{get0,set0}_key() is not implemented in LibreSSL. Signed-off-by: Christian Neukirchen --- diff --git a/src/crypto/crypto_openssl.c b/src/crypto/crypto_openssl.c index 19e0e2be8..b3d1b07a7 100644 --- a/src/crypto/crypto_openssl.c +++ b/src/crypto/crypto_openssl.c @@ -611,7 +611,7 @@ void crypto_cipher_deinit(struct crypto_cipher *ctx) void * dh5_init(struct wpabuf **priv, struct wpabuf **publ) { -#if OPENSSL_VERSION_NUMBER < 0x10100000L +#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) DH *dh; struct wpabuf *pubkey = NULL, *privkey = NULL; size_t publen, privlen; @@ -712,7 +712,7 @@ err: void * dh5_init_fixed(const struct wpabuf *priv, const struct wpabuf *publ) { -#if OPENSSL_VERSION_NUMBER < 0x10100000L +#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) DH *dh; dh = DH_new();