CRC16算法之二:CRC16-CCITT-XMODEM算法的java实现
Posted eguid
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CRC16算法之二:CRC16-CCITT-XMODEM算法的java实现相关的知识,希望对你有一定的参考价值。
CRC16算法系列文章:
前言
CRC16算法有很多种,本篇文章会介绍其中的CRC16-CCITT-XMODEM算法
功能
实现CRC16-CCITT-XMODEM算法
支持int、short类型
支持选择数组区域计算
实现
-
package cc.eguid.crc16;
-
-
/**
-
* crc16多项式算法
-
* @author eguid
-
*
-
*/
-
public class CRC16 {
-
-
/**
-
* CRC16-XMODEM算法(四字节)
-
* @param bytes
-
* @return
-
*/
-
public static int crc16_ccitt_xmodem(byte[] bytes) {
-
return crc16_ccitt_xmodem(bytes,0,bytes.length);
-
}
-
-
/**
-
* CRC16-XMODEM算法(四字节)
-
* @param bytes
-
* @param offset
-
* @param count
-
* @return
-
*/
-
public static int crc16_ccitt_xmodem(byte[] bytes,int offset,int count) {
-
int crc = 0x0000; // initial value
-
int polynomial = 0x1021; // poly value
-
for (int index = offset; index < count; index++) {
-
byte b = bytes[index];
-
for (int i = 0; i < 8; i++) {
-
boolean bit = ((b >> (7 - i) & 1) == 1);
-
boolean c15 = ((crc >> 15 & 1) == 1);
-
crc <<= 1;
-
if (c15 ^ bit)
-
crc ^= polynomial;
-
}
-
}
-
crc &= 0xffff;
-
return crc;
-
}
-
-
/**
-
* CRC16-XMODEM算法(两字节)
-
* @param bytes
-
* @param offset
-
* @param count
-
* @return
-
*/
-
public static short crc16_ccitt_xmodem_short(byte[] bytes,int offset,int count) {
-
return (short)crc16_ccitt_xmodem(bytes,offset,count);
-
}
-
/**
-
* CRC16-XMODEM算法(两字节)
-
* @param bytes
-
* @param offset
-
* @param count
-
* @return
-
*/
-
public static short crc16_ccitt_xmodem_short(byte[] bytes) {
-
return crc16_ccitt_xmodem_short(bytes,0,bytes.length);
-
}
-
-
}
---end---
以上是关于CRC16算法之二:CRC16-CCITT-XMODEM算法的java实现的主要内容,如果未能解决你的问题,请参考以下文章