码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-09-18 11:11:19      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:als   href   @param   key   public   length   选择   blank   amp   

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实现

标签:als   href   @param   key   public   length   选择   blank   amp   

原文地址:https://www.cnblogs.com/eguid/p/9667140.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!