diff options
author | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-04 03:34:39 +0200 |
---|---|---|
committer | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-04 03:34:39 +0200 |
commit | 7032451fb442f3e4c5dd590c54aa7532b1197f5c (patch) | |
tree | f92c1cccdba37c4a5da159a0ad0178971b625b47 /docs | |
parent | b416715b8ee96c445587d444a4684bc7817e4638 (diff) | |
download | cryptography-7032451fb442f3e4c5dd590c54aa7532b1197f5c.tar.gz cryptography-7032451fb442f3e4c5dd590c54aa7532b1197f5c.tar.bz2 cryptography-7032451fb442f3e4c5dd590c54aa7532b1197f5c.zip |
Annotate aliases in the DSA documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index b119bc5b..bbaeb5e7 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -264,7 +264,7 @@ Asymmetric Interfaces :type: int The prime modulus that's used in generating the DSA keypair and used - in the DSA signing and verification processes. Alias for modulus. + in the DSA signing and verification processes. Alias for :attr:`modulus`. .. attribute:: q @@ -272,14 +272,14 @@ Asymmetric Interfaces The subgroup order that's used in generating the DSA keypair by the generator and used in the DSA signing and verification - processes. Alias for subgroup_order. + processes. Alias for :attr:`subgroup_order`. .. attribute:: g :type: int The generator that is used in generating the DSA keypair and used - in the DSA signing and verification processes. Alias for generator. + in the DSA signing and verification processes. Alias for :attr:`generator`. .. class:: DSAPrivateKey |