[issue28124] Rework SSL module documentation

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- assignee: docs@python -> components: +Documentation, SSL -Build nosy: +cheryl.sabella, christian.heimes, docs@python, miss-islington -ahmedsayeed1982 versions: +Python 3.8 -Python 3.7 ___ Python tracker

[issue28124] Rework SSL module documentation

2021-11-04 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- Removed message: https://bugs.python.org/msg405713 ___ Python tracker ___ ___ Python-bugs-list mail

[issue28124] Rework SSL module documentation

2021-11-04 Thread Ahmed Sayeed
Ahmed Sayeed added the comment: * ssl.create_default_context() is the best way to create a SSLContext. Mention that purpose flags and that Purpose.SERVER_AUTH is the correct setting on the client side. It means: "Create a context to authenticate the certs of a TLS server." (correct also for

[issue28124] Rework SSL module documentation

2019-03-11 Thread Cheryl Sabella
Cheryl Sabella added the comment: Can this issue be closed as resolved? It looks like the changes have been merged even though the first PR still has an 'open' status. Thanks! -- nosy: +cheryl.sabella ___ Python tracker

[issue28124] Rework SSL module documentation

2018-03-02 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +5731 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue28124] Rework SSL module documentation

2018-02-27 Thread miss-islington
miss-islington added the comment: New changeset 102d5204add249248d1a0fa1dd3f673e884b06b4 by Miss Islington (bot) in branch '3.7': bpo-28124: deprecate ssl.wrap_socket() (GH-5888) https://github.com/python/cpython/commit/102d5204add249248d1a0fa1dd3f673e884b06b4 -- nosy: +miss-islingto

[issue28124] Rework SSL module documentation

2018-02-27 Thread miss-islington
Change by miss-islington : -- pull_requests: +5695 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue28124] Rework SSL module documentation

2018-02-27 Thread Christian Heimes
Christian Heimes added the comment: New changeset 90f05a527c7d439f1d0cba80f2eb32e60ee20fc3 by Christian Heimes in branch 'master': bpo-28124: deprecate ssl.wrap_socket() (#5888) https://github.com/python/cpython/commit/90f05a527c7d439f1d0cba80f2eb32e60ee20fc3 --

[issue28124] Rework SSL module documentation

2018-02-25 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +5660 stage: needs patch -> patch review ___ Python tracker ___ ___ P

[issue28124] Rework SSL module documentation

2018-02-24 Thread Christian Heimes
Change by Christian Heimes : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue28124] Rework SSL module documentation

2016-09-15 Thread Christian Heimes
Changes by Christian Heimes : -- components: +SSL ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue28124] Rework SSL module documentation

2016-09-13 Thread Christian Heimes
New submission from Christian Heimes: The documentation of the SSL module needs a rework. It's confusing and hard to understand even for experienced developers. The documentation should start with basic use cases and easy-to-reuse best practices. * The module starts with move ssl.wrap_socket()