Crate crc32_cksum_fast

Source

Functionsยง

hash
Calculate the CRC checksum of the octets using an SIMD implementation if available. If not, a fallback algorithm is used. If the table-fallback feature is enabled this will be a lookup table based algorithm, otherwise a simple loop is used (slowest).
hash_simple
Calculate the CRC checksum of the octets using a simple loop algorithm (slow).
hash_table
Calculate the CRC checksum of the octets using a table lookup algorithm.