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

python,hashlib模块

时间:2017-10-11 23:47:03      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:sha1   stc   代码   code   hashlib模块   lib   分享   hashlib   har   

技术分享
# coding=utf-8

"""
hashlib模块
"""

import unittest
import hashlib
import chardet

class TestHashlib(unittest.TestCase):

    def test_md5(self):
        """MD5编码"""
        str1 = "中文str"
        md5 = hashlib.md5()
        md5.update(str1.encode(‘utf-8‘))
        res = md5.hexdigest()
        # e3b9e843ba20257d6cd3f85668fa7c56
        self.assertEqual(‘e3b9e843ba20257d6cd3f85668fa7c56‘, res)

    def test_sha1(self):
        """sha1编码"""
        str1 = "中文str"
        sha1 = hashlib.sha1()
        sha1.update(str1.encode(‘utf-8‘))
        res = sha1.hexdigest()
        # 8e92214d721a0fb3a8dd749c8801da2692fe5b97
        self.assertEqual(‘8e92214d721a0fb3a8dd749c8801da2692fe5b97‘, res)



if __name__ == ‘__main__‘:
    unittest.main()
技术分享

python,hashlib模块

标签:sha1   stc   代码   code   hashlib模块   lib   分享   hashlib   har   

原文地址:http://www.cnblogs.com/shitaotao/p/7653356.html

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