aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/asymmetric/dsa.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-08-12 07:29:11 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-08-12 07:29:11 -0400
commit5ec74d1411e74dfb0aaaa04d52fba3672e4f189a (patch)
tree7f416dc9660826b61f63857945848aed1e0b0f42 /docs/hazmat/primitives/asymmetric/dsa.rst
parent29629832963a512b02944a04de5840d516478396 (diff)
parent31c5c3376dee8342ccfdb3fadb481d3c4156382c (diff)
downloadcryptography-5ec74d1411e74dfb0aaaa04d52fba3672e4f189a.tar.gz
cryptography-5ec74d1411e74dfb0aaaa04d52fba3672e4f189a.tar.bz2
cryptography-5ec74d1411e74dfb0aaaa04d52fba3672e4f189a.zip
Merge pull request #2250 from reaperhulk/fix-2246
resolve incorrect docs/naming around DSA (r, s) tuple encode/decode
Diffstat (limited to 'docs/hazmat/primitives/asymmetric/dsa.rst')
-rw-r--r--docs/hazmat/primitives/asymmetric/dsa.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/asymmetric/dsa.rst b/docs/hazmat/primitives/asymmetric/dsa.rst
index 2ceb7d7d..92342b81 100644
--- a/docs/hazmat/primitives/asymmetric/dsa.rst
+++ b/docs/hazmat/primitives/asymmetric/dsa.rst
@@ -80,8 +80,8 @@ provider.
>>> signature = signer.finalize()
The ``signature`` is a ``bytes`` object, whose contents is DER encoded as
-described in :rfc:`6979`. This can be decoded using
-:func:`~cryptography.hazmat.primitives.asymmetric.utils.decode_rfc6979_signature`.
+described in :rfc:`3279`. This can be decoded using
+:func:`~cryptography.hazmat.primitives.asymmetric.utils.decode_dss_signature`.
Verification
~~~~~~~~~~~~