Static class for computing CRC-32 checksums.
static uint Update(uint Crc, byte Value)
Updates an existing CRC value with one byte (standard CRC-32 algorithm).
static uint Compute(byte[] Data)
Computes the CRC-32 of a byte array (polynomial 0xEDB88320, init = 0xFFFFFFFF, xor out = 0xFFFFFFFF).