crc32 top-level constant

HashBase<HashDigestSink> 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 HashBase crc32 = _CRC32();