Posts tonen met het label hashlib. Alle posts tonen
Posts tonen met het label hashlib. Alle posts tonen

woensdag 19 februari 2020

MD5 File Checksum

import hashlib

for filename in os.listdir(directory):
    if filename.endswith(".xml"):
        #print(directory+filename)
        with open(directory+filename, encoding="utf8") as file_to_check:
            # read contents of the file
            data = file_to_check.read() 
            # pipe contents of the file through
            md5checksum = hashlib.md5(data.encode('utf-8')).hexdigest()

Till Next Time