New submission from Juuso Lehtivarjo <[email protected]>:

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

----------
messages: 318370
nosy: Juuso Lehtivarjo
priority: normal
severity: normal
status: open
title: Hashlib/blake2* missing 'data' keyword argument
type: crash
versions: Python 3.6

_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue33729>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to