mirror of
https://github.com/OALabs/hashdb
synced 2026-06-08 12:05:11 +00:00
11 lines
269 B
Python
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 |