diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-03 09:03:19 -0800 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-03 09:03:19 -0800 |
commit | fa9431d29f90b034aea72f4cc8d1f6ce94159603 (patch) | |
tree | d2bb160a2e58e7f2ad5b33a641b7c05497b9345d /docs | |
parent | c0ad928241063478534ded0f9a1b45ee64769f90 (diff) | |
parent | 5b2f13db968efb6c772971cc1668c5d1b0e9d2f8 (diff) | |
download | cryptography-fa9431d29f90b034aea72f4cc8d1f6ce94159603.tar.gz cryptography-fa9431d29f90b034aea72f4cc8d1f6ce94159603.tar.bz2 cryptography-fa9431d29f90b034aea72f4cc8d1f6ce94159603.zip |
Merge pull request #550 from alex/private-exponent
Refer to the `d` param of RSA as `private_exponent`.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index 7fef1c13..cbca5ed6 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -130,6 +130,12 @@ Asymmetric Interfaces The public exponent. + .. 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 |