mirror of https://github.com/procxx/kepka.git
Fix compile error when building with LibreSSL
Add preprocessor check of LibreSSL version.
This commit is contained in:
parent
22b0cffccd
commit
21e7a1bbb0
|
@ -31,7 +31,7 @@ using std::string;
|
|||
|
||||
namespace MTP {
|
||||
namespace {
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L || (defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x2070000fL)
|
||||
|
||||
// This is a key setter for compatibility with OpenSSL 1.0
|
||||
int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d) {
|
||||
|
|
Loading…
Reference in New Issue