summaryrefslogtreecommitdiffstats
path: root/Lib/test/revocation.crl
Commit message (Collapse)AuthorAgeFilesLines
* bpo-34542: Update test certs and keys (GH-8997)Christian Heimes2018-08-301-8/+11
| | | | | | | | 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-7/+7
| | | | | | | | 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 #8813: Add SSLContext.verify_flags to change the verification flagsChristian Heimes2013-11-211-0/+11
of the context in order to enable certification revocation list (CRL) checks or strict X509 rules.