diff options
author | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-04 04:16:35 +0200 |
---|---|---|
committer | Mohammed Attia <skeuomorf@gmail.com> | 2014-03-04 04:16:35 +0200 |
commit | cb9a6c24ea2165b25e4129a440871ce7bcab3de4 (patch) | |
tree | fa6f885b44bff01581180e4f6d12e17b2d8993c1 | |
parent | 604c78f75ca1c0a5b6a340dd5067182487f1b65d (diff) | |
download | cryptography-cb9a6c24ea2165b25e4129a440871ce7bcab3de4.tar.gz cryptography-cb9a6c24ea2165b25e4129a440871ce7bcab3de4.tar.bz2 cryptography-cb9a6c24ea2165b25e4129a440871ce7bcab3de4.zip |
Change keypair to key pair to pass the sphinx spelling test
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index 2ea4b583..c1a2d23a 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -241,14 +241,14 @@ Asymmetric Interfaces :type: int - The prime modulus that's used in generating the DSA keypair and used + The prime modulus that's used in generating the DSA key pair and used in the DSA signing and verification processes. .. attribute:: subgroup_order :type: int - The subgroup order that's used in generating the DSA keypair + The subgroup order that's used in generating the DSA key pair by the generator and used in the DSA signing and verification processes. @@ -256,21 +256,21 @@ Asymmetric Interfaces :type: int - The generator that is used in generating the DSA keypair and used + The generator that is used in generating the DSA key pair and used in the DSA signing and verification processes." .. attribute:: p :type: int - The prime modulus that's used in generating the DSA keypair and used + The prime modulus that's used in generating the DSA key pair and used in the DSA signing and verification processes. Alias for :attr:`modulus`. .. attribute:: q :type: int - The subgroup order that's used in generating the DSA keypair + The subgroup order that's used in generating the DSA key pair by the generator and used in the DSA signing and verification processes. Alias for :attr:`subgroup_order`. @@ -278,7 +278,7 @@ Asymmetric Interfaces :type: int - The generator that is used in generating the DSA keypair and used + The generator that is used in generating the DSA key pair and used in the DSA signing and verification processes. Alias for :attr:`generator`. |