summaryrefslogtreecommitdiffstats
path: root/Lib/test/keycert.pem
Commit message (Collapse)AuthorAgeFilesLines
* [2.7] bpo-34542: Update test certs and keys (GH-8997) (GH-9397)Christian Heimes2018-09-201-42/+60
| | | | | | | | | | | | | 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>. (cherry picked from commit e6dac0077996b1e1f886f036d6f2606237fa4c85) https://bugs.python.org/issue34542
* [2.7] bpo-34399: 2048 bits RSA keys and DH params (GH-8762) (GH-8765)Christian Heimes2018-08-141-27/+44
| | | | | | | | | | | | | Downstream vendors have started to deprecate weak keys. Update all RSA keys and DH params to use at least 2048 bits. Finite field DH param file use RFC 7919 values, generated with certtool --get-dh-params --sec-param=high Signed-off-by: Christian Heimes <christian@python.org>. (cherry picked from commit 88bfd0bce05043f658e50addd21366f317995e35) Co-authored-by: Christian Heimes <christian@python.org>
* Fix test_ssl by replacing expired X509 certificateAntoine Pitrou2013-02-161-30/+29
|
* > Regardless, building a fixed test certificate and checking it in sounds likeGuido van Rossum2007-08-271-0/+32
> the better option. Then the openssl command in the test code can be turned > into a comment describing how the test data was pregenerated. Here's a patch that does that. Bill