aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cryptography/hazmat/primitives/interfaces.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py
index c91fd5c5..293fcd78 100644
--- a/cryptography/hazmat/primitives/interfaces.py
+++ b/cryptography/hazmat/primitives/interfaces.py
@@ -175,13 +175,13 @@ class RSAPrivateKey(six.with_metaclass(abc.ABCMeta)):
@abc.abstractproperty
def modulus(self):
"""
- The public modulus of the RSA key. Alias for n.
+ The public modulus of the RSA key.
"""
@abc.abstractproperty
def public_exponent(self):
"""
- The public exponent of the RSA key. Alias for e.
+ The public exponent of the RSA key.
"""
@abc.abstractproperty
@@ -199,7 +199,7 @@ class RSAPrivateKey(six.with_metaclass(abc.ABCMeta)):
@abc.abstractproperty
def n(self):
"""
- The public modulus of the RSA key.
+ The public modulus of the RSA key. Alias for modulus.
"""
@abc.abstractproperty
@@ -223,7 +223,7 @@ class RSAPrivateKey(six.with_metaclass(abc.ABCMeta)):
@abc.abstractproperty
def e(self):
"""
- The public exponent of the RSA key.
+ The public exponent of the RSA key. Alias for public_exponent.
"""
@@ -231,13 +231,13 @@ class RSAPublicKey(six.with_metaclass(abc.ABCMeta)):
@abc.abstractproperty
def modulus(self):
"""
- The public modulus of the RSA key. Alias for n.
+ The public modulus of the RSA key.
"""
@abc.abstractproperty
def public_exponent(self):
"""
- The public exponent of the RSA key. Alias for e.
+ The public exponent of the RSA key.
"""
@abc.abstractproperty
@@ -249,11 +249,11 @@ class RSAPublicKey(six.with_metaclass(abc.ABCMeta)):
@abc.abstractproperty
def n(self):
"""
- The public modulus of the RSA key.
+ The public modulus of the RSA key. Alias for modulus.
"""
@abc.abstractproperty
def e(self):
"""
- The public exponent of the RSA key.
+ The public exponent of the RSA key. Alias for public_exponent.
"""