]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-141907: Better handle support for SHA3 for test_hashlib (GH-141908)
authorChristian Marangi <ansuelsmth@gmail.com>
Mon, 24 Nov 2025 17:35:58 +0000 (18:35 +0100)
committerGitHub <noreply@github.com>
Mon, 24 Nov 2025 17:35:58 +0000 (17:35 +0000)
commitfee778265064c290ae1852916ff47fcc0ab4a29d
tree8077efe0e4bdd66faa064b643299e19f3a7eca65
parente1f1df4082e2bc6cdb46be9984124c88a7b2ff0f
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.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* rework the conditional import for all its attrs

---------

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