mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 00:52:49 +00:00
Merge branch 'fix_crypt_password' into 'master'
fix crypt password verification function See merge request federez/re2o!419
This commit is contained in:
commit
3db44f592a
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ class CryptPasswordHasher(hashers.BasePasswordHasher):
|
||||||
"""
|
"""
|
||||||
assert encoded.startswith(self.algorithm)
|
assert encoded.startswith(self.algorithm)
|
||||||
salt = hash_password_salt(encoded)
|
salt = hash_password_salt(encoded)
|
||||||
return constant_time_compare(crypt.crypt(password, salt),
|
return constant_time_compare(self.algorithm + crypt.crypt(password, salt),
|
||||||
encoded)
|
encoded)
|
||||||
|
|
||||||
def safe_summary(self, encoded):
|
def safe_summary(self, encoded):
|
||||||
|
|
Loading…
Reference in a new issue