View | Details | Raw Unified | Return to bug 152413 | Differences between
and this patch

Collapse All | Expand All

(-)py-xmpppy/files/patch-xmpp-auth.py 2010-11-20 00:11:28.000000000 +0300 (-1 / +1 lines)
Lines 22-28 Link Here
22
+    """ For python version >= 2.6 """
22
+    """ For python version >= 2.6 """
23
+    def _SHA(some): return hashlib.sha1(some)
23
+    def _SHA(some): return hashlib.sha1(some)
24
+    def HH(some): return hashlib.md5(some).hexdigest()
24
+    def HH(some): return hashlib.md5(some).hexdigest()
25
+    def h(some): return hashlib.md5(some).digest()
25
+    def H(some): return hashlib.md5(some).digest()
26
+
26
+
27
+
27
+
28
 class NonSASL(PlugIn):
28
 class NonSASL(PlugIn):

Return to bug 152413