Browse Source

Merge pull request #2108 from SystemFailureNet/openssl

Please disable LibreSSL workaround when LibreSSL version >= 4.0.0
openssl
orignal 23 hours ago committed by GitHub
parent
commit
64bde69967
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      libi2pd/Crypto.cpp

2
libi2pd/Crypto.cpp

@ -997,7 +997,7 @@ namespace crypto @@ -997,7 +997,7 @@ namespace crypto
}
else
{
#if defined(LIBRESSL_VERSION_NUMBER)
#if defined(LIBRESSL_VERSION_NUMBER) && LIBRESSL_VERSION_NUMBER < 0x4000000fL
std::vector<uint8_t> m(msgLen + 16);
if (msg == buf)
{

Loading…
Cancel
Save