This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_ssl: replace 3DES with AES encrypted private keys
Type: resource usage Stage: resolved
Components: Tests Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: christian.heimes Nosy List: christian.heimes, miss-islington
Priority: normal Keywords: patch

Created on 2019-09-25 11:10 by christian.heimes, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16385 merged christian.heimes, 2019-09-25 11:12
PR 16395 merged miss-islington, 2019-09-25 15:55
PR 16396 merged miss-islington, 2019-09-25 15:55
Messages (4)
msg353173 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2019-09-25 11:10
test_ssl uses two encrypted private key files to verify the password hook. The private key files are currently encrypted with 3DES (DES-EDE3-CBC). The algorithm is very old and blocked by some crypto policies. Let's use AES256 instead. AES is mandatory in all supported OpenSSL versions.
msg353217 - (view) Author: miss-islington (miss-islington) Date: 2019-09-25 15:55
New changeset bfd0c963d88f3df69489ee250655e2b8f3d235bd by Miss Islington (bot) (Christian Heimes) in branch 'master':
bpo-38271: encrypt private key test files with AES256 (GH-16385)
https://github.com/python/cpython/commit/bfd0c963d88f3df69489ee250655e2b8f3d235bd
msg353219 - (view) Author: miss-islington (miss-islington) Date: 2019-09-25 16:13
New changeset 585798fb0eac38f32b54f1b8a86e418d76147d99 by Miss Islington (bot) in branch '3.7':
bpo-38271: encrypt private key test files with AES256 (GH-16385)
https://github.com/python/cpython/commit/585798fb0eac38f32b54f1b8a86e418d76147d99
msg353220 - (view) Author: miss-islington (miss-islington) Date: 2019-09-25 16:13
New changeset 4267e8f72a7d8fe0433819511a5ae45d45e1c67b by Miss Islington (bot) in branch '3.8':
bpo-38271: encrypt private key test files with AES256 (GH-16385)
https://github.com/python/cpython/commit/4267e8f72a7d8fe0433819511a5ae45d45e1c67b
History
Date User Action Args
2022-04-11 14:59:20adminsetgithub: 82452
2019-09-25 21:44:52christian.heimessetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-09-25 16:13:58miss-islingtonsetmessages: + msg353220
2019-09-25 16:13:08miss-islingtonsetmessages: + msg353219
2019-09-25 15:55:24miss-islingtonsetpull_requests: + pull_request15978
2019-09-25 15:55:16miss-islingtonsetpull_requests: + pull_request15977
2019-09-25 15:55:06miss-islingtonsetnosy: + miss-islington
messages: + msg353217
2019-09-25 11:12:42christian.heimessetkeywords: + patch
stage: patch review
pull_requests: + pull_request15967
2019-09-25 11:10:26christian.heimessetassignee: christian.heimes
2019-09-25 11:10:15christian.heimescreate