-
-
Notifications
You must be signed in to change notification settings - Fork 44
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 #47 from jershmagersh/add-65599-multiply
Adding algorithm for adding 65599 and multiplying the result.
- Loading branch information
Showing
2 changed files
with
15 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,14 @@ | ||
#!/usr/bin/env python | ||
DESCRIPTION = "ADD 65599 and MULTIPLY" | ||
TYPE = 'unsigned_int' | ||
TEST_1 = 2480409887 | ||
|
||
def hash(data): | ||
result = 0 | ||
for c in data: | ||
tmp = c + 32 | ||
if(((c - ord('A')) & 0xFFFF) > 26): | ||
tmp = c | ||
result = (tmp + 0x1003F * result) & 0xFFFFFFFF | ||
|
||
return result |