[issue40695] hashlib: OpenSSL hash detection should obey security policy

2021-05-22 Thread Christian Heimes
Christian Heimes added the comment: No, nothing left to do. Thanks for the ping! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue40695] hashlib: OpenSSL hash detection should obey security policy

2021-05-21 Thread Ned Deily
Ned Deily added the comment: Is there anything more that needs to be done for this issue? -- nosy: +ned.deily ___ Python tracker ___

[issue40695] hashlib: OpenSSL hash detection should obey security policy

2020-05-25 Thread miss-islington
miss-islington added the comment: New changeset 7015823971e7c0cf41cd7d9d9991ed0abdc2f1f4 by Miss Islington (bot) in branch '3.9': bpo-40695: Limit hashlib builtin hash fallback (GH-20259) https://github.com/python/cpython/commit/7015823971e7c0cf41cd7d9d9991ed0abdc2f1f4 --

[issue40695] hashlib: OpenSSL hash detection should obey security policy

2020-05-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +19640 pull_request: https://github.com/python/cpython/pull/20377 ___ Python tracker ___

[issue40695] hashlib: OpenSSL hash detection should obey security policy

2020-05-25 Thread miss-islington
miss-islington added the comment: New changeset 4cc2f9348c6e899b76af811fa3bb6c60de642a28 by Christian Heimes in branch 'master': bpo-40695: Limit hashlib builtin hash fallback (GH-20259) https://github.com/python/cpython/commit/4cc2f9348c6e899b76af811fa3bb6c60de642a28 -- nosy:

[issue40695] hashlib: OpenSSL hash detection should obey security policy

2020-05-20 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +19545 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20259 ___ Python tracker

[issue40695] hashlib: OpenSSL hash detection should obey security policy

2020-05-20 Thread Christian Heimes
New submission from Christian Heimes : The hashlib module prefers hash implementations from OpenSSL. In case OpenSSL is not available or OpenSSL does not provide a hash algorithm, hashlib falls back to builtin implementations for MD5, SHA1, SHA2 family, SHA3/SHAKE family, and Blake2. The