From 6fcab02319adfea28b890fa116675c27dc1891d5 Mon Sep 17 00:00:00 2001 From: Ayrx Date: Tue, 15 Apr 2014 19:32:32 +0800 Subject: Removed key parameter from create_cmac_ctx() --- cryptography/hazmat/backends/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py index 9539d839..4137b534 100644 --- a/cryptography/hazmat/backends/interfaces.py +++ b/cryptography/hazmat/backends/interfaces.py @@ -153,7 +153,7 @@ class CMACBackend(object): """ @abc.abstractmethod - def create_cmac_ctx(self, key, algorithm): + def create_cmac_ctx(self, algorithm): """ Create a CMACContext for calculating a message authentication code. """ -- cgit v1.2.3