码迷,mamicode.com
首页 > 编程语言 > 详细

Python两种方法计算MD5值

时间:2015-06-06 21:58:34      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

1.Python内置md5模块

 1 #-*- coding:utf-8 -*-
 2 
 3 import md5
 4 
 5 def Str2Md5(s):
 6     m=md5.new()
 7     m.update(s)
 8     return m.hexdigest()
 9 
10 if __name__=="__main__":
11     s="www.baidu.com"
12     print Str2Md5(s)

2.Python的hashlib模块

 1 #-*- coding:utf-8 -*-
 2 
 3 import hashlib
 4 
 5 def Str2Md5(s):
 6     m=hashlib.md5()
 7     m.update(s)
 8     return m.hexdigest()
 9 
10 if __name__=="__main__":
11     s="www.baidu.com"
12     print Str2Md5(s)

 

Python两种方法计算MD5值

标签:

原文地址:http://www.cnblogs.com/acode/p/4557351.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!