getCrc32Byte function

int getCrc32Byte(
  1. int crc,
  2. int b
)

Get the CRC-32 checksum of the given int.

Implementation

int getCrc32Byte(int crc, int b) => _crc32Table[(crc ^ b) & 0xff] ^ (crc >> 8);