pub fn crc32(data: &[u8]) -> u32Expand description
Compute CRC32 using the standard reflected polynomial (0xEDB88320).
This is the same algorithm used by zlib/gzip/PNG. No lookup table is used to keep the binary small; the byte-at-a-time loop is sufficient for the block sizes involved.