Fixed #26016 -- Restored contrib.auth hashers compatibility with py-bcrypt.
Reverted "Explicitly passed rounds as rounds to bcrypt.gensalt()"
This reverts commit 23529fb195
.
This commit is contained in:
parent
0db6367fe2
commit
f0ad641628
|
@ -286,7 +286,7 @@ class BCryptSHA256PasswordHasher(BasePasswordHasher):
|
|||
|
||||
def salt(self):
|
||||
bcrypt = self._load_library()
|
||||
return bcrypt.gensalt(rounds=self.rounds)
|
||||
return bcrypt.gensalt(self.rounds)
|
||||
|
||||
def encode(self, password, salt):
|
||||
bcrypt = self._load_library()
|
||||
|
|
|
@ -76,3 +76,6 @@ Bugfixes
|
|||
|
||||
* Made ``loaddata`` skip disabling and enabling database constraints when it
|
||||
doesn't load any fixtures (:ticket:`23372`).
|
||||
|
||||
* Restored ``contrib.auth`` hashers compatibility with py-bcrypt
|
||||
(:ticket:`26016`).
|
||||
|
|
Loading…
Reference in New Issue