CRC32加密函数

Posted ndyxb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CRC32加密函数相关的知识,希望对你有一定的参考价值。

typedef unsigned int uint;
uint POLYNOMIAL = 0xEDB88320;
int have_table = 0;
uint table[256];

void make_table()
{
    int i, j, crc;
    have_table = 1;
    for (i = 0; i < 256; i++)
        for (j = 0, table[i] = i; j < 8; j++)
            table[i] = (table[i] >> 1) ^ ((table[i] & 1) ? POLYNOMIAL : 0);
}

uint crc32(uint crc,char *buff, int len)
{
    if (!have_table) make_table();
    crc = crc ^ ~0U;
    for (int i = 0; i < len; i++)
        crc = (crc >> 8) ^ table[(crc ^ buff[i]) & 0xFF];
    return ~crc;
}
    //CRC32加密
    uint encoded_crc32 = crc32(0, encoded_md5, 16);
    printf("crc32 : %08X",encoded_crc32 );

 

以上是关于CRC32加密函数的主要内容,如果未能解决你的问题,请参考以下文章

易语言写程序如何防破解?

python 通过crc32得到加密文件内容

[转载]CRC32加密算法原理

MISC:压缩包取证(zip爆破明文攻击伪加密CRC32碰撞)

MISC:压缩包取证(zip爆破明文攻击伪加密CRC32碰撞)

MISC:压缩包取证(zip爆破明文攻击伪加密CRC32碰撞)