js-crc32
js-crc32 copied to clipboard
:cyclone: JS standard CRC-32 and CRC32C implementation
Results
2
js-crc32 issues
Sort by
recently updated
recently updated
newest added
/* Frequently faster in NodeJS */ crc32 = CRC32.buf(Buffer.from(bstr, "binary"), 0); crc32 = CRC32.str(bstr, 0); Whether the calculation result of CRC32.buf in the node and the calculation result of CRC32.str...
Hi! I have recently used this library in the context of content-defined chunking, where I read a file into a buffer and calculate hashes of a sliding window. This produces...