crc32 top-level constant
CRC32
const crc32
A CRC-32 code generator with IEEE 802.3 CRC-32 polynomial.
A CRC or cyclic redundancy check is code commonly used for error detection and correction of digital data. This generates a 32-bit number as output.
This implementation uses IEEE 802.3 CRC-32 polynomial 0xEDB88320.
WARNING: It should not be used for cryptographic purposes.
Implementation
const crc32 = CRC32(CRC32Params.ieee);