diff options
Diffstat (limited to 'sleekxmpp/componentxmpp.py')
-rwxr-xr-x | sleekxmpp/componentxmpp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/componentxmpp.py b/sleekxmpp/componentxmpp.py index 28b58172..7f952413 100755 --- a/sleekxmpp/componentxmpp.py +++ b/sleekxmpp/componentxmpp.py @@ -39,7 +39,7 @@ import random import copy from . import plugins from . import stanza -import sha +import hashlib srvsupport = True try: import dns.resolver @@ -96,7 +96,7 @@ class ComponentXMPP(basexmpp, XMLStream): def start_stream_handler(self, xml): sid = xml.get('id', '') handshake = ET.Element('{jabber:component:accept}handshake') - handshake.text = sha.new(u"%s%s" % (sid, self.secret)).hexdigest().lower() + handshake.text = hashlib.sha1.new(b"%s%s" % (sid, self.secret)).hexdigest().lower() self.send(handshake) def _handleHandshake(self, xml): |