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 Juuso Lehtivarjo
Recipients Juuso Lehtivarjo
Date 2018-06-01.08:36:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1527842171.52.0.682650639539.issue33729@psf.upfronthosting.co.za>
In-reply-to
Content
In python 3.6.5: hashlib blake2b/blake2s constructors do not recognize 'data' keyword. Try the following:

from hashlib import blake2b
print (blake2b(b"foobar").hexdigest()) # works
print (blake2b(data=b"foobar").hexdigest()) # TypeError: 'data' is an invalid keyword argument for this function
History
Date User Action Args
2018-06-01 08:36:11Juuso Lehtivarjosetrecipients: + Juuso Lehtivarjo
2018-06-01 08:36:11Juuso Lehtivarjosetmessageid: <1527842171.52.0.682650639539.issue33729@psf.upfronthosting.co.za>
2018-06-01 08:36:11Juuso Lehtivarjolinkissue33729 messages
2018-06-01 08:36:11Juuso Lehtivarjocreate