--- a/md5crypt.py Thu Jun 17 15:02:22 2010 +0200
+++ b/md5crypt.py Thu Jun 17 15:02:24 2010 +0200
@@ -61,7 +61,7 @@
MAGIC = '$1$' # Magic string
ITOA64 = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
-import md5
+import hashlib as md5
def to64 (v, n):
ret = ''
--- a/web/request.py Thu Jun 17 15:02:22 2010 +0200
+++ b/web/request.py Thu Jun 17 15:02:24 2010 +0200
@@ -20,7 +20,7 @@
__docformat__ = "restructuredtext en"
import Cookie
-import sha
+import hashlib
import time
import random
import base64
@@ -359,9 +359,9 @@
def register_onetime_callback(self, func, *args):
cbname = 'cb_%s' % (
- sha.sha('%s%s%s%s' % (time.time(), func.__name__,
- random.random(),
- self.user.login)).hexdigest())
+ hashlib.sha('%s%s%s%s' % (time.time(), func.__name__,
+ random.random(),
+ self.user.login)).hexdigest())
def _cb(req):
try:
ret = func(req, *args)