aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/asymmetric
diff options
context:
space:
mode:
authorMohammed Attia <skeuomorf@gmail.com>2014-03-30 02:17:24 +0200
committerMohammed Attia <skeuomorf@gmail.com>2014-03-30 03:52:48 +0200
commit24171ccb2ca5fad010fd1839fc7cde62e847b980 (patch)
tree7dc4928ee356e4ee2a15a4ba6665c640e36472a6 /docs/hazmat/primitives/asymmetric
parentea5d7369749ef11d80edddf70feaba22d8fe10d2 (diff)
downloadcryptography-24171ccb2ca5fad010fd1839fc7cde62e847b980.tar.gz
cryptography-24171ccb2ca5fad010fd1839fc7cde62e847b980.tar.bz2
cryptography-24171ccb2ca5fad010fd1839fc7cde62e847b980.zip
Add DSA parameters api, docs and tests
Diffstat (limited to 'docs/hazmat/primitives/asymmetric')
-rw-r--r--docs/hazmat/primitives/asymmetric/dsa.rst29
-rw-r--r--docs/hazmat/primitives/asymmetric/index.rst1
2 files changed, 30 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/asymmetric/dsa.rst b/docs/hazmat/primitives/asymmetric/dsa.rst
new file mode 100644
index 00000000..c9fd2f55
--- /dev/null
+++ b/docs/hazmat/primitives/asymmetric/dsa.rst
@@ -0,0 +1,29 @@
+.. hazmat::
+
+DSA
+===
+
+.. currentmodule:: cryptography.hazmat.primitives.asymmetric.dsa
+
+`DSA`_ is a `public-key`_ algorithm for signing messages.
+
+.. class:: DSAParameters(modulus, subgroup_order, generator)
+
+ .. versionadded:: 0.4
+
+ DSA Parameters are required for generating a DSA private key.
+
+ This class conforms to the
+ :class:`~cryptography.hazmat.primitives.interfaces.DSAParameters`
+ interface.
+
+ :raises TypeError: This is raised when the arguments are not all integers.
+
+ :raises ValueError: This is raised when the values of ``modulus``,
+ ``subgroup_order``, or ``generator`` do
+ not match the bounds specified in `FIPS 186-4`_.
+
+
+.. _`DSA`: https://en.wikipedia.org/wiki/Digital_Signature_Algorithm
+.. _`public-key`: https://en.wikipedia.org/wiki/Public-key_cryptography
+.. _`FIPS 186-4`: http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf
diff --git a/docs/hazmat/primitives/asymmetric/index.rst b/docs/hazmat/primitives/asymmetric/index.rst
index 7ec1c5f2..ca048d11 100644
--- a/docs/hazmat/primitives/asymmetric/index.rst
+++ b/docs/hazmat/primitives/asymmetric/index.rst
@@ -6,5 +6,6 @@ Asymmetric algorithms
.. toctree::
:maxdepth: 1
+ dsa
rsa
padding