]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
[3.13] gh-141907: Better handle support for SHA3 for test_hashlib (GH-141908) (#141919)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 25 Nov 2025 01:32:55 +0000 (02:32 +0100)
committerGitHub <noreply@github.com>
Tue, 25 Nov 2025 01:32:55 +0000 (01:32 +0000)
commitc0c13f206c22834bd64d21bc1e8e77238eebea68
treeb353c11ae6f6085894dd3dd194f08784eaa27498
parent9127013b56488606735cbf41c4e6cf2a7bcf11d2
[3.13] gh-141907: Better handle support for SHA3 for test_hashlib (GH-141908) (#141919)

gh-141907: Better handle support for SHA3 for test_hashlib (GH-141908)

* test_hashlib: better handle support for SHA3

It's possible that the SSL library supports only SHA3 algo and doesn't
have SHAKE one.

The current test wrongly detect this and set both HASH and HASHXOF to
None expecting to have the extra SHA3 attributes present but this should
only be true for SHAKE algo.

To better handle this, move the HASH condition to a dedicated try-expect
condition and check if HASHXOF is None in the relevant code effectively
checking if SHA3 is supported by the SSL library but SHAKE algo needs to
use the sha3module one.

---------
(cherry picked from commit fee778265064c290ae1852916ff47fcc0ab4a29d)

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Co-authored-by: Christian Marangi <ansuelsmth@gmail.com>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Lib/test/test_hashlib.py