(轉載)python一句話校驗檔案雜湊值

z奶油麵包發表於2018-02-28

原文,原創作者: 餘弦 懶人在思考

懶人在思考 微訊號 lazy-thought 功能介紹 本懶號主要關注點:隱私、攻擊、安全開發。從我們這,你至少可以知道當下黑客世界的另類視角。By 餘弦@LanT34m

感謝原作者分享學習知識。

注:本文不接受任何打賞,如果您對本文想支援,請轉到原作者的文章下進行打賞,本文僅轉載,用以學習筆記。非本人原創。

MD5

python -c "import hashlib,sys;print hashlib.md5(open(sys.argv[1],`rb`).read()).hexdigest()" 檔名

SHA-1

python -c "import hashlib,sys;print hashlib.sha1(open(sys.argv[1],`rb`).read()).hexdigest()" 檔名

SHA-256

python -c "import hashlib,sys;print hashlib.sha256(open(sys.argv[1],`rb`).read()).hexdigest()" 檔名

SHA-512

python -c "import hashlib,sys;print hashlib.sha512(open(sys.argv[1],`rb`).read()).hexdigest()" 檔名


相關文章