commit | 6fcab02319adfea28b890fa116675c27dc1891d5 | [log] [tgz] |
---|---|---|
author | Ayrx <terrycwk1994@gmail.com> | Tue Apr 15 19:32:32 2014 +0800 |
committer | Ayrx <terrycwk1994@gmail.com> | Tue Apr 15 19:32:32 2014 +0800 |
tree | eb339520e06cca7e01b65db82832ee8bacf89f68 | |
parent | 97a72fd82819ab9d276c9a6e07c54446ebc2c591 [diff] |
Removed key parameter from create_cmac_ctx()
diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py index 9539d83..4137b53 100644 --- a/cryptography/hazmat/backends/interfaces.py +++ b/cryptography/hazmat/backends/interfaces.py
@@ -153,7 +153,7 @@ """ @abc.abstractmethod - def create_cmac_ctx(self, key, algorithm): + def create_cmac_ctx(self, algorithm): """ Create a CMACContext for calculating a message authentication code. """