[omemo] Add auth tag to key instead of payload

This commit is contained in:
Philipp Hörist
2017-04-06 17:45:26 +02:00
parent bd4cdf8fae
commit 14e661a79c

View File

@@ -228,9 +228,7 @@ class OmemoState:
payload, tag = encrypt(key, iv, plaintext)
# for XEP-384 Compliance uncomment
# key += tag
payload += tag
key += tag
# Encrypt the message key with for each of receivers devices
for device in devices_list:
@@ -289,9 +287,7 @@ class OmemoState:
payload, tag = encrypt(key, iv, plaintext)
# for XEP-384 Compliance uncomment
# key += tag
payload += tag
key += tag
for tup in devices_list:
self.get_session_cipher(tup[0], tup[1])