Files
OALabs-hashdb/algorithms/tonepipeshell.py
T
2024-01-19 13:55:32 +08:00

11 lines
269 B
Python

# Created by Still Hsu <still@teamt5.org>
DESCRIPTION = "TOnePipeShell hash with seed 0xC85E31"
TYPE = 'unsigned_int'
TEST_1 = 3454880715
def hash(data):
out_hash = 0
for c in data:
out_hash = (c + 0xC85E31 * out_hash) & 0xffffffff
return out_hash