-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from Still34/patches/tonepipeshell
Add alternative hashing seed for TOnePipeShell
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Created by Still Hsu <still@teamt5.org> | ||
|
||
DESCRIPTION = "TOnePipeShell hash with seed 0x4E44CB31 (1313131313)" | ||
TYPE = 'unsigned_int' | ||
TEST_1 = 3702427595 | ||
|
||
def hash(data): | ||
out_hash = 0 | ||
for c in data: | ||
out_hash = (c + 0x4E44CB31 * out_hash) & 0xffffffff | ||
return out_hash |