A module that implements the CRC8 hash algorithm for Python 2 and 3.
pip install crc8
Or copy the crc8.py file somewhere where you can import it.
The crc8
class has the same interface as the hash functions in the
hashlib module.
Example:
import crc8
hash = crc8.crc8()
hash.update(b'123')
assert hash.hexdigest() == 'c0'
assert hash.digest() == b'\xc0'
If something s not there that you would like to have, open an issue, create a pull request.
The license is MIT and I value contributions if you modify the code.