Created
March 27, 2015 05:59
-
-
Save Higgs1/cebedef2e775ea63fcbc to your computer and use it in GitHub Desktop.
CoffeeScript CRC-32
This file contains hidden or 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
crc32 = do -> | |
table = | |
for n in [0..255] | |
for [0..7] | |
if n & 1 | |
n = 0xEDB88320 ^ n >>> 1 | |
else | |
n >>>= 1 | |
n | |
(str, crc = -1) -> | |
for c in str | |
crc = crc >>> 8 ^ table[(crc ^ c.charCodeAt 0) & 255] | |
(crc ^ -1) >>> 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment