As users can now be registered, passwords will be hashed on registration with the user's generated salt.
The passwords currently in the database need to be hashed the same way user's registered passwords are being hashed.
Current hashing method is hash('sha256', (password . salt))
As users can now be registered, passwords will be hashed on registration with the user's generated salt. The passwords currently in the database need to be hashed the same way user's registered passwords are being hashed.
Current hashing method is hash('sha256', (password . salt))