diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-26 11:52:17 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-26 11:52:17 -0600 |
commit | 6cf35f39677f04f5711ae062161858568cc14bcd (patch) | |
tree | 24648f7fa8a92be0b2b7c9e9f60b6e6a44c4f798 | |
parent | 0e94fbe27e3942620906b7f275fa69c55defacd5 (diff) | |
download | cryptography-6cf35f39677f04f5711ae062161858568cc14bcd.tar.gz cryptography-6cf35f39677f04f5711ae062161858568cc14bcd.tar.bz2 cryptography-6cf35f39677f04f5711ae062161858568cc14bcd.zip |
update docstrings
-rw-r--r-- | cryptography/hazmat/primitives/interfaces.py | 16 |
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. """ |