summaryrefslogtreecommitdiffstats
path: root/Lib/test/make_ssl_certs.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23277: Remove unused sys and os importsBerker Peksag2016-04-241-1/+0
| | | | Patch by Jon Dufresne.
* Issue #22074: Fix Lib/test/make_ssl_certs.pyAntoine Pitrou2014-07-261-1/+1
|
* Issue #8813: Add SSLContext.verify_flags to change the verification flagsChristian Heimes2013-11-211-0/+6
| | | | | of the context in order to enable certification revocation list (CRL) checks or strict X509 rules.
* Issue #8109: The ssl module now has support for server-side SNI, thanks to a ↵Antoine Pitrou2013-01-051-3/+109
| | | | | | :meth:`SSLContext.set_servername_callback` method. Patch by Daniel Black.
* Issue #9003: http.client.HTTPSConnection, urllib.request.HTTPSHandler andAntoine Pitrou2010-10-131-0/+5
| | | | | urllib.request.urlopen now take optional arguments to allow for server certificate checking, as recommended in public uses of HTTPS.
* Issue #1051: Add a script (Lib/test/make_ssl_certs.py) to generate theAntoine Pitrou2010-10-081-0/+59
custom certificate and private key files used by SSL-related certs.