tiran / pysha3

Backport of hashlib.sha3 for 2.7 to 3.5

Home Page:https://docs.python.org/3/library/hashlib.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for PyPy3

carver opened this issue · comments

This is a tracking issue for PyPy3 support.

Currently, the missing component is PyUnicode_New. I posted that issue to the pypy project:

https://bitbucket.org/pypy/pypy/issues/2723/undefined-symbol-pyunicode_new-in-pypy3

Thanks, the function is the preferred way to create unicode objects, from https://docs.python.org/3/c-api/unicode.html?highlight=pyunicode_new#c.PyUnicode_New

This is the recommended way to allocate a new Unicode object. Objects created using this function are not resizable.
New in version 3.3.

pysha3 is no longer supported. Please use SHA-3 from Python's hashlib module.