SHA-3 (Keccak) hash functions for Python 2.7 to 3.5. Version 1.0.2 is the latest, released in 2017. The library is unmaintained and incompatible with Python 3.6+ due to the `hashlib` standard library having built-in SHA-3 support.
pip install pysha3Verified import paths — ran on the pinned version, not inferred.
Create a SHA3-256 hash of b'hello' using pysha3.
Replace `from pysha3 import sha3_256` with `import hashlib; hashlib.sha3_256()`
Always confirm the expected output against known test vectors.
Use `hashlib.sha3_256()` instead.
No dependency data recorded yet.