⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crc.h

📁 DIAMOND2加密算法的原代码
💻 H
字号:
/* crc.h -- header for CCITT CRC-32 function.   This file is in the Public Domain.*/extern unsigned long int *Ccitt32Table;extern int CALLTYPE BuildCRCTable(void);    /* Allocates 1024 byte table and fills it. *//* Make sure that the following macro is called after BuildCRCTable() but   before crc32done(). */#define crc32(crc, c)(((crc>>8)&0x00FFFFFFL)^(Ccitt32Table[(int)((int)crc^c)&0xFF]))extern void CALLTYPE crc32done(void);   /* Frees up 1024 bytes of RAM. */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -