temporary removed future support for sleek to support digest-md5 auth

This commit is contained in:
Brian Beggs 2010-07-01 08:44:39 -04:00
parent 488d5b29d4
commit fff54eaf2f

View File

@ -7,7 +7,6 @@
See the file license.txt for copying permission. See the file license.txt for copying permission.
""" """
from __future__ import absolute_import
from . basexmpp import basexmpp from . basexmpp import basexmpp
from xml.etree import cElementTree as ET from xml.etree import cElementTree as ET
from . xmlstream.xmlstream import XMLStream from . xmlstream.xmlstream import XMLStream
@ -257,8 +256,8 @@ class ClientXMPP(basexmpp, XMLStream):
for i in range(7): for i in range(7):
cnonce+=hex(int(random.random()*65536*4096))[2:] cnonce+=hex(int(random.random()*65536*4096))[2:]
cnonce = base64.encodestring(cnonce)[0:-1] cnonce = base64.encodestring(cnonce)[0:-1]
a1 = md5("%s:%s:%s" % (self.username, self.domain, self.password))
a1 = "%s:%s:%s" %(md5("%s:%s:%s" % (self.username, self.domain, self.password)), challenge["nonce"], cnonce ) a1 = "%s:%s:%s" %(a1, challenge["nonce"], cnonce )
a2 = "AUTHENTICATE:xmpp/%s" %self.domain a2 = "AUTHENTICATE:xmpp/%s" %self.domain
responseHash = md5digest("%s:%s:00000001:%s:auth:%s" %(md5digest(a1), challenge["nonce"], cnonce, md5digest(a2) ) ) responseHash = md5digest("%s:%s:00000001:%s:auth:%s" %(md5digest(a1), challenge["nonce"], cnonce, md5digest(a2) ) )
response = '''charset=utf-8,username="%s",realm="%s",nonce="%s",nc=00000001,cnonce="%s",digest-uri="%s",response=%s,qop=%s,''' %(self.username, self.domain, challenge["nonce"], cnonce, "xmpp/%s" % self.domain, responseHash, challenge["qop"]) response = '''charset=utf-8,username="%s",realm="%s",nonce="%s",nc=00000001,cnonce="%s",digest-uri="%s",response=%s,qop=%s,''' %(self.username, self.domain, challenge["nonce"], cnonce, "xmpp/%s" % self.domain, responseHash, challenge["qop"])