aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-17 19:19:14 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-17 19:19:14 -0600
commit25a689dbc000ed64bb0d67b0747c9c5bae2936bd (patch)
tree564e0992522a0a0f4a4017c59b0d31070f16ab28
parent4c0bc035691665710a4da6eb400d4e22fffee4e8 (diff)
downloadcryptography-25a689dbc000ed64bb0d67b0747c9c5bae2936bd.tar.gz
cryptography-25a689dbc000ed64bb0d67b0747c9c5bae2936bd.tar.bz2
cryptography-25a689dbc000ed64bb0d67b0747c9c5bae2936bd.zip
add sign/verify ctx creation methods to RSABackend interface
-rw-r--r--cryptography/hazmat/backends/interfaces.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py
index b867f26a..73f861a4 100644
--- a/cryptography/hazmat/backends/interfaces.py
+++ b/cryptography/hazmat/backends/interfaces.py
@@ -90,3 +90,15 @@ class RSABackend(six.with_metaclass(abc.ABCMeta)):
Generate an RSAPrivateKey instance with public_exponent and a modulus
of key_size bits.
"""
+
+ @abc.abstractmethod
+ def create_rsa_sign_ctx(self, private_key, padding, algorithm):
+ """
+ Returns an object conforming to the AsymmetricSignContext interface.
+ """
+
+ @abc.abstractmethod
+ def create_rsa_verify_ctx(self, public_key, signature, padding, algorithm):
+ """
+ Returns an object conforming to the AsymmetricVerifyContext interface.
+ """