Add libreSSL support

Also check LIBRESSL_VERSION_NUMBER and if it's defined, we use the LibreSSL-compatible API calls.
This commit is contained in:
Anton Kashcheev 2018-04-22 18:09:44 +03:00 committed by Berkus Decker
parent cc8c119b7a
commit 09f8d60e11
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ using std::string;
namespace MTP {
namespace {
#if OPENSSL_VERSION_NUMBER < 0x10100000L
#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
// This is a key setter for compatibility with OpenSSL 1.0
int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d) {