[issue40637] Allow users to disable builtin hash modules on compile time

2020-11-17 Thread miss-islington
miss-islington added the comment: New changeset 656d50f98d9aec5e5283f77adc38e91813273662 by Miss Islington (bot) in branch '3.9': bpo-40637: Don't test builtin PBKDF2 without builtin hashes (GH-20980) https://github.com/python/cpython/commit/656d50f98d9aec5e5283f77adc38e91813273662

[issue40637] Allow users to disable builtin hash modules on compile time

2020-11-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +22234 pull_request: https://github.com/python/cpython/pull/23343 ___ Python tracker ___ __

[issue40637] Allow users to disable builtin hash modules on compile time

2020-11-17 Thread Christian Heimes
Christian Heimes added the comment: New changeset 975022b77b0024ea1548f19d5f91aba5ba1eed59 by Christian Heimes in branch 'master': bpo-40637: Don't test builtin PBKDF2 without builtin hashes (GH-20980) https://github.com/python/cpython/commit/975022b77b0024ea1548f19d5f91aba5ba1eed59 ---

[issue40637] Allow users to disable builtin hash modules on compile time

2020-06-19 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +20156 pull_request: https://github.com/python/cpython/pull/20980 ___ Python tracker ___

[issue40637] Allow users to disable builtin hash modules on compile time

2020-06-17 Thread miss-islington
miss-islington added the comment: New changeset 9a58f03dc21d15c076d051d902ce1d0324db9741 by stratakis in branch '3.9': [3.9] bpo-40637: Do not emit warnings for disabled builtin hashes (GH… (GH-20951) https://github.com/python/cpython/commit/9a58f03dc21d15c076d051d902ce1d0324db9741

[issue40637] Allow users to disable builtin hash modules on compile time

2020-06-17 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- pull_requests: +20131 pull_request: https://github.com/python/cpython/pull/20951 ___ Python tracker ___ ___

[issue40637] Allow users to disable builtin hash modules on compile time

2020-06-17 Thread miss-islington
miss-islington added the comment: New changeset 236a0f5cf022b59dbb6ea17a8e7a677c573d39b9 by stratakis in branch 'master': bpo-40637: Do not emit warnings for disabled builtin hashes (GH-20937) https://github.com/python/cpython/commit/236a0f5cf022b59dbb6ea17a8e7a677c573d39b9 --

[issue40637] Allow users to disable builtin hash modules on compile time

2020-06-17 Thread Charalampos Stratakis
Change by Charalampos Stratakis : -- nosy: +cstratak nosy_count: 2.0 -> 3.0 pull_requests: +20116 pull_request: https://github.com/python/cpython/pull/20937 ___ Python tracker

[issue40637] Allow users to disable builtin hash modules on compile time

2020-05-26 Thread miss-islington
miss-islington added the comment: New changeset 66391b0c6e792236b9f487283ae161bdaf0e7ad7 by Miss Islington (bot) in branch '3.9': bpo-40637: Fix test_pbkdf2_hmac_py for missing sha1 (GH-20422) https://github.com/python/cpython/commit/66391b0c6e792236b9f487283ae161bdaf0e7ad7 --

[issue40637] Allow users to disable builtin hash modules on compile time

2020-05-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +19681 pull_request: https://github.com/python/cpython/pull/20423 ___ Python tracker ___ __

[issue40637] Allow users to disable builtin hash modules on compile time

2020-05-26 Thread Christian Heimes
Christian Heimes added the comment: New changeset be63019ed726b2da045bf232782062830bb6c27d by Christian Heimes in branch 'master': bpo-40637: Fix test_pbkdf2_hmac_py for missing sha1 (#20422) https://github.com/python/cpython/commit/be63019ed726b2da045bf232782062830bb6c27d -- _

[issue40637] Allow users to disable builtin hash modules on compile time

2020-05-26 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +19680 pull_request: https://github.com/python/cpython/pull/20422 ___ Python tracker ___

[issue40637] Allow users to disable builtin hash modules on compile time

2020-05-15 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue40637] Allow users to disable builtin hash modules on compile time

2020-05-15 Thread miss-islington
miss-islington added the comment: New changeset 9b60e55db2897acc30d6b9ef1dbc49674eed40c7 by Christian Heimes in branch 'master': bpo-40637: Add option to disable builtin hashes (GH-20121) https://github.com/python/cpython/commit/9b60e55db2897acc30d6b9ef1dbc49674eed40c7 -- nosy: +mis

[issue40637] Allow users to disable builtin hash modules on compile time

2020-05-15 Thread Christian Heimes
Change by Christian Heimes : -- keywords: +patch pull_requests: +19425 pull_request: https://github.com/python/cpython/pull/20121 ___ Python tracker ___ ___

[issue40637] Allow users to disable builtin hash modules on compile time

2020-05-15 Thread Christian Heimes
New submission from Christian Heimes : Python has a couple of builtin hash module: md5, sha1, sha256/224, sha512/383, sha3/shake family, and blake2b/s. Most of them are used as fallbacks in case OpenSSL bindings are not available. In some scenarios it is useful or required to disable the cust