哈希文件的签名

时间:2018-04-06 00:09:19

标签: file hash signatures

我需要创建一个程序,为我目录中的每个文件创建哈希签名。我需要输出包含文件名和哈希旁边的哈希。

这是我到目前为止的代码,它正在做的就是给我哈希。

import os, hashlib

path = "/home/ec2-user/environment"

for filename in os.listdir(path):
    if not os.path.isdir(filename):

        hasher = hashlib.md5()
    with open('39802.jpeg', 'rb') as afile:
        buf = afile.read()
    hasher.update(buf)
    print(hasher.hexdigest())

0 个答案:

没有答案