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 christian.heimes
Recipients christian.heimes, docs@python, gregory.p.smith, martin.panter, nicktimko, sir-sigurd
Date 2021-10-21.13:11:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1634821863.83.0.943939950082.issue26834@roundup.psfhosted.org>
In-reply-to
Content
OpenSSL 1.1.1 comes with sha512_256 and sha512_224. I propose that we use the OpenSSL implementation and don't add the variants to our _sha512 module.

>>> hashlib.new("sha512_256").hexdigest()
'c672b8d1ef56ed28ab87c3622c5114069bdd3ad7b8f9737498d0c01ecef0967a'
>>> hashlib.new("sha512_224").hexdigest()
'6ed0dd02806fa89e25de060c19d3ac86cabb87d6a0ddd05c333b84f4'
History
Date User Action Args
2021-10-21 13:11:05christian.heimessetrecipients: + christian.heimes, gregory.p.smith, docs@python, martin.panter, nicktimko, sir-sigurd
2021-10-21 13:11:03christian.heimessetmessageid: <1634821863.83.0.943939950082.issue26834@roundup.psfhosted.org>
2021-10-21 13:11:03christian.heimeslinkissue26834 messages
2021-10-21 13:11:03christian.heimescreate