aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-08-12 07:50:08 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-08-12 07:50:08 -0500
commit7865d9d3e0da44c5ab181f89d5fef275df61be6f (patch)
tree11ced95e5fde447473e10e800e8a6af901aaa65c
parent5ec74d1411e74dfb0aaaa04d52fba3672e4f189a (diff)
parent0e708a8a4fc6871cb690bcfbb74c25fb4e016cda (diff)
downloadcryptography-7865d9d3e0da44c5ab181f89d5fef275df61be6f.tar.gz
cryptography-7865d9d3e0da44c5ab181f89d5fef275df61be6f.tar.bz2
cryptography-7865d9d3e0da44c5ab181f89d5fef275df61be6f.zip
Merge pull request #2269 from alex/dss-docs
Update the docs for the correct RFC in more places
-rw-r--r--docs/hazmat/primitives/asymmetric/dsa.rst4
-rw-r--r--docs/hazmat/primitives/asymmetric/ec.rst4
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/hazmat/primitives/asymmetric/dsa.rst b/docs/hazmat/primitives/asymmetric/dsa.rst
index 92342b81..4eb17e30 100644
--- a/docs/hazmat/primitives/asymmetric/dsa.rst
+++ b/docs/hazmat/primitives/asymmetric/dsa.rst
@@ -264,7 +264,7 @@ Key interfaces
Sign data which can be verified later by others using the public key.
The signature is formatted as DER-encoded bytes, as specified in
- :rfc:`6979`.
+ :rfc:`3279`.
:param algorithm: An instance of a
:class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm`
@@ -354,7 +354,7 @@ Key interfaces
key.
:param bytes signature: The signature to verify. DER encoded as
- specified in :rfc:`6979`.
+ specified in :rfc:`3279`.
:param algorithm: An instance of a
:class:`~cryptography.hazmat.primitives.hashes.HashAlgorithm`
diff --git a/docs/hazmat/primitives/asymmetric/ec.rst b/docs/hazmat/primitives/asymmetric/ec.rst
index c0026c69..323f4c3f 100644
--- a/docs/hazmat/primitives/asymmetric/ec.rst
+++ b/docs/hazmat/primitives/asymmetric/ec.rst
@@ -306,7 +306,7 @@ Key Interfaces
Sign data which can be verified later by others using the public key.
The signature is formatted as DER-encoded bytes, as specified in
- :rfc:`6979`.
+ :rfc:`3279`.
:param signature_algorithm: An instance of a
:class:`EllipticCurveSignatureAlgorithm` provider.
@@ -372,7 +372,7 @@ Key Interfaces
key.
:param bytes signature: The signature to verify. DER encoded as
- specified in :rfc:`6979`.
+ specified in :rfc:`3279`.
:param signature_algorithm: An instance of a
:class:`EllipticCurveSignatureAlgorithm` provider.