Improve the password storage by incorporating a salt, and use the argon2 hashing function.
This will break existing users ability to log in. Existing users will need to go through the forgot password (#65) workflow to re-establish a working password after this change.
Improve the password storage by incorporating a salt, and use the
argon2
hashing function.This will break existing users ability to log in. Existing users will need to go through the forgot password (#65) workflow to re-establish a working password after this change.
Thanks to @andrewpmartinez for the guidance.