aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-06-14 10:03:19 +0100
committerAlex Stapleton <alexs@prol.etari.at>2014-06-14 10:03:19 +0100
commit1e0de6857b85cd43865ed4dd4ca155cf66c7129b (patch)
tree0918c2037c5df7965053f67a793007b4fecb6c79 /docs/hazmat
parentc6d202ed4becfcad6c1aacc3e274e00f83352a40 (diff)
downloadcryptography-1e0de6857b85cd43865ed4dd4ca155cf66c7129b.tar.gz
cryptography-1e0de6857b85cd43865ed4dd4ca155cf66c7129b.tar.bz2
cryptography-1e0de6857b85cd43865ed4dd4ca155cf66c7129b.zip
Remove numbers from DSA interfaces
Diffstat (limited to 'docs/hazmat')
-rw-r--r--docs/hazmat/primitives/interfaces.rst62
1 files changed, 0 insertions, 62 deletions
diff --git a/docs/hazmat/primitives/interfaces.rst b/docs/hazmat/primitives/interfaces.rst
index 8e6c2548..1e0ada18 100644
--- a/docs/hazmat/primitives/interfaces.rst
+++ b/docs/hazmat/primitives/interfaces.rst
@@ -258,50 +258,6 @@ Asymmetric interfaces
`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:: DSAPrivateKey
@@ -344,18 +300,6 @@ Asymmetric interfaces
The bit length of the modulus.
- .. attribute:: x
-
- :type: int
-
- The private key.
-
- .. attribute:: y
-
- :type: int
-
- The public key.
-
.. class:: DSAPublicKey
@@ -369,12 +313,6 @@ Asymmetric interfaces
The bit length of the modulus.
- .. attribute:: y
-
- :type: int
-
- The public key.
-
.. method:: parameters()
:return: :class:`~cryptography.hazmat.primitives.interfaces.DSAParameters`