mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 16:18:33 +00:00
26 lines
607 B
C
26 lines
607 B
C
/* Copyright (C) radare2 - 2007-2012 - pancake */
|
|
|
|
#include "r_types.h"
|
|
|
|
static char crc_table_is_init = 0;
|
|
static ut32 crc_table[256];
|
|
|
|
// result is endian swap
|
|
R_API ut32 r_hash_crc32(const ut8 *buf, ut64 len) {
|
|
unsigned int crc = 0;
|
|
if (!crc_table_is_init) {
|
|
ut32 i, j, h = 1;
|
|
crc_table_is_init = 1;
|
|
crc_table[0] = 0;
|
|
for (i = 128; i; i >>= 1) {
|
|
h = (h >> 1) ^ ((h & 1) ? (int)0xedb88320 : 0);
|
|
for (j = 0; j < 256; j += 2*i)
|
|
crc_table[i+j] = crc_table[j] ^ h;
|
|
}
|
|
}
|
|
crc ^= 0xffffffff;
|
|
while (len--)
|
|
crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff];
|
|
return crc ^ 0xffffffff;
|
|
}
|