Update openssl calls to use EVP interface (#5072)
Build / Linux (push) Has been cancelled
Build / Windows (push) Has been cancelled

This commit is contained in:
Knightly
2026-04-25 13:49:03 -10:00
committed by GitHub
parent 6694281f22
commit 6d6cc8ca95
3 changed files with 119 additions and 32 deletions
+8
View File
@@ -26,6 +26,7 @@
#include "common/platform.h"
#include "common/timer.h"
#include "common/types.h"
#include "loginserver/encryption.h"
#include "loginserver/login_server.h"
#include "loginserver/loginserver_command_handler.h"
#include "loginserver/loginserver_webserver.h"
@@ -160,6 +161,11 @@ int main(int argc, char **argv)
RegisterExecutablePlatform(ExePlatformLogin);
set_exception_handler();
if (!eqcrypt_init()) {
LogError("Failed to initialize crypto providers");
return 1;
}
LogInfo("Logging System Init");
if (argc == 1) {
@@ -280,5 +286,7 @@ int main(int argc, char **argv)
LogInfo("Server Manager Shutdown");
delete server.server_manager;
eqcrypt_shutdown();
return 0;
}