mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 02:04:52 +01:00
Core/Bnet: Implemented new SRP6 variants, and migrate old sha_pass_hash in battlenet_accounts to separate salt and verifier columns
* passwords can now be case sensitive and up to 128 characters long
This commit is contained in:
4
sql/updates/auth/master/2023_12_26_00_auth.sql
Normal file
4
sql/updates/auth/master/2023_12_26_00_auth.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
ALTER TABLE `battlenet_accounts`
|
||||
ADD `srp_version` tinyint(3) NOT NULL DEFAULT '1' AFTER `email`,
|
||||
ADD `salt` binary(32) AFTER `srp_version`,
|
||||
ADD `verifier` blob AFTER `salt`;
|
||||
Reference in New Issue
Block a user