summaryrefslogtreecommitdiff
path: root/passlib/tests/test_context.py
diff options
context:
space:
mode:
Diffstat (limited to 'passlib/tests/test_context.py')
-rw-r--r--passlib/tests/test_context.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/passlib/tests/test_context.py b/passlib/tests/test_context.py
index f323080..8bb4e3e 100644
--- a/passlib/tests/test_context.py
+++ b/passlib/tests/test_context.py
@@ -15,7 +15,6 @@ from passlib import hash
from passlib.context import CryptContext, LazyCryptContext
from passlib.exc import PasslibConfigWarning, PasslibHashWarning
from passlib.utils import tick, to_unicode
-from passlib.utils.compat import str_to_uascii
import passlib.utils.handlers as uh
from passlib.tests.utils import (TestCase, set_file, TICK_RESOLUTION,
quicksleep, time_call, handler_derived_from)
@@ -1155,7 +1154,7 @@ sha512_crypt__min_rounds = 45000
from hashlib import md5
if isinstance(secret, str):
secret = secret.encode("utf-8")
- return str_to_uascii(md5(secret).hexdigest())
+ return md5(secret).hexdigest()
# calling needs_update should query callback
ctx = CryptContext([dummy])
@@ -1710,7 +1709,7 @@ class DelayHash(uh.StaticHandler):
time.sleep(self.delay)
if isinstance(secret, str):
secret = secret.encode("utf-8")
- return str_to_uascii(hashlib.sha1(b"prefix" + secret).hexdigest())
+ return hashlib.sha1(b"prefix" + secret).hexdigest()
#=============================================================================
# LazyCryptContext