diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-07-10 10:52:13 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-07-10 10:52:13 -0700 |
commit | ab4e90dc7d81474f38e7d9d924974eecbbd74946 (patch) | |
tree | 4b417de80f744d99a43c1341ac3497be05fa405d /docs/hazmat/primitives/asymmetric/dsa.rst | |
parent | aa986548559f5f81ffa8e7535500bd5cead0dd6b (diff) | |
parent | bdcca520d5a91f0b021e495782a1ff115a34c859 (diff) | |
download | cryptography-ab4e90dc7d81474f38e7d9d924974eecbbd74946.tar.gz cryptography-ab4e90dc7d81474f38e7d9d924974eecbbd74946.tar.bz2 cryptography-ab4e90dc7d81474f38e7d9d924974eecbbd74946.zip |
Merge pull request #1248 from reaperhulk/remove-some-docs
Numbers Doc Improvements
Diffstat (limited to 'docs/hazmat/primitives/asymmetric/dsa.rst')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/dsa.rst | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/asymmetric/dsa.rst b/docs/hazmat/primitives/asymmetric/dsa.rst index 55f36b51..e411931b 100644 --- a/docs/hazmat/primitives/asymmetric/dsa.rst +++ b/docs/hazmat/primitives/asymmetric/dsa.rst @@ -119,6 +119,16 @@ Numbers The generator. + .. method:: parameters(backend) + + :param backend: A + :class:`~cryptography.hazmat.backends.interfaces.DSABackend` + provider. + + :returns: A new instance of a + :class:`~cryptography.hazmat.primitives.interfaces.DSAParameters` + provider. + .. class:: DSAPublicNumbers(y, parameter_numbers) .. versionadded:: 0.5 @@ -138,6 +148,16 @@ Numbers The :class:`~cryptography.hazmat.primitives.dsa.DSAParameterNumbers` associated with the public key. + .. method:: public_key(backend) + + :param backend: A + :class:`~cryptography.hazmat.backends.interfaces.DSABackend` + provider. + + :returns: A new instance of a + :class:`~cryptography.hazmat.primitives.interfaces.DSAPublicKey` + provider. + .. class:: DSAPrivateNumbers(x, public_numbers) .. versionadded:: 0.5 @@ -162,6 +182,16 @@ Numbers The :class:`~cryptography.hazmat.primitives.dsa.DSAPublicNumbers` associated with the private key. + .. method:: private_key(backend) + + :param backend: A + :class:`~cryptography.hazmat.backends.interfaces.DSABackend` + provider. + + :returns: A new instance of a + :class:`~cryptography.hazmat.primitives.interfaces.DSAPrivateKey` + provider. + Deprecated Concrete Classes ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |