aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography/hazmat/primitives/cmac.py
diff options
context:
space:
mode:
authorTerry Chia <terrycwk1994@gmail.com>2014-10-20 12:15:22 +0800
committerTerry Chia <terrycwk1994@gmail.com>2014-10-20 22:59:27 +0800
commitc7c82f3849f33d34637fa133fc906efbc4fd6aef (patch)
treefb7eb40edfee96637fce3835f9f387f9ac3a5b16 /cryptography/hazmat/primitives/cmac.py
parent73cb687bcf87fbb7d392c998bd3ad619b58fa6b0 (diff)
downloadcryptography-c7c82f3849f33d34637fa133fc906efbc4fd6aef.tar.gz
cryptography-c7c82f3849f33d34637fa133fc906efbc4fd6aef.tar.bz2
cryptography-c7c82f3849f33d34637fa133fc906efbc4fd6aef.zip
Add to changelog. Document deprecation.
Diffstat (limited to 'cryptography/hazmat/primitives/cmac.py')
-rw-r--r--cryptography/hazmat/primitives/cmac.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/cmac.py b/cryptography/hazmat/primitives/cmac.py
index 968fa463..7ae5c118 100644
--- a/cryptography/hazmat/primitives/cmac.py
+++ b/cryptography/hazmat/primitives/cmac.py
@@ -22,7 +22,6 @@ from cryptography.hazmat.primitives import constant_time, interfaces
@utils.register_interface(interfaces.MACContext)
-@utils.register_interface(interfaces.CMACContext)
class CMAC(object):
def __init__(self, algorithm, backend, ctx=None):
if not isinstance(backend, CMACBackend):