python 中没有最后 4 个字节的二进制数据的 CRC32

CRC32 of binary data in python without last 4 bytes

我正在尝试获取某些二进制数据的 CRC32,最后 4 个字节除外。

到目前为止我的代码:

with open('filename.ext','rb') as f:
    fileContent = f.read()
    file_size, = struct.unpack("i",f.read(:4))
    print hex(file_size)

我知道 :4 是错误的,我仍在寻找如何不读取最后 4 个字节然后获取其他数据的 crc32。

您可以像这样使用索引:

fileContent[:-4]

跳过最后 4 个字节。