aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cryptography/hazmat/backends/interfaces.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py
index 8d17d3ad..a543ba1f 100644
--- a/cryptography/hazmat/backends/interfaces.py
+++ b/cryptography/hazmat/backends/interfaces.py
@@ -99,7 +99,8 @@ class RSABackend(six.with_metaclass(abc.ABCMeta)):
"""
@abc.abstractmethod
- def create_rsa_verification_ctx(self, public_key, signature, padding, algorithm):
+ def create_rsa_verification_ctx(self, public_key, signature, padding,
+ algorithm):
"""
Returns an object conforming to the AsymmetricVerificationContext
interface.