CRC-CCITT 16位Python手动计算

Ale*_*art 6 python crc python-2.7 crc16

问题

我正在为嵌入式设备编写代码.CRC-CCITT 16位计算的许多解决方案都需要库.

鉴于使用库几乎是不可能的并且耗尽其资源,需要一个函数.

可能解决方案

在线发现以下CRC计算.但是,它的实现是不正确的.

http://bytes.com/topic/python/insights/887357-python-check-crc-frame-crc-16-ccitt

def checkCRC(message):
    #CRC-16-CITT poly, the CRC sheme used by ymodem protocol
    poly = 0x11021
    #16bit operation register, initialized to zeros
    reg = 0xFFFF
    #pad the end of the message with the size of the poly
    message += '\x00\x00' 
    #for each bit in the message
    for byte in message:
        mask = 0x80
        while(mask > 0):
            #left shift by one
            reg<<=1
            #input the next bit from the message into the right hand side of the op reg
            if ord(byte) & mask:   
                reg += 1
            mask>>=1
            #if a one popped out the left of the reg, xor reg w/poly
            if reg > 0xffff:            
                #eliminate any one that popped out the left
                reg &= 0xffff           
                #xor with the poly, this is the remainder
                reg ^= poly
    return reg
Run Code Online (Sandbox Code Playgroud)

现有在线解决方案

以下链接正确计算16位CRC.

http://www.lammertbies.nl/comm/info/crc-calculation.html#intr

"CRC-CCITT(XModem)"下的结果是正确的CRC.

规格

我相信现有在线解决方案中的"CRC-CCITT(XModem)"计算使用多项式0x1021.

如果有人可以编写新功能或提供方向来解决checkCRC所需规格的功能.请注意,使用图书馆或任何图书馆import都无济于事.

Ser*_*sta 9

这是来自http://www.lammertbies.nl/comm/info/crc-calculation.html的CRC 库的python端口,用于CRC-CCITT XMODEM

这个库对于实际用例很有意思,因为它预先计算了一个crc表以提高速度.

用法(带字符串或字节列表):

crc('123456789')
crcb(0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39)
Run Code Online (Sandbox Code Playgroud)

测试给出: '0x31c3'

POLYNOMIAL = 0x1021
PRESET = 0

def _initial(c):
    crc = 0
    c = c << 8
    for j in range(8):
        if (crc ^ c) & 0x8000:
            crc = (crc << 1) ^ POLYNOMIAL
        else:
            crc = crc << 1
        c = c << 1
    return crc

_tab = [ _initial(i) for i in range(256) ]

def _update_crc(crc, c):
    cc = 0xff & c

    tmp = (crc >> 8) ^ cc
    crc = (crc << 8) ^ _tab[tmp & 0xff]
    crc = crc & 0xffff
    print (crc)

    return crc

def crc(str):
    crc = PRESET
    for c in str:
        crc = _update_crc(crc, ord(c))
    return crc

def crcb(*i):
    crc = PRESET
    for c in i:
        crc = _update_crc(crc, c)
    return crc
Run Code Online (Sandbox Code Playgroud)

checkCRC如果你在开头替换poly = 0x11021,你建议的例程是CRC-CCITT变体'1D0F' poly = 0x1021.

  • 首先将字符串转换为字节列表然后调用crcb:`crcb(*[int(crc_string [i:i + 2],16)for i in range(0,len(crc_string),2)])` - 对于`crc_string ="0A0A0A0A0A0A0A"`它给出'53769` =`0xd209` (2认同)