diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-26 15:09:11 -0800 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-01-26 15:09:11 -0800 |
commit | 6b4f32311e038a60ed496e2f44558b8803f9e033 (patch) | |
tree | 013c9aad86bbf74f18194540f04d33c3b4734762 /docs | |
parent | 77d63d39b58fa97943fda0e391a3e43b5f84f9ea (diff) | |
parent | 2a9187492c105636b92a58e9b470a8f5db6e4e81 (diff) | |
download | cryptography-6b4f32311e038a60ed496e2f44558b8803f9e033.tar.gz cryptography-6b4f32311e038a60ed496e2f44558b8803f9e033.tar.bz2 cryptography-6b4f32311e038a60ed496e2f44558b8803f9e033.zip |
Merge pull request #510 from alex/linkify
Linkify the RSA docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index 4739680a..bf78e367 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -140,13 +140,13 @@ Asymmetric Interfaces :type: int - ``p``, one of the two primes composing ``n``. + ``p``, one of the two primes composing the :attr:`modulus`. .. attribute:: q :type: int - ``q``, one of the two primes composing ``n``. + ``q``, one of the two primes composing the :attr:`modulus`. .. attribute:: d @@ -158,13 +158,13 @@ Asymmetric Interfaces :type: int - The public modulus. Alias for ``modulus``. + The public modulus. Alias for :attr:`modulus`. .. attribute:: e :type: int - The public exponent. Alias for ``public_exponent``. + The public exponent. Alias for :attr:`public_exponent`. .. class:: RSAPublicKey @@ -195,12 +195,13 @@ Asymmetric Interfaces :type: int - The public modulus. Alias for ``modulus``. + The public modulus. Alias for :attr:`modulus`. .. attribute:: e :type: int - The public exponent. Alias for ``public_exponent``. + The public exponent. Alias for :attr:`public_exponent`. + .. _`RSA`: http://en.wikipedia.org/wiki/RSA_(cryptosystem) |