diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-24 08:31:42 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-24 08:31:42 -0600 |
commit | 368b1c9a6946feed7677d6ab939e064f91a538e9 (patch) | |
tree | 51b6e11bdaf94bb429bb141b288007a4726cc4b0 /docs/hazmat | |
parent | e2a22f8c123600126a0200ee4b86e14cb426f9a1 (diff) | |
parent | 1e0de6857b85cd43865ed4dd4ca155cf66c7129b (diff) | |
download | cryptography-368b1c9a6946feed7677d6ab939e064f91a538e9.tar.gz cryptography-368b1c9a6946feed7677d6ab939e064f91a538e9.tar.bz2 cryptography-368b1c9a6946feed7677d6ab939e064f91a538e9.zip |
Merge pull request #1132 from public/opaque-dsa-interfaces
Remove numbers from DSA interfaces
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/interfaces.rst | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst index 0c456326..755cef41 100644 --- a/docs/hazmat/primitives/interfaces.rst +++ b/docs/hazmat/primitives/interfaces.rst @@ -282,50 +282,6 @@ DSA `DSA`_ parameters. - .. attribute:: modulus - - :type: int - - The prime modulus that is 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 is used in generating the DSA key pair - by the generator and used in the DSA signing and verification - processes. - - .. attribute:: generator - - :type: int - - 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 is 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 is used in generating the DSA key pair - by the generator and used in the DSA signing and verification - processes. Alias for :attr:`subgroup_order`. - - .. attribute:: g - - :type: int - - The generator that is used in generating the DSA key pair and used - in the DSA signing and verification processes. Alias for :attr:`generator`. - .. class:: DSAParametersWithNumbers @@ -385,18 +341,6 @@ DSA The bit length of the modulus. - .. attribute:: x - - :type: int - - The private key. - - .. attribute:: y - - :type: int - - The public key. - .. class:: DSAPrivateKeyWithNumbers @@ -427,12 +371,6 @@ DSA The bit length of the modulus. - .. attribute:: y - - :type: int - - The public key. - .. method:: parameters() :return: :class:`~cryptography.hazmat.primitives.interfaces.DSAParameters` |