crc_table = None
def make_crc_table():
global crc_table
crc_table = [0] * 256
for n in xrange(256):
c = n
for k in xrange(8):
if c & 1:
c = 0xedb88320L ^ (c >> 1)
else:
c = c >> 1
crc_table[n] = c
make_crc_table()
"""
/* Update a running CRC with the bytes buf[0..len-1]--the CRC
should be initialized to all 1's, and the transmitted value
is the 1's complement of the final running CRC (see the
crc() routine below)). */
"""
def update_crc(crc, buf):
c = crc
for byte in buf:
c = crc_table[int((c ^ ord(byte)) & 0xff)] ^ (c >> 8)
return c
# /* Return the CRC of the bytes buf[0..len-1]. */
def crc(buf):
return update_crc(0xffffffffL, buf) ^ 0xffffffffL
我用这段代码来计算png crc值
我的IHDR块数据为000008A0 000002FA 08020000 00
,该代码的结果为0xa1565b1L
然而真正的crc是0x84E42B87
。我用众所周知的png检查工具检查了这个值,正确的crc是0x84E42B87
我无法理解这个值的计算方法和正确值。
答案 0 :(得分:0)
CRC是根据块类型和数据计算的,而不仅仅是数据。所以这些字节前面会有四个字节IHDR
。然后你得到正确的CRC。
顺便说一句,我不知道你是如何从0xa1565b1L
获得000008A0 000002FA 08020000 00
的。我得到0xa500050a
作为那些字节的CRC。还有其他一些你也做错了。您需要提供一个完整的示例供我们分辨。