diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-03 16:13:09 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-03 16:13:09 -0800 |
commit | 53f6dbca6e5a5a727c58e6c1fc320e09503d1cba (patch) | |
tree | ea51a47b4d0b69103bbca62d759cc9005ce3d109 /docs/hazmat/primitives/interfaces.rst | |
parent | 2b1752ed68a08255ddacf1800c6cb6b406ce5e4b (diff) | |
parent | 59ca2fc4a93ed398e5c2674b7c98a81ed95e0930 (diff) | |
download | cryptography-53f6dbca6e5a5a727c58e6c1fc320e09503d1cba.tar.gz cryptography-53f6dbca6e5a5a727c58e6c1fc320e09503d1cba.tar.bz2 cryptography-53f6dbca6e5a5a727c58e6c1fc320e09503d1cba.zip |
Merge branch 'master' into prioritized-multi-backend
Diffstat (limited to 'docs/hazmat/primitives/interfaces.rst')
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index 09a5a4ce..cbca5ed6 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -130,7 +130,13 @@ Asymmetric Interfaces The public exponent. - .. attribute:: key_length + .. attribute:: private_exponent + + :type: int + + The private exponent. + + .. attribute:: key_size :type: int @@ -152,7 +158,7 @@ Asymmetric Interfaces :type: int - The private exponent. + The private exponent. Alias for :attr:`private_exponent`. .. attribute:: n @@ -179,7 +185,7 @@ Asymmetric Interfaces The public modulus. - .. attribute:: key_length + .. attribute:: key_size :type: int |