1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2024-11-14 15:57:17 +00:00

Rename variable to be more precise

This commit is contained in:
R. Richard 2019-06-07 15:10:29 +02:00
parent 9d9021d01d
commit a1f148f8e0

View File

@ -9,9 +9,9 @@ class PasswordHasher:
return PasswordHasher.scrypt(password, salt).hex()+salt.hex()
@staticmethod
def verify(password, hashdigest):
salt = bytes.fromhex(hashdigest[64:])
hashdigest = bytes.fromhex(hashdigest[:64])
def verify(password, salted_hash):
salt = bytes.fromhex(salted_hash[64:])
hashdigest = bytes.fromhex(salted_hash[:64])
return PasswordHasher.scrypt(password, salt) == hashdigest
@staticmethod