crc64 top-level constant

CRC64 const crc64

A CRC-64 code generator with ISO CRC-64 polynomial.

A CRC or cyclic redundancy check is code commonly used for error detection and correction of digital data. This generates a 64-bit number as output.

This implementation uses ISO polynomial 0xD800000000000000.

WARNING: It should not be used for cryptographic purposes.

Implementation

const crc64 = CRC64(CRC64Params.iso);