crc32
Method: zlib.crc32(data[, value])
Calculates the CRC32 checksum of the given data.
Parameters
data
The data to calculate the checksum for. This can be a string, a buffer, a typed array, or any other array-like raw data.
value
An optional initial value for the checksum. This can be used to calculate the checksum of a stream of data in multiple parts.
Method: zlib.crc32(data[, value])
Calculates the CRC32 checksum of the given data; this method variant operates on foreign Value instances.
Parameters
data
The data to calculate the checksum for. This can be a string, a buffer, a typed array, or any other array-like raw data.
value
An optional initial value for the checksum. This can be used to calculate the checksum of a stream of data in multiple parts.