diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-06-29 11:26:22 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-06-29 11:26:22 -0700 |
commit | d9d472b8b18344862056f88c8b8df7cd8e76f00c (patch) | |
tree | 02897f75806cf6b340bcafebd86c44250b7618f1 | |
parent | c9ff1cb34ca799e0722208619495a27f63efb4ca (diff) | |
download | cryptography-d9d472b8b18344862056f88c8b8df7cd8e76f00c.tar.gz cryptography-d9d472b8b18344862056f88c8b8df7cd8e76f00c.tar.bz2 cryptography-d9d472b8b18344862056f88c8b8df7cd8e76f00c.zip |
CommonCrypto as well
-rw-r--r-- | cryptography/hazmat/backends/commoncrypto/backend.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cryptography/hazmat/backends/commoncrypto/backend.py b/cryptography/hazmat/backends/commoncrypto/backend.py index 41be11f9..9f63cb7b 100644 --- a/cryptography/hazmat/backends/commoncrypto/backend.py +++ b/cryptography/hazmat/backends/commoncrypto/backend.py @@ -238,7 +238,7 @@ class Backend(object): ) -def _release_cipher_ctx(ctx): +def _release_cipher_ctx(backend, ctx): """ Called by the garbage collector and used to safely dereference and release the context. @@ -358,7 +358,8 @@ class _GCMCipherContext(object): ) ctx = self._backend._ffi.new("CCCryptorRef *") - ctx = self._backend._ffi.gc(ctx, _release_cipher_ctx) + ctx = self._backend._ffi.gc( + ctx, lambda ctx: _release_cipher_ctx(self._backend, ctx)) self._ctx = ctx @@ -393,9 +394,10 @@ class _GCMCipherContext(object): tag_size = self._cipher.block_size // 8 tag_buf = self._backend._ffi.new("unsigned char[]", tag_size) tag_len = self._backend._ffi.new("size_t *", tag_size) - res = backend._lib.CCCryptorGCMFinal(self._ctx[0], tag_buf, tag_len) + res = self.backend._lib.CCCryptorGCMFinal( + self._ctx[0], tag_buf, tag_len) self._backend._check_response(res) - _release_cipher_ctx(self._ctx) + _release_cipher_ctx(self.backend, self._ctx) self._tag = self._backend._ffi.buffer(tag_buf)[:] if (self._operation == self._backend._lib.kCCDecrypt and not constant_time.bytes_eq( |