aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography/hazmat
diff options
context:
space:
mode:
Diffstat (limited to 'cryptography/hazmat')
-rw-r--r--cryptography/hazmat/backends/interfaces.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py
index 4137b534..92413d8c 100644
--- a/cryptography/hazmat/backends/interfaces.py
+++ b/cryptography/hazmat/backends/interfaces.py
@@ -147,9 +147,9 @@ class OpenSSLSerializationBackend(object):
@six.add_metaclass(abc.ABCMeta)
class CMACBackend(object):
@abc.abstractmethod
- def cmac_supported(self):
+ def cmac_algorithm_supported(self, algorithm):
"""
- Returns True if the backend supports CMAC
+ Returns True if the block cipher is supported for CMAC by this backend
"""
@abc.abstractmethod