aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-18 13:43:58 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-18 13:43:58 -0600
commitd883cd2f13187a4d1054c543872677b5ca4ffb2c (patch)
tree8bebe181a1bf74577ac02fac0c2a939fd314a77e
parent430202dfba9a3c97abc80955752e5b9e4d430911 (diff)
downloadcryptography-d883cd2f13187a4d1054c543872677b5ca4ffb2c.tar.gz
cryptography-d883cd2f13187a4d1054c543872677b5ca4ffb2c.tar.bz2
cryptography-d883cd2f13187a4d1054c543872677b5ca4ffb2c.zip
79 characters ought to be good enough for any line
-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.