Files
OALabs-hashdb/algorithms/fnv1a.py
T
herrcore ed39b03997 updated TEST_1 test string
the new test string is longer and more complex to cut down on false collisions
2021-10-06 15:26:11 -04:00

12 lines
215 B
Python

#!/usr/bin/env python
DESCRIPTION = "FNV1a hash"
TYPE = 'unsigned_int'
TEST_1 = 2603339342
def hash(data):
val = 0x811c9dc5
for c in data:
val = (0x1000193 * (c ^ val)) & 0xffffffff
return val