CRC16加密

1.java 

public static String Make_CRC(byte[] data) {
            byte[] buf = new byte[data.length];// 存储需要产生校验码的数据
            for (int i = 0; i < data.length; i++) {
                buf[i] = data[i];
            }
            int len = buf.length;
            int crc = 0x0000;
            for (int pos = 0; pos < len; pos++) {
                if (buf[pos] < 0) {
                    crc ^= (int) buf[pos] + 256; // XOR byte into least sig. byte of
                                                    // crc
                } else {
                    crc ^= (int) buf[pos]; // XOR byte into least sig. byte of crc
                }
                for (int i = 8; i != 0; i--) { // Loop over each bit
                    if ((crc & 0x0001) != 0) { // If the LSB is set
                        crc >>= 1; // Shift right and XOR 0xA001
                        crc ^= 0xA001;
                } else
//                        // Else LSB is not set

                    crc >>= 1; // Just shift right
                }
            }
            String c = Integer.toHexString(crc);
            if (c.length() == 4) {
                c = c.substring(2, 4) + c.substring(0, 2);
            } else if (c.length() == 3) {
                c = "0" + c;
                c = c.substring(2, 4) + c.substring(0, 2);
            } else if (c.length() == 2) {
                c = "0" + c.substring(1, 2) + "0" + c.substring(0, 1);
            }
            return c;
        }

2.C#

//计算CRC
       private byte[] GetCRC(byte[] bufData,int startPos,int dataLen)
       {
           ushort CRC = 0x0000;
           ushort POLYNOMIAL = 0xA001;
           byte[] crc = new byte[2];
           for (int i = startPos; i < startPos + dataLen; i++)
           {
               CRC ^= bufData[i];
               for (int j = 0; j < 8; j++)
               {
                   if ((CRC & 0x0001) != 0)
                   {
                       CRC >>= 1;
                       CRC ^= POLYNOMIAL;
                   }
                   else
                   {
                       CRC >>= 1;
                   }
               }
           }
           crc = BitConverter.GetBytes(CRC);
           Array.Reverse(crc);
           return crc;
       }

猜你喜欢

转载自blog.csdn.net/qq_37069064/article/details/86636298
今日推荐