Calculate Adler-32 Checksum using Python September 15, 2020 Python 0 Comments 567 Views zip module import zlib text = 'Hello' checksum = zlib.adler32(text.encode('utf-8')) print(checksum)
Leave a Comment
Cancel reply