summaryrefslogtreecommitdiffstats
path: root/Lib/test/keycert3.pem
Commit message (Collapse)AuthorAgeFilesLines
* bpo-34542: Update test certs and keys (GH-8997)Christian Heimes2018-08-301-93/+125
| | | | | | | | Update all test certs and keys to use future proof crypto settings: * 3072 bit RSA keys * SHA-256 signature Signed-off-by: Christian Heimes <christian@python.org>
* bpo-32602: Test ECDSA certs (#5247)Christian Heimes2018-01-201-58/+117
| | | | | | | | Add test certs and test for ECDSA cert and EC/RSA dual mode. I'm also adding certs for IDNA 2003/2008 tests and simplify some test data handling. Signed-off-by: Christian Heimes <christian@python.org>
* Issue #8109: The ssl module now has support for server-side SNI, thanks to a ↵Antoine Pitrou2013-01-051-0/+73
:meth:`SSLContext.set_servername_callback` method. Patch by Daniel Black.