Tres Seaver
2016-05-31 2d1f2cf61df8f507f9ed605d28c63af6e2ddc85a
repoze/who/_auth_tkt.py
@@ -36,12 +36,8 @@
makes it possible to use the same authentication process with
non-Python code run under Apache.
"""
import hashlib
import time as time_mod
try:
    import hashlib
except ImportError:
    # mimic hashlib (will work for md5, fail for secure hashes)
    import md5 as hashlib
from repoze.who._compat import encodestring
from repoze.who._compat import SimpleCookie