/* 7zCrc.h -- CRC32 calculation 2009-11-21 : Igor Pavlov : Public domain */ #ifndef __7Z_CRC_H #define __7Z_CRC_H #include "7zTypes.h" #ifdef __cplusplus extern "C" { #endif extern uint32_t g_CrcTable[]; /* Call CrcGenerateTable one time before other CRC functions */ void MY_FAST_CALL CrcGenerateTable(void); #define CRC_INIT_VAL 0xFFFFFFFF #define CRC_GET_DIGEST(crc) ((crc) ^ CRC_INIT_VAL) #define CRC_UPDATE_BYTE(crc, b) (g_CrcTable[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8)) uint32_t MY_FAST_CALL CrcUpdate(uint32_t crc, const void *data, size_t size); uint32_t MY_FAST_CALL CrcCalc(const void *data, size_t size); #ifdef __cplusplus } #endif #endif