Skip to content
Snippets Groups Projects
Commit f5971eaa authored by steve-e's avatar steve-e
Browse files

Adress some crypto functions correctly.

parent bb7580e9
No related branches found
No related tags found
No related merge requests found
......@@ -281,7 +281,7 @@ class EncryptedStanzaSession(StanzaSession):
if (not 1 < e < (p - 1)):
raise exceptions.NegotiationError, "invalid DH value"
return self.sha256(self.encode_mpi(self.powmod(e, y, p)))
return crypto.sha256(crypto.encode_mpi(crypto.powmod(e, y, p)))
def c7lize_mac_id(self, form):
kids = form.getChildren()
......@@ -741,7 +741,7 @@ class EncryptedStanzaSession(StanzaSession):
# 4.5.5
if srs:
srshash = crypto.hmac(srs, 'Shared Retained Secret')
srshash = self.hmac(srs, 'Shared Retained Secret')
else:
srshash = crypto.random_bytes(32)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment