Core/Crypto: Switch away from most deprecated openssl functions and removed upper version limit

(cherry picked from commit bc87f7b337)
This commit is contained in:
Shauren
2022-05-03 17:03:57 +02:00
parent e23a9943dd
commit 77091ed599
8 changed files with 93 additions and 74 deletions

View File

@@ -121,7 +121,7 @@ int main(int argc, char** argv)
[]()
{
TC_LOG_INFO("server.authserver", "Using configuration file %s.", sConfigMgr->GetFilename().c_str());
TC_LOG_INFO("server.authserver", "Using SSL version: %s (library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION));
TC_LOG_INFO("server.authserver", "Using SSL version: %s (library: %s)", OPENSSL_VERSION_TEXT, OpenSSL_version(OPENSSL_VERSION));
TC_LOG_INFO("server.authserver", "Using Boost version: %i.%i.%i", BOOST_VERSION / 100000, BOOST_VERSION / 100 % 1000, BOOST_VERSION % 100);
}
);