gpt4 book ai didi

python - 在python中计算crc8 dvb s2

转载 作者:行者123 更新时间:2023-11-30 16:26:38 26 4
gpt4 key购买 nike

我需要在 python 中计算 crc8 dvb s2 校验和,但我找不到任何有关此校验和实际工作原理的有用信息,因此我尝试转换此工作 C 代码:

uint8_t crc8_dvb_s2(uint8_t crc, unsigned char a)

{
crc ^= a;
for (int ii = 0; ii < 8; ++ii) {
if (crc & 0x80) {
crc = (crc << 1) ^ 0xD5;
} else {
crc = crc << 1;
}
}
return crc;
}

在Python代码中:

import crc8
import operator
def bxor(b1, b2): # use xor for bytes
return bytes(map(operator.xor, b1, b2))
def blshift(b1, b2): # use shift left for bytes
return (int.from_bytes( b1, byteorder='little') << int.from_bytes( b2, byteorder='little')).to_bytes(1, byteorder='little')
def _checksum(message):
#calculate crc
crc = crc8.crc8()
crc.update(message)
crc_result = crc.digest()
#calculate dvb
crc_result = bxor(crc_result , message)
for i in range(0, 7):
if (crc_result == b'\x80') :
crc_result = bxor((blshift(crc_result, b'\x01')) , b'\xD5')
else:
crc_result = blshift(crc_result, b'\x01')
#-------------
return crc_result;

但是有一些问题我似乎无法理解。如果我给 C 函数提供字节 '\x00d\x00\x00\x00' 它会给我结果 '\x8f' (这是正确的),而 Python 函数给我 OverflowError: int 太大而无法转换。

我的代码显然有问题,导致数字越来越大,但我无法弄清楚到底是什么问题。

完整回溯:

---------------------------------------------------------------------------
OverflowError Traceback (most recent call last)
<ipython-input-226-8288eada1ce9> in <module>
----> 1 _checksum(b'\x00d\x00\x00\x00')

<ipython-input-225-2e5beaea293f> in _checksum(message)
18 crc_result = bxor((blshift(crc_result, b'\x01')) , b'\xD5')
19 else:
---> 20 crc_result = blshift(crc_result, b'\x01')
21 #-------------
22 return crc_result;

<ipython-input-225-2e5beaea293f> in blshift(b1, b2)
6 return bytes(map(operator.and_, b1, b2))
7 def blshift(b1, b2): # use shift left for bytes
----> 8 return (int.from_bytes( b1, byteorder='little') << int.from_bytes( b2, byteorder='little')).to_bytes(1, byteorder='little')
9 def _checksum(message):
10 #calculate crc

OverflowError: int too big to convert

最佳答案

int.to_bytes 的文档说:

An OverflowError is raised if the integer is not representable with the given number of bytes.

您使用 .to_bytes(1, byteorder='little') 的数字似乎大于 255(一个字节可表示的最大数字)。

这个:

int.from_bytes( b2, byteorder='little')).to_bytes(1, byteorder='little')

仅当 b2 介于 0 和 255 之间时才有效,而且我不明白将相同值从整数转换为字节并返回的意义何在。

您打算计算b2的二进制表示的最低8位吗?那么你应该使用b2 % 256

<小时/>

您应该能够将这个 C 函数几乎从字面上翻译为 Python,而不需要诸如 bxorblshift 之类的辅助函数:

def crc8_dvb_s2(crc, a):
crc ^= a
for _ in range(8):
if crc & 0x80:
crc = ((crc << 1) ^ 0xD5) % 256
else:
crc = (crc << 1) % 256
return crc

关于python - 在python中计算crc8 dvb s2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52996986/

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