diff options
| author | Shauren <shauren.trinity@gmail.com> | 2023-12-26 14:55:15 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2023-12-26 14:55:15 +0100 |
| commit | 623202d68e862b346b22ac65f9dcbb498d2fa2ac (patch) | |
| tree | fd882ea858e1668d2f79c1232ea5c0bf50001488 /sql/updates/auth/master | |
| parent | 4a61675191c91c7d09def0e612f2e11a646845b0 (diff) | |
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
Diffstat (limited to 'sql/updates/auth/master')
| -rw-r--r-- | sql/updates/auth/master/2023_12_26_00_auth.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/auth/master/2023_12_26_00_auth.sql b/sql/updates/auth/master/2023_12_26_00_auth.sql new file mode 100644 index 00000000000..3c27a8c7ac5 --- /dev/null +++ b/sql/updates/auth/master/2023_12_26_00_auth.sql @@ -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`; |
