Example of a simple method to calculate the MD5 value of a file in Python

不言
Release: 2018-04-14 16:05:52
Original
2312 people have browsed it

This article mainly introduces Python's simple method of calculating the MD5 value of a file, involving Python file reading, hash operation and md5 encryption and other related operating skills. Friends in need can refer to the following

This article describes the examples Python simple method to calculate the MD5 value of a file. Share it with everyone for your reference, the details are as follows:

一码

##

import sys
import hashlib
import os.path
filename = sys.argv[1]
if os.path.isfile(filename):
  fp=open(filename,'rb')
  contents=fp.read()
  fp.close()
  print(hashlib.md5(contents).hexdigest())
else:
  print('file not exists')
Copy after login

Second running results

E:\python\python can be learned in this way\Chapter 18 Cryptozoology Programming\code>echo hello world> text.txt

E:\python\python can be learned in this way\Chapter 18 Cryptographic Programming\code>type text.txt
hello world
E:\python\python can be learned in this way\Chapter 18 Cryptographic Programming \code>python CheckMD5OfFile.py text.txt
d1b9c5009a6ddd7dacb45eddb78fa23a
E:\python\python can be learned like this\Chapter 18 Cryptozoology Programming\code>echo hello world1 > text.txt
E:\ python\python can be learned like this\Chapter 18 Cryptographic Programming\code>python CheckMD5OfFile.py text.txt
bed8e00c12f6f2ae01f1d368b7072ac1



##

The above is the detailed content of Example of a simple method to calculate the MD5 value of a file in Python. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!