CRC16算法之二:CRC16-CCITT-XMODEM算法的java实现

2021/4/19 22:25:50

本文主要是介绍CRC16算法之二:CRC16-CCITT-XMODEM算法的java实现,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

CRC16算法系列文章:

CRC16算法之一:CRC16-CCITT-FALSE算法的java实现

CRC16算法之二:CRC16-CCITT-XMODEM算法的java实现

CRC16算法之三:CRC16-CCITT-MODBUS算法的java实现

 

前言

CRC16算法有很多种,本篇文章会介绍其中的CRC16-CCITT-XMODEM算法

 

功能

实现CRC16-CCITT-XMODEM算法

支持int、short类型

支持选择数组区域计算

实现

  1. package cc.eguid.crc16;

  2.  

  3. /**

  4. * crc16多项式算法

  5. * @author eguid

  6. *

  7. */

  8. public class CRC16 {

  9.  

  10. /**

  11. * CRC16-XMODEM算法(四字节)

  12. * @param bytes

  13. * @return

  14. */

  15. public static int crc16_ccitt_xmodem(byte[] bytes) {

  16. return crc16_ccitt_xmodem(bytes,0,bytes.length);

  17. }

  18.  

  19. /**

  20. * CRC16-XMODEM算法(四字节)

  21. * @param bytes

  22. * @param offset

  23. * @param count

  24. * @return

  25. */

  26. public static int crc16_ccitt_xmodem(byte[] bytes,int offset,int count) {

  27. int crc = 0x0000; // initial value

  28. int polynomial = 0x1021; // poly value

  29. for (int index = offset; index < count; index++) {

  30. byte b = bytes[index];

  31. for (int i = 0; i < 8; i++) {

  32. boolean bit = ((b >> (7 - i) & 1) == 1);

  33. boolean c15 = ((crc >> 15 & 1) == 1);

  34. crc <<= 1;

  35. if (c15 ^ bit)

  36. crc ^= polynomial;

  37. }

  38. }

  39. crc &= 0xffff;

  40. return crc;

  41. }

  42.  

  43. /**

  44. * CRC16-XMODEM算法(两字节)

  45. * @param bytes

  46. * @param offset

  47. * @param count

  48. * @return

  49. */

  50. public static short crc16_ccitt_xmodem_short(byte[] bytes,int offset,int count) {

  51. return (short)crc16_ccitt_xmodem(bytes,offset,count);

  52. }

  53. /**

  54. * CRC16-XMODEM算法(两字节)

  55. * @param bytes

  56. * @param offset

  57. * @param count

  58. * @return

  59. */

  60. public static short crc16_ccitt_xmodem_short(byte[] bytes) {

  61. return crc16_ccitt_xmodem_short(bytes,0,bytes.length);

  62. }

  63.  

  64. }

---end---

 



这篇关于CRC16算法之二:CRC16-CCITT-XMODEM算法的java实现的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程