]> granicus.if.org Git - python/commitdiff
bpo-21649: Add RFC 7525 and Mozilla server side TLS (#3387)
authorChristian Heimes <christian@python.org>
Wed, 6 Sep 2017 23:19:56 +0000 (16:19 -0700)
committerGitHub <noreply@github.com>
Wed, 6 Sep 2017 23:19:56 +0000 (16:19 -0700)
Signed-off-by: Christian Heimes <christian@python.org>
Doc/library/ssl.rst
Misc/NEWS.d/next/Documentation/2017-09-06-10-11-57.bpo-21649.EUvqA9.rst [new file with mode: 0644]

index 0a09e7e9d4c4437faa545e5acff3e4d39c27ee0d..69bea1ed4a0aee0a2e991e75f128eb1806ef6d77 100644 (file)
@@ -2328,3 +2328,9 @@ successful call of :func:`~ssl.RAND_add`, :func:`~ssl.RAND_bytes` or
 
    `IANA TLS: Transport Layer Security (TLS) Parameters <https://www.iana.org/assignments/tls-parameters/tls-parameters.xml>`_
        IANA
+
+   `RFC 7525: Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) <https://tools.ietf.org/html/rfc7525>`_
+       IETF
+
+   `Mozilla's Server Side TLS recommendations <https://wiki.mozilla.org/Security/Server_Side_TLS>`_
+       Mozilla
diff --git a/Misc/NEWS.d/next/Documentation/2017-09-06-10-11-57.bpo-21649.EUvqA9.rst b/Misc/NEWS.d/next/Documentation/2017-09-06-10-11-57.bpo-21649.EUvqA9.rst
new file mode 100644 (file)
index 0000000..a09985a
--- /dev/null
@@ -0,0 +1 @@
+Add RFC 7525 and Mozilla server side TLS links to SSL documentation.