How to generate a CRC-16 from C#

后端 未结 2 1660
醉梦人生
醉梦人生 2020-12-01 08:21

I am trying to generate a CRC-16 using C#. The hardware I am using for RS232 requires the input string to be HEX. The screenshot below shows the correct conversion, For a te

2条回答
  •  [愿得一人]
    2020-12-01 09:01

    In Addition, If you want CRC16-CCITT.

    private ushort Crc16Ccitt(byte[] bytes)
    {
        const ushort poly = 4129;
        ushort[] table = new ushort[256];
        ushort initialValue = 0xffff;
        ushort temp, a;
        ushort crc = initialValue;
        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;
        }
        for (int i = 0; i < bytes.Length; ++i)
        {
            crc = (ushort)((crc << 8) ^ table[((crc >> 8) ^ (0xff & bytes[i]))]);
        }
        return crc;
    }
    

提交回复
热议问题