Browse Source

do not calculate tag size twice

Signed-off-by: r4sas <r4sas@i2pmail.org>
dependabot/add-v2-config-file
R4SAS 4 years ago
parent
commit
86061e595c
Signed by untrusted user: r4sas
GPG Key ID: 66F6C87B98EBCFE2
  1. 2
      pbincli/format.py

2
pbincli/format.py

@ -206,7 +206,7 @@ class Paste: @@ -206,7 +206,7 @@ class Paste:
# Get compression type from received paste
self._compression = self._data['adata'][0][7]
cipher = self.__initializeCipher(key, iv, self._data['adata'], int(self._tag_bits /8 ))
cipher = self.__initializeCipher(key, iv, self._data['adata'], cipher_tag_bytes)
# Cut the cipher text into message and tag
cipher_text_tag = b64decode(self._data['ct'])
cipher_text = cipher_text_tag[:-cipher_tag_bytes]

Loading…
Cancel
Save