我有一系列十六进制字节:
0x81 0x12 0xC0 0x00 0x01 0x05
我需要计算它的 CRC 16。在线计算器给了我:
0x81 0x53 //correct
我使用 crcmod python 模块如下:
crc16 = crcmod.predefined.mkCrcFun('crc-16')
print crc16('123456789') # works well
print hex(crc16('\x81\x12\xC0\x00\x01\x05')) #EDIT : works aswell!
我如何将此十六进制系列表示为 ascii 字符串(该函数需要该字符串)
谢谢!