There was an error while loading. Please reload this page.
Cryptography Library
Performs a BSD-checksum operation. returns the 16-bit hash
depricated Reads data of inputLength from inputPointer and performs a hash function on it. returns the 16-bit hash
For every value, shift the word i left and BOR with EX. XOR all of the resulting values together to produce the hash.
for i in inputLength: output ^ (inputPointer[i] << i)