求文件的hash值(基于SHA3的Hash)
Posted guhongying
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求文件的hash值(基于SHA3的Hash)相关的知识,希望对你有一定的参考价值。
import hashlib import tkinter from tkinter import filedialog import pyperclip def fileHash(fileName): m=hashlib.sha384() #可以根据需求来选择md5,256,384,512 with open(fileName,‘rb‘) as file: #‘rb‘以二进制的格式打开一个文件 while True: data=file.read(4096) #read() 方法用于从文件读取指定的字节数,如果未给定或为负则读取所有。 if not data: break m.update(data) #Continue hashing of a message by consuming the next chunk of data. return m.hexdigest() def chooseFile(): root=tkinter.Tk() # 创建一个Tkinter.Tk()实例 root.withdraw() # 将Tkinter.Tk()实例隐藏 filename=tkinter.filedialog.askopenfilename(title=u‘请选择文件‘) # 选择打开什么文件,返回文件名 return filename def pyperClip(): filename=chooseFile() filehash=fileHash(filename) pyperclip.copy(filehash) print(filehash) if __name__ == "__main__": pyperClip()
以上是关于求文件的hash值(基于SHA3的Hash)的主要内容,如果未能解决你的问题,请参考以下文章