博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
py 文件hash
阅读量:5796 次
发布时间:2019-06-18

本文共 1025 字,大约阅读时间需要 3 分钟。

hot3.png

 

 

import hashlibimport os,sys def CalcSha1(filepath):    with open(filepath,'rb') as f:        sha1obj = hashlib.sha1()        sha1obj.update(f.read())        hash = sha1obj.hexdigest()        print(hash)        return hash def CalcMD5(filepath):    with open(filepath,'rb') as f:        md5obj = hashlib.md5()        md5obj.update(f.read())        hash = md5obj.hexdigest()        print(hash)        return hash         if __name__ == "__main__":    if len(sys.argv)==2 :        hashfile = sys.argv[1]        if not os.path.exists(hashfile):            hashfile = os.path.join(os.path.dirname(__file__),hashfile)            if not os.path.exists(hashfile):                print("cannot found file")            else                CalcMD5(hashfile)        else:                CalcMD5(hashfile)            #raw_input("pause")    else:        print("no filename")

 

1、文件二进打开。

2、对于MD5digest()==16位(bytes)

hexdigest()==32位(bytes),

Sha1的digest()==20位hash值

hexdigest()==40位(bytes)hash值

转载于:https://my.oschina.net/raddleoj/blog/1528344

你可能感兴趣的文章
多项式前k项和java_多项式朴素贝叶斯softmax改变
查看>>
XP 安装ORACLE
查看>>
我的友情链接
查看>>
基础,基础,还是基础之JAVA基础
查看>>
【348天】每日项目总结系列086(2018.01.19)
查看>>
【294天】我爱刷题系列053(2017.11.26)
查看>>
JAVA中循环删除list中元素的方法总结
查看>>
ChPlayer播放器的使用
查看>>
js 经过修改改良的全浏览器支持的软键盘,随机排列
查看>>
第十六章:脚本化HTTP
查看>>
L104
查看>>
被遗忘的CSS
查看>>
做完小程序项目、老板给我加了6k薪资~
查看>>
脱离“体验”和“安全”谈盈利的游戏运营 都是耍流氓
查看>>
ELK实战之logstash部署及基本语法
查看>>
TortoiseSVN中图标的含义
查看>>
Python version 2.7 required, which was not foun...
查看>>
[BZOJ] 1012 [JSOI2008]最大数maxnumber
查看>>
根据毫秒数计算出当前的“年/月/日/时/分/秒/星期”并不是件容易的事
查看>>
华为硬件工程师笔试题
查看>>