This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add warnings to ssl.PROTOCOL_TLSv1 and ssl.PROTOCOL_TLSv1_1 docs
Type: enhancement Stage: patch review
Components: Documentation Versions: Python 3.10
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, illia-v
Priority: normal Keywords: patch

Created on 2021-03-27 15:40 by illia-v, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 25040 open illia-v, 2021-03-27 15:44
Messages (1)
msg389606 - (view) Author: Illia Volochii (illia-v) * Date: 2021-03-27 15:40
TLS versions 1.0 and 1.1 have recently been deprecated. [1]

ssl.PROTOCOL_SSLv2 and ssl.PROTOCOL_SSLv3 have such warnings "SSL version 2 is insecure. Its use is highly discouraged." [2]

We have to add such warnings to ssl.PROTOCOL_TLSv1 and ssl.PROTOCOL_TLSv1_1 too.

[1] https://datatracker.ietf.org/doc/rfc8996/
[2] https://docs.python.org/3.10/library/ssl.html#ssl.PROTOCOL_SSLv2
History
Date User Action Args
2022-04-11 14:59:43adminsetgithub: 87806
2021-03-27 15:44:10illia-vsetkeywords: + patch
stage: patch review
pull_requests: + pull_request23788
2021-03-27 15:40:09illia-vcreate