We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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)