How-to make salt hash using PHP to register new account from web?
What would be the PHP algorithm to authenticate an AzerothCore account (make salt and verifier) after the sha_pass_hash field has been removed?
Before we used:
$sha_pass_hash = getPasswordHash($account_name, $password);
How does it work now? How to make salt and verifier to register a new account?
Can anyone provide some detailed instruction with an example?