diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-17 21:12:38 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-17 21:12:38 -0600 |
commit | 3292c994ba0516c59cc3e003f910a9f3c2bc0c54 (patch) | |
tree | 8663e40122158da5a3f76ba80881aa5816fefb33 | |
parent | 19f32d5502ec938047d3d46dc440d8fe9481caa8 (diff) | |
download | cryptography-3292c994ba0516c59cc3e003f910a9f3c2bc0c54.tar.gz cryptography-3292c994ba0516c59cc3e003f910a9f3c2bc0c54.tar.bz2 cryptography-3292c994ba0516c59cc3e003f910a9f3c2bc0c54.zip |
create_rsa_sign_ctx->create_rsa_signature_ctx
-rw-r--r-- | cryptography/hazmat/backends/interfaces.py | 2 | ||||
-rw-r--r-- | docs/hazmat/backends/interfaces.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py index 73f861a4..f02890e9 100644 --- a/cryptography/hazmat/backends/interfaces.py +++ b/cryptography/hazmat/backends/interfaces.py @@ -92,7 +92,7 @@ class RSABackend(six.with_metaclass(abc.ABCMeta)): """ @abc.abstractmethod - def create_rsa_sign_ctx(self, private_key, padding, algorithm): + def create_rsa_signature_ctx(self, private_key, padding, algorithm): """ Returns an object conforming to the AsymmetricSignContext interface. """ diff --git a/docs/hazmat/backends/interfaces.rst b/docs/hazmat/backends/interfaces.rst index 72b64910..1879336f 100644 --- a/docs/hazmat/backends/interfaces.rst +++ b/docs/hazmat/backends/interfaces.rst @@ -213,7 +213,7 @@ A specific ``backend`` may provide one or more of these interfaces. :raises ValueError: If the public_exponent is not valid. - .. method:: create_rsa_sign_ctx(private_key, padding, algorithm) + .. method:: create_rsa_signature_ctx(private_key, padding, algorithm) :param private_key: An instance of a :class:`~cryptography.hazmat.primitives.interfaces.RSAPrivateKey` |