This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author floppymaster
Recipients floppymaster
Date 2019-10-21.16:00:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1571673604.24.0.668685601916.issue38550@roundup.psfhosted.org>
In-reply-to
Content
After upgrading to Python 3.7.5, several algorithms are unavailable in the hashlib module.

This seems to have been caused by the "fix" for https://bugs.python.org/issue33936. I will submit a PR with a more appropriate change shortly.

Python 3.7.4:
>>> hashlib.algorithms_available
{'ripemd160', 'blake2s256', 'sha512', 'sha3-224', 'sha3_224', 'blake2s', 'shake_128', 'sha3-384', 'sha3_384', 'whirlpool', 'md4', 'md5', 'sha512-224', 'sha3-512', 'sha1', 'blake2b', 'sha384', 'md5-sha1', 'sha3-256', 'shake_256', 'mdc2', 'sha224', 'blake2b512', 'shake128', 'sm3', 'sha256', 'shake256', 'sha3_512', 'sha512-256', 'sha3_256'}

Python 3.7.5:
>>> hashlib.algorithms_available
{'sha224', 'sha256', 'sha3_224', 'blake2s', 'md5', 'sha3_256', 'sha384', 'sha3_512', 'sha3_384', 'shake_256', 'blake2b', 'sha512', 'shake_128', 'sha1'}
History
Date User Action Args
2019-10-21 16:00:04floppymastersetrecipients: + floppymaster
2019-10-21 16:00:04floppymastersetmessageid: <1571673604.24.0.668685601916.issue38550@roundup.psfhosted.org>
2019-10-21 16:00:04floppymasterlinkissue38550 messages
2019-10-21 16:00:03floppymastercreate