From 3164b58c7d170810b69378950c0891e5f5b8678b Mon Sep 17 00:00:00 2001 From: Treeston Date: Sun, 2 Aug 2020 22:52:21 +0200 Subject: Core/Authserver: Re-organize the `accounts` table (PR #25135) - no longer use sha_pass_hash for anything else core-side (.account, SOAP, RA) - salt/verifier/session_key are now binary - old s/v/sha_pass_hash fields kept around for backwards compatibility - sha_pass_hash is still updated (for now), s/v are not - sha_pass_hash is only read if s/v have been manually changed - SRP6 b now uses the full 32 bytes of randomness (instead of randomly only using 19) --- src/server/authserver/Main.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/server/authserver/Main.cpp') diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp index 7a6a5037676..f5566355a3d 100644 --- a/src/server/authserver/Main.cpp +++ b/src/server/authserver/Main.cpp @@ -143,6 +143,8 @@ int main(int argc, char** argv) sSecretMgr->Initialize(); + AuthSession::ServerStartup(); + // Load IP Location Database sIPLocation->Load(); -- cgit v1.2.3