Python生成MD5值的两种方法实例分析

时间:2021-10-19 04:02:35

本文实例讲述了python生成md5值的两种方法。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
# -*- coding:utf-8 -*-
import datetime
# no.1 使用md5
import md5
src = 'this is a md5 test.'
m1 = md5.new()
m1.update(src)
print m1.hexdigest()

运行结果:

174b086fc6358db6154bd951a8947837

?
1
2
3
4
5
6
7
# -*- coding:utf-8 -*-
# no.2 使用hashlib
import hashlib
src = 'this is a md5 test.'
m2 = hashlib.md5()
m2.update(src)
print m2.hexdigest()

运行结果:

174b086fc6358db6154bd951a8947837

对于同一个字符串而言,使用md5和使用hashlib生成的md5值是一样的

以下是使用file+时间戳生成一个唯一的md5值

?
1
2
3
4
5
6
7
8
# -*- coding:utf-8 -*-
import md5
import time
now = 'file'+str(time.time())
print now,type(now)
m0 = md5.new()
m0.update(now)
print m0.hexdigest()

运行结果:

file1556241051.38 <type 'str'>
efdc1e1d6bbe949afb2cd0250d0244d2

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
############### 封装成函数 ###############################
# -*- coding:utf-8 -*-
import time
import hashlib
src = 'file'+str(time.time())
print src,type(src)
m2 = hashlib.md5()
m2.update(src)
file_id = m2.hexdigest()
print file_id,type(file_id)
def make_file_id(src):
  m1 = hashlib.md5()
  m1.update(src)
  return m1.hexdigest()
src = 'filed_46546546464631361sdfsdfgsdgfsdgdsgfsd'+str(time.time())
print make_file_id(src)

运行结果:

file1556241114.08 <type 'str'>
4d826f2298853d5f5ae209d6bf754b62 <type 'str'>
e6c5ad9dd0fa4f3d141f94b7c990710e

ps:关于加密解密感兴趣的朋友还可以参考本站在线工具:

文字在线加密解密工具(包含aes、des、rc4等):https://tool.zzvips.com/t/aesdes/

md5在线加密工具:https://tool.zzvips.com/t/md5/

在线sha1/sha224/sha256/sha384/sha512加密工具:https://tool.zzvips.com/t/sha/

希望本文所述对大家python程序设计有所帮助。

原文链接:https://blog.csdn.net/xuezhangjun0121/article/details/82145353