diff options
-rw-r--r-- | cryptography/hazmat/primitives/hmac.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/hmac.py b/cryptography/hazmat/primitives/hmac.py index 2bd8e4d3..618bccc5 100644 --- a/cryptography/hazmat/primitives/hmac.py +++ b/cryptography/hazmat/primitives/hmac.py @@ -47,7 +47,7 @@ class HMAC(object): return HMAC( self._key, self.algorithm, - self._backend, + backend=self._backend, ctx=self._ctx.copy() ) |