python crc32
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python crc32相关的知识,希望对你有一定的参考价值。
import binascii class Hash: def crc32(self,data): rs = binascii.crc32(data) #unsigned 32-bit CRC rs = rs % (1<<32) return rs
以上是关于python crc32的主要内容,如果未能解决你的问题,请参考以下文章