diff options
-rw-r--r-- | cryptography/hazmat/bindings/openssl/backend.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/openssl/backend.py b/cryptography/hazmat/bindings/openssl/backend.py index 08afa4d6..fdb67628 100644 --- a/cryptography/hazmat/bindings/openssl/backend.py +++ b/cryptography/hazmat/bindings/openssl/backend.py @@ -329,8 +329,7 @@ class _CipherContext(object): block_byte_size, tag_buf ) assert res != 0 - size = self._cipher.block_size - self._tag = self._backend.ffi.buffer(tag_buf)[:size] + self._tag = self._backend.ffi.buffer(tag_buf)[:] res = self._backend.lib.EVP_CIPHER_CTX_cleanup(self._ctx) assert res == 1 |