You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 36 hashpass = pbkdf2_hmac("sha256", password, secrets.token_bytes(), 1000000).hex()
The third argument in this function generates a random salt. It should use the previously generated salt from make_user_db.py
Otherwise the resulting hash will always be different from the stored password hash.
The text was updated successfully, but these errors were encountered:
line 36
hashpass = pbkdf2_hmac("sha256", password, secrets.token_bytes(), 1000000).hex()
The third argument in this function generates a random salt. It should use the previously generated salt from make_user_db.py
Otherwise the resulting hash will always be different from the stored password hash.
The text was updated successfully, but these errors were encountered: