Used a Python 3-compatible syntax for building a translation table
This commit is contained in:
parent
00ace01411
commit
690cabe203
|
@ -27,8 +27,8 @@ from django.utils.encoding import smart_str
|
||||||
from django.utils.six.moves import xrange
|
from django.utils.six.moves import xrange
|
||||||
|
|
||||||
|
|
||||||
_trans_5c = b"".join([chr(x ^ 0x5C) for x in xrange(256)])
|
_trans_5c = bytearray([(x ^ 0x5C) for x in xrange(256)])
|
||||||
_trans_36 = b"".join([chr(x ^ 0x36) for x in xrange(256)])
|
_trans_36 = bytearray([(x ^ 0x36) for x in xrange(256)])
|
||||||
|
|
||||||
|
|
||||||
def salted_hmac(key_salt, value, secret=None):
|
def salted_hmac(key_salt, value, secret=None):
|
||||||
|
|
Loading…
Reference in New Issue