diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-20 21:24:59 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-20 21:24:59 -0700 |
commit | c34893c38c853ec341676337d26f5f10257b56b2 (patch) | |
tree | 0297b213105ad2a6f6de9859b2f0c393b7952273 /cryptography/hazmat/primitives/cmac.py | |
parent | 41b33b70d3f9c937d80c264627d1195692a17863 (diff) | |
parent | 126afca70edc3fac2e493c6b7cd05219c8d8e373 (diff) | |
download | cryptography-c34893c38c853ec341676337d26f5f10257b56b2.tar.gz cryptography-c34893c38c853ec341676337d26f5f10257b56b2.tar.bz2 cryptography-c34893c38c853ec341676337d26f5f10257b56b2.zip |
Merge branch 'master' into multi-fernet
Diffstat (limited to 'cryptography/hazmat/primitives/cmac.py')
-rw-r--r-- | cryptography/hazmat/primitives/cmac.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/cmac.py b/cryptography/hazmat/primitives/cmac.py index fa463ae0..7ae5c118 100644 --- a/cryptography/hazmat/primitives/cmac.py +++ b/cryptography/hazmat/primitives/cmac.py @@ -21,7 +21,7 @@ from cryptography.hazmat.backends.interfaces import CMACBackend from cryptography.hazmat.primitives import constant_time, interfaces -@utils.register_interface(interfaces.CMACContext) +@utils.register_interface(interfaces.MACContext) class CMAC(object): def __init__(self, algorithm, backend, ctx=None): if not isinstance(backend, CMACBackend): |