diff options
author | Christian Heimes <christian@python.org> | 2018-08-30 07:25:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-30 07:25:49 +0200 |
commit | e6dac0077996b1e1f886f036d6f2606237fa4c85 (patch) | |
tree | 46a22b8c07d1bbff18de4543ff0c5dbfcf7485c3 /Lib/test/test_asyncio/utils.py | |
parent | 0382406fccbb31aa993de118b60e7fd4ec264968 (diff) | |
download | cpython-git-e6dac0077996b1e1f886f036d6f2606237fa4c85.tar.gz |
bpo-34542: Update test certs and keys (GH-8997)
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>
Diffstat (limited to 'Lib/test/test_asyncio/utils.py')
-rw-r--r-- | Lib/test/test_asyncio/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_asyncio/utils.py b/Lib/test/test_asyncio/utils.py index 5362591b5d..e7438d40a4 100644 --- a/Lib/test/test_asyncio/utils.py +++ b/Lib/test/test_asyncio/utils.py @@ -57,9 +57,9 @@ PEERCERT = { 'issuer': ((('countryName', 'XY'),), (('organizationName', 'Python Software Foundation CA'),), (('commonName', 'our-ca-server'),)), - 'notAfter': 'Nov 28 19:09:06 2027 GMT', - 'notBefore': 'Jan 19 19:09:06 2018 GMT', - 'serialNumber': '82EDBF41C880919C', + 'notAfter': 'Jul 7 14:23:16 2028 GMT', + 'notBefore': 'Aug 29 14:23:16 2018 GMT', + 'serialNumber': 'CB2D80995A69525C', 'subject': ((('countryName', 'XY'),), (('localityName', 'Castle Anthrax'),), (('organizationName', 'Python Software Foundation'),), |