gpt4 book ai didi

python - 如何在python3中计算ANSI CRC16多项式(0x8005)?

转载 作者:行者123 更新时间:2023-11-28 21:54:03 24 4
gpt4 key购买 nike

我尝试使用此代码计算 ANSI CRC16 多项式 (0x8005)

import crcmod
crc16 = crcmod.mkCrcFun(0x8005, 0xffff, True)

但是我收到了这个错误信息

ValueError: The degree of the polynomial must be 8, 16, 24, 32 or 64

最佳答案

0x8005的开头有一个隐含的1

crcmod 希望您明确提供 1

import crcmod
crc16 = crcmod.mkCrcFun(0x18005, 0xffff, True)

关于python - 如何在python3中计算ANSI CRC16多项式(0x8005)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24851027/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com