summaryrefslogtreecommitdiffstats
path: root/Doc/library/ssl.rst
diff options
context:
space:
mode:
authorOleg Iarygin <oleg@arhadthedev.net>2022-06-21 18:55:18 (GMT)
committerGitHub <noreply@github.com>2022-06-21 18:55:18 (GMT)
commitf62ff97f31a775cc7956adeae32c14e7c85bdc15 (patch)
tree3c42c4a312807cc6cab6c0c124b235bb44e743cd /Doc/library/ssl.rst
parent7327d61abec965f309d10847d0e37faef680c18c (diff)
downloadcpython-f62ff97f31a775cc7956adeae32c14e7c85bdc15.zip
cpython-f62ff97f31a775cc7956adeae32c14e7c85bdc15.tar.gz
cpython-f62ff97f31a775cc7956adeae32c14e7c85bdc15.tar.bz2
gh-93851: Fix all broken links in Doc/ (GH-93853)
Diffstat (limited to 'Doc/library/ssl.rst')
-rw-r--r--Doc/library/ssl.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index c7ca439..7e26e2e 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -1910,7 +1910,7 @@ to speed up repeated connections from the same clients.
.. method:: SSLContext.session_stats()
Get statistics about the SSL sessions created or managed by this context.
- A dictionary is returned which maps the names of each `piece of information <https://www.openssl.org/docs/man1.1.1/ssl/SSL_CTX_sess_number.html>`_ to their
+ A dictionary is returned which maps the names of each `piece of information <https://www.openssl.org/docs/man1.1.1/man3/SSL_CTX_sess_number.html>`_ to their
numeric values. For example, here is the total number of hits and misses
in the session cache since the context was created::
@@ -2704,7 +2704,7 @@ enabled when negotiating a SSL session is possible through the
:meth:`SSLContext.set_ciphers` method. Starting from Python 3.2.3, the
ssl module disables certain weak ciphers by default, but you may want
to further restrict the cipher choice. Be sure to read OpenSSL's documentation
-about the `cipher list format <https://www.openssl.org/docs/manmaster/man1/ciphers.html#CIPHER-LIST-FORMAT>`_.
+about the `cipher list format <https://www.openssl.org/docs/man1.1.1/man1/ciphers.html#CIPHER-LIST-FORMAT>`_.
If you want to check which ciphers are enabled by a given cipher list, use
:meth:`SSLContext.get_ciphers` or the ``openssl ciphers`` command on your
system.