搜索资源列表
16位CRC校验_Modbus标准算法
CRC校验
1、循环校验码(CRC码):是数据通信领域中最常用的一种差错校验码,其特征是信息
字段和校验字段的长度可以任意选定。
2、生成CRC码的基本原理:任意一个由二进制位串组成的代码都可以和一个系数仅
为‘0’和‘1’取值的多项式一一对应。例如:代码1010111对应的多项式
为x6+x4+x2+x+1,而
ECC校验FPGA源码
- ECC校验FPGA源码,VHDL编写
计算校验和程序
- 计算校验和程序内涵说明书
EXE文件的自身校验
- EXE文件的自身校验-EXE file its own calibration
快速CRC校验源码
- 快速CRC校验源码-Fast CRC FOSS
16-bit数的偶数奇偶校验
- 16-bit数的偶数奇偶校验及阶乘运算,用verilog写-16-bit number of even parity and factorial computation, written using Verilog
CRC 校验源码分析
- CRC-16校验源程序及算法分析-CRC-16 checksum algorithm analysis and source
奇偶校验
- 简单的水平垂直偶校验,是用VC写的,-simple dual vertical level calibrator, is to use the VC wrote,
字符串加CRC校验
- 给任意长度的字符串,加CRC校验码的c语言算法-to arbitrary length of the string, plus CRC algorithm in C Language
校验码
- 校验码算法,可运行,加说明,例如:代码690123456789X1(共13位)校验码的计算 步骤 举例说明 1、自右向左编号 位置序号 13 12 11 10 9 8 7 6 5 4 3 2 1 代 码 6 9 0 1 2 3 4 5 6 7 8 9 X1 2、从序号2开始求出偶数 9+7+5+3+1+9=34 位上数字之和(1) 3、(1)*3=(2) 34*3=102 4、从序号3开始求出奇数 8+6+4+2+0+6=34 位上数字
CRC循环校验具体算法
- 本代码是C语言实现的CRC循环校验具体算法-the code is the C language CRC checksum algorithm for the cycle
循环冗余码校验crc算法
- 这是一个小程序,用VC++6.0来实现循环冗余码校验CRC算法。 标准为CRC-4,生成多项式为C(X)=X4+X+1, 应用举例为ITU G704 -This is a small program used to achieve VC 6.0 cyclical redundancy check CRC algorithm. Standards for the CRC-4, generating polynomial C (X)
crc校验源码分析
- 这是CRC校验源码的分析,让你更了解CRC校验的原理-This is the CRC-source analysis and let you know more about the principles of the CRC
基于SHA-256的HMAC文件校验器
- HMAC即带密钥的HASH函数,用它产生的报文鉴别码(MAC)可以实现报文鉴别。这里我将其做成一个软件,用于对文件的合法性进行校验。以下我先简单介绍软件相关背景知识再介绍其代码实现。 -HMAC key is to bring the hash function, used the text of the report identifying code (MAC) can realize the text identificati
8位C51CRC校验原程序
- 8位C51,CRC校验原理单片机编程原程序-eight C51, CRC principles SCM original programming procedures
计算校验和
- 关键字: 校验和算法, VC.NET, 这是我VC.NET写的一个小程序,在控制台模式下实现校验和算法 希望更多的人与我交流, QQ:270596846 E_MAIL:chmuggmwtg@163.com -keyword : checksum algorithm, VC.NET, this is my VC.NET write a small program the console model under checksum
十六进制数相加校验和计算程序
- 【汇编语言编程使用工具】【十六进制数相加校验和计算程序】-[Assembly language programming tools] [hexadecimal number add checksum calculation program]
crc校验码
- 这是一个依靠检验文件CRC校验码来判断文件是否已经被病毒修改过的c程序-This is a test paper on CRC document to determine whether the virus has been revised procedures for the c
ModbusCrc16校验码计算工具(未全面测试)
- Modbus Crc16校验码计算和一些相应的辅助功能。(Modbus Crc16 code calculate tool.)
CRC校验,高位在前,低位在后
- CRC校验,高位在前,低位在后具体算法:P(X)=X16+X15+X2+1(CRC checksum, high in the front, low in the back)