[issue38271] test_ssl: replace 3DES with AES encrypted private keys

2019-09-25 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38271] test_ssl: replace 3DES with AES encrypted private keys

2019-09-25 Thread miss-islington
miss-islington added the comment: 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 --

[issue38271] test_ssl: replace 3DES with AES encrypted private keys

2019-09-25 Thread miss-islington
miss-islington added the comment: 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 --

[issue38271] test_ssl: replace 3DES with AES encrypted private keys

2019-09-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +15977 pull_request: https://github.com/python/cpython/pull/16395 ___ Python tracker ___

[issue38271] test_ssl: replace 3DES with AES encrypted private keys

2019-09-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +15978 pull_request: https://github.com/python/cpython/pull/16396 ___ Python tracker ___

[issue38271] test_ssl: replace 3DES with AES encrypted private keys

2019-09-25 Thread miss-islington
miss-islington added the comment: New changeset bfd0c963d88f3df69489ee250655e2b8f3d235bd by Miss Islington (bot) (Christian Heimes) in branch 'master': bpo-38271: encrypt private key test files with AES256 (GH-16385)

[issue38271] test_ssl: replace 3DES with AES encrypted private keys

2019-09-25 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +15967 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16385 ___ Python tracker

[issue38271] test_ssl: replace 3DES with AES encrypted private keys

2019-09-25 Thread Christian Heimes
Change by Christian Heimes : -- assignee: -> christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38271] test_ssl: replace 3DES with AES encrypted private keys

2019-09-25 Thread Christian Heimes
New submission from Christian Heimes : 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