CRC32 function Null safety
Get the CRC-32 checksum of the given int.
Implementation
int CRC32(int crc, int b) => _crc32Table[(crc ^ b) & 0xff] ^ (crc >> 8);
Get the CRC-32 checksum of the given int.
int CRC32(int crc, int b) => _crc32Table[(crc ^ b) & 0xff] ^ (crc >> 8);