我目前正在努力开发一种需要CRC_CCITT Kermit 16协议的公式(X16 + X12 + X5 + 1)。但是,我在网站或网站上发现的一些代码我似乎没有得到我想要的结果。我看到这个网站(http://www.lammertbies.nl/comm/info/crc-calculation.html)实际上为我提供了我想要的完全匹配,但它是用C ++编写的。所以有人可以帮我这个吗?
我期待着您的回复。
亲切的问候
迈克尔
答案 0 :(得分:0)
好像你想要CRC16 CCITT。试试这个:
using System;
public enum InitialCrcValue { Zeros, NonZero1 = 0xffff, NonZero2 = 0x1D0F }
public class Crc16Ccitt {
const ushort poly = 4129;
ushort[] table = new ushort[256];
ushort initialValue = 0;
public ushort ComputeChecksum(byte[] bytes) {
ushort crc = this.initialValue;
for(int i = 0; i < bytes.Length; ++i) {
crc = (ushort)((crc << 8) ^ table[((crc >> 8) ^ (0xff & bytes[i]))]);
}
return crc;
}
public byte[] ComputeChecksumBytes(byte[] bytes) {
ushort crc = ComputeChecksum(bytes);
return BitConverter.GetBytes(crc);
}
public Crc16Ccitt(InitialCrcValue initialValue) {
this.initialValue = (ushort)initialValue;
ushort temp, a;
for(int i = 0; i < table.Length; ++i) {
temp = 0;
a = (ushort)(i << 8);
for(int j = 0; j < 8; ++j) {
if(((temp ^ a) & 0x8000) != 0) {
temp = (ushort)((temp << 1) ^ poly);
} else {
temp <<= 1;
}
a <<= 1;
}
table[i] = temp;
}
}
}