an array of bytes to compute the hash for. can be any kind of array, so long as all byte numbers conform to being unsigned integers that do not exceed the maximum value of 255
(8-bit max value)
Optional
crc: numberprovide any previous crc hash that you'd like to continue from, or leave it undefined
to begin from the standard value of 0xFFFFFFFF
by default
the CRC32 hash is quick to compute and used frequently in compression functions and their derivatives
you do not have to provide the
bytes
array in its entirety all at once, because you can continue off with the previous partial byte array's crc-hash using the second argument.Example