passwords
mlte/user/authentication.py
Handling of passwords.
hash_password(password)
Gets the hash of a given plain password.
Source code in mlte/user/passwords.py
19 20 21 22 23 24 |
|
verify_password(plain_password, hashed_password)
Verifies that a plain password matches a hashed one.
Source code in mlte/user/passwords.py
10 11 12 13 14 15 16 |
|