mirror of https://github.com/django/django.git
[py3k] use the base64 module, instead of bytes.encode('base64')
This commit is contained in:
parent
5c09c59bc7
commit
5f8da527ab
|
@ -1,5 +1,6 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import base64
|
||||
import hashlib
|
||||
|
||||
from django.dispatch import receiver
|
||||
|
@ -218,7 +219,7 @@ class PBKDF2PasswordHasher(BasePasswordHasher):
|
|||
if not iterations:
|
||||
iterations = self.iterations
|
||||
hash = pbkdf2(password, salt, iterations, digest=self.digest)
|
||||
hash = hash.encode('base64').strip()
|
||||
hash = base64.b64encode(hash).strip()
|
||||
return "%s$%d$%s$%s" % (self.algorithm, iterations, salt, hash)
|
||||
|
||||
def verify(self, password, encoded):
|
||||
|
|
Loading…
Reference in New Issue