ieee constant

CRC32Params const ieee

IEEE is by far and away the most common CRC-32 polynomial. Used by ethernet (IEEE 802.3), v.42, fddi, gzip, zip, png, etc.

Implementation

static const ieee = CRC32Params._(
    'IEEE', 0x04C11DB7, 0xFFFFFFFF, true, 0xFFFFFFFF);