diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-22 11:15:08 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-22 11:15:08 -0700 |
commit | 218f7fbdc6ec3fbc43f6dd112d8e5a6645ffa0e1 (patch) | |
tree | 23f7417bd022f21958b43774bd0c7fbc5280c7d7 | |
parent | 60d8640bc3aa8eb48273e1df6de94607a38f8ec3 (diff) | |
download | cryptography-218f7fbdc6ec3fbc43f6dd112d8e5a6645ffa0e1.tar.gz cryptography-218f7fbdc6ec3fbc43f6dd112d8e5a6645ffa0e1.tar.bz2 cryptography-218f7fbdc6ec3fbc43f6dd112d8e5a6645ffa0e1.zip |
Fixed #1429 -- mark these classes as implementing the MACContext interface
-rw-r--r-- | cryptography/hazmat/backends/commoncrypto/hmac.py | 1 | ||||
-rw-r--r-- | cryptography/hazmat/backends/openssl/hmac.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/cryptography/hazmat/backends/commoncrypto/hmac.py b/cryptography/hazmat/backends/commoncrypto/hmac.py index ec3a878b..c6e3f276 100644 --- a/cryptography/hazmat/backends/commoncrypto/hmac.py +++ b/cryptography/hazmat/backends/commoncrypto/hmac.py @@ -18,6 +18,7 @@ from cryptography.exceptions import UnsupportedAlgorithm, _Reasons from cryptography.hazmat.primitives import interfaces +@utils.register_interface(interfaces.MACContext) @utils.register_interface(interfaces.HashContext) class _HMACContext(object): def __init__(self, backend, key, algorithm, ctx=None): diff --git a/cryptography/hazmat/backends/openssl/hmac.py b/cryptography/hazmat/backends/openssl/hmac.py index 3f1576f5..ca62184b 100644 --- a/cryptography/hazmat/backends/openssl/hmac.py +++ b/cryptography/hazmat/backends/openssl/hmac.py @@ -19,6 +19,7 @@ from cryptography.exceptions import UnsupportedAlgorithm, _Reasons from cryptography.hazmat.primitives import interfaces +@utils.register_interface(interfaces.MACContext) @utils.register_interface(interfaces.HashContext) class _HMACContext(object): def __init__(self, backend, key, algorithm, ctx=None): |