CRC32 checksum algorithm implementation according to IEEE standards. More...
CRC32 checksum algorithm implementation according to IEEE standards.
Files | |
file | crc32.h |
Functions | |
uint32_t | crc32 (const void *buf, size_t size) |
CRC-32 checksum. | |
uint32_t crc32 | ( | const void * | buf, |
size_t | size | ||
) |
CRC-32 checksum.
Uses the 0xedb88320
polynomial
crc32_fast
module for a look-up table based implementation that trades code size for speed.[in] | buf | The data to checksum |
[in] | size | Length of the data in bytes |