aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cryptography/hazmat/primitives/interfaces.py4
-rw-r--r--docs/hazmat/primitives/interfaces.rst4
2 files changed, 4 insertions, 4 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py
index 1a27644f..4fa24570 100644
--- a/cryptography/hazmat/primitives/interfaces.py
+++ b/cryptography/hazmat/primitives/interfaces.py
@@ -185,7 +185,7 @@ class RSAPrivateKey(six.with_metaclass(abc.ABCMeta)):
"""
@abc.abstractproperty
- def key_length(self):
+ def key_size(self):
"""
The bit length of the public modulus.
"""
@@ -241,7 +241,7 @@ class RSAPublicKey(six.with_metaclass(abc.ABCMeta)):
"""
@abc.abstractproperty
- def key_length(self):
+ def key_size(self):
"""
The bit length of the public modulus.
"""
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst
index 09a5a4ce..7fef1c13 100644
--- a/docs/hazmat/primitives/interfaces.rst
+++ b/docs/hazmat/primitives/interfaces.rst
@@ -130,7 +130,7 @@ Asymmetric Interfaces
The public exponent.
- .. attribute:: key_length
+ .. attribute:: key_size
:type: int
@@ -179,7 +179,7 @@ Asymmetric Interfaces
The public modulus.
- .. attribute:: key_length
+ .. attribute:: key_size
:type: int