blob: 7c52b337e1a436f64970602be6f501de0f507c94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
diff -Nur -x '*.orig' -x '*~' python-gdata-1.2.4/src/gdata/tlslite/utils/cryptomath.py python-gdata-1.2.4.new/src/gdata/tlslite/utils/cryptomath.py
--- python-gdata-1.2.4/src/gdata/tlslite/utils/cryptomath.py 2008-12-02 03:35:26.000000000 +0100
+++ python-gdata-1.2.4.new/src/gdata/tlslite/utils/cryptomath.py 2009-05-19 00:44:00.000000000 +0200
@@ -6,7 +6,7 @@
import math
import base64
import binascii
-import sha
+import hashlib
from compat import *
@@ -195,7 +195,7 @@
return int(math.ceil(bits / 8.0))
def hashAndBase64(s):
- return stringToBase64(sha.sha(s).digest())
+ return stringToBase64(hashlib.sha1(s).digest())
def getBase64Nonce(numChars=22): #defaults to an 132 bit nonce
bytes = getRandomBytes(numChars)
|