create_rsa_sign_ctx->create_rsa_signature_ctx
diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py
index 73f861a..f02890e 100644
--- a/cryptography/hazmat/backends/interfaces.py
+++ b/cryptography/hazmat/backends/interfaces.py
@@ -92,7 +92,7 @@
"""
@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 72b6491..1879336 100644
--- a/docs/hazmat/backends/interfaces.rst
+++ b/docs/hazmat/backends/interfaces.rst
@@ -213,7 +213,7 @@
: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`