[Zodb-checkins] SVN: ZODB/trunk/src/ZEO/ fixed usage of ZEO.hash
Andreas Jung
andreas at andreas-jung.com
Mon Mar 30 22:04:51 EDT 2009
Log message for revision 98665:
fixed usage of ZEO.hash
Changed:
U ZODB/trunk/src/ZEO/auth/auth_digest.py
U ZODB/trunk/src/ZEO/auth/base.py
U ZODB/trunk/src/ZEO/zrpc/smac.py
-=-
Modified: ZODB/trunk/src/ZEO/auth/auth_digest.py
===================================================================
--- ZODB/trunk/src/ZEO/auth/auth_digest.py 2009-03-31 00:05:19 UTC (rev 98664)
+++ ZODB/trunk/src/ZEO/auth/auth_digest.py 2009-03-31 02:04:51 UTC (rev 98665)
@@ -37,13 +37,13 @@
import os
import random
-import sha
import struct
import time
from ZEO.auth.base import Database, Client
from ZEO.StorageServer import ZEOStorage
from ZEO.Exceptions import AuthError
+from ZEO.hash import sha1
def get_random_bytes(n=8):
if os.path.exists("/dev/urandom"):
@@ -56,7 +56,7 @@
return s
def hexdigest(s):
- return sha.new(s).hexdigest()
+ return sha1(s).hexdigest()
class DigestDatabase(Database):
def __init__(self, filename, realm=None):
@@ -76,7 +76,7 @@
# HMAC wants a 64-byte key. We don't want to use h_up
# directly because it would never change over time. Instead
# use the hash plus part of h_up.
- return sha.new("%s:%s" % (h_up, nonce)).digest() + h_up[:44]
+ return sha1("%s:%s" % (h_up, nonce)).digest() + h_up[:44]
class StorageClass(ZEOStorage):
def set_database(self, database):
@@ -92,7 +92,7 @@
def _get_nonce(self):
# RFC 2069 recommends a nonce of the form
# H(client-IP ":" time-stamp ":" private-key)
- dig = sha.sha()
+ dig = sha1()
dig.update(str(self.connection.addr))
dig.update(self._get_time())
dig.update(self.noncekey)
Modified: ZODB/trunk/src/ZEO/auth/base.py
===================================================================
--- ZODB/trunk/src/ZEO/auth/base.py 2009-03-31 00:05:19 UTC (rev 98664)
+++ ZODB/trunk/src/ZEO/auth/base.py 2009-03-31 02:04:51 UTC (rev 98665)
@@ -18,7 +18,7 @@
"""
import os
-import sha
+from ZEO.hash import sha1
class Client:
# Subclass should override to list the names of methods that
@@ -113,7 +113,7 @@
return self._users[username]
def hash(self, s):
- return sha.new(s).hexdigest()
+ return sha1(s).hexdigest()
def add_user(self, username, password):
if self._users.has_key(username):
Modified: ZODB/trunk/src/ZEO/zrpc/smac.py
===================================================================
--- ZODB/trunk/src/ZEO/zrpc/smac.py 2009-03-31 00:05:19 UTC (rev 98664)
+++ ZODB/trunk/src/ZEO/zrpc/smac.py 2009-03-31 02:04:51 UTC (rev 98665)
@@ -42,6 +42,7 @@
from ZEO.zrpc.log import log, short_repr
from ZEO.zrpc.error import DisconnectedError
+import ZEO.hash
# Use the dictionary to make sure we get the minimum number of errno
@@ -147,8 +148,8 @@
# and thus iterator, because it contains a yield statement.
def hack():
- self.__hmac_send = hmac.HMAC(sesskey, digestmod=sha)
- self.__hmac_recv = hmac.HMAC(sesskey, digestmod=sha)
+ self.__hmac_send = hmac.HMAC(sesskey, digestmod=ZEO.hash)
+ self.__hmac_recv = hmac.HMAC(sesskey, digestmod=ZEO.hash)
if False:
yield ''
More information about the Zodb-checkins
mailing list