Calculate CRC32 Checksum using Python September 11, 2020 Python 0 Comments 2098 Views binascii library import binascii text = 'Hello' checksum = binascii.crc32(text.encode('utf-8')) print(checksum)
Leave a Comment
Cancel reply