代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
CRC16计算文件的校验和
作者:
/ 发布于
2014/5/22
/
646
CRC16计算文件的校验和
#include <stdio.h> #include <stdlib.h> #define DRIVER 1 /* brings in the main line */ /* Compute a CRC-16 value */ unsigned short int GetCRC16 ( int start, /* starting value */ const char *p, /* points to chars to process */ int n ) /* how many chars to process */ { static unsigned int crcl6_table[16] = /* CRC-16s */ { 0x0000, 0xCC01, 0xD801, 0x1400, 0xF001, 0x3C00, 0x2800, 0xE401, 0xA001, 0X6C00, 0x7800, 0xB401, 0x5000, 0x9C01, 0x8801, 0x4400 }; unsigned short int total; /* the CRC-16 value we compute */ int r1; total = start; /* process each byte */ while ( n-- > 0 ) { /* do the lower four bits */ r1 = crcl6_table[ total & 0xF ]; total = ( total >> 4 ) & 0x0FFF; total = total ^ r1 ^ crcl6_table[ *p & 0xF ]; /* do the upper four bits */ r1 = crcl6_table[ total & 0xF ]; total = ( total >> 4 ) & 0x0FFF; total = total ^ r1 ^ crcl6_table[ ( *p >> 4 ) & 0xF ]; /* advance to next byte */ p++; } return total; } #ifdef DRIVER #define BUFSIZE 8192 main ( int argc, char *argv[] ) { FILE *fin; int n; /* number of bytes actually read */ unsigned short int crc; /* CRC value */ char *buffer; /* buffer into which we read file */ if ( argc < 2 ) { fprintf ( stderr, "Error: must provide filename\\n" ); return EXIT_FAILURE; } if (( fin = fopen ( argv[1], "rb" )) == NULL ) { fprintf ( stderr, "Cannot open %s \\n", argv[1] ); return EXIT_FAILURE; } buffer = (char *) malloc ( BUFSIZE ); if ( buffer == NULL ) { fprintf ( stderr, "Error allocating memory\\n" ); return EXIT_FAILURE; } crc = 0; /* principal processing loop */ do { /* read file in 8KB blocks */ n = fread ( buffer, 1, BUFSIZE, fin ); /* Fold in this block's CRC-16 */ crc = GetCRC16 ( crc, buffer, n ); } while ( n== BUFSIZE ); /* Stop when done */ fclose ( fin ) ; /* check for read error */ if ( ferror ( fin )) fprintf ( stderr, "Error in Processing %s\\n", argv[1] ); /* No error, so report CRC-16 */ else printf ( "CRC-16 for %s = %04X\\n", argv[1], crc ); return EXIT_SUCCESS; } #endif
试试其它关键字
校验和
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
贡献的其它代码
Label
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3