aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/hazmat/primitives/interfaces.rst13
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)