passwords
Handling of passwords.
hash_password(password)
Gets the hash of a given plain password.
Source code in mlte/user/passwords.py
15 16 17 18 19 20 | |
verify_password(plain_password, hashed_password)
Verifies that a plain password matches a hashed one.
Source code in mlte/user/passwords.py
6 7 8 9 10 11 12 | |