本文实例讲述了Python常见加密模块用法。分享给大家供大家参考,具体如下:
[b]1. md5模块[/b]
[code]md5.new([arg])[/code] 返回一个md5对象,如果给出参数,则相当于调用了update(arg)
[code]md5.update(arg)[/code] 用string参数arg更新md5对象
[code]md5.digest()[/code] 返回16字节的摘要,由传给update的string生成,摘要没有ascii字符
[code]md5.hexdigest()[/code] 以16进制的形式返回摘要
import md5
a = md5.new('passwd')
a.digest()
'v\xa2\x17;\xe692T\xe7/\xfaMm\xf1\x03\n'
a.hexdigest()
'76a2173be6393254e72ffa4d6df1030a'
a.update('hello world')
a.digest()
'\xb2\x83f\xb8\x14\xc9\xc6\x19k\x01\xfe\xd8\xd9\x8f\xe0H'
a.hexdigest()
'b28366b814c9c6196b01fed8d98fe048'
[b]2.sha 模块[/b]
用法同md5一样
import sha
b=sha.new('passwd')
b.digest()
"0'LG\x90;\xd1\xba\xc7c;\xbf\tt1I\xeb\xab\x80_"
b.hexdigest()
'30274c47903bd1bac7633bbf09743149ebab805f'
b.update('hello')
b.digest()
'c\xc19\xb4]YGz\x85\xe8C\x8fF\xfe\x9e\xc3|\xb16\xba'
b.hexdigest()
'63c139b45d59477a85e8438f46fe9ec37cb136ba
[b]3.crypt[/b]
crypt模块中就一个函数,crypt(str,salt) --> string
from crypt import crypt
crypt('passwd','a')
'aaIslqfNH03LA'
crypt('passwd','abc')
'ab8RogIKnX0og'
crypt('passwd','a')
'aaIslqfNH03LA'
[b]PS:关于加密解密感兴趣的朋友还可以参考本站在线工具:[/b]
[b]文字在线加密解密工具(包含AES、DES、RC4等):
[/b][url=http://tools.jb51.net/password/txt_encode]http://tools.jb51.net/password/txt_encode[/url]
[b]MD5在线加密工具:
[/b][url=http://tools.jb51.net/password/CreateMD5Password]http://tools.jb51.net/password/CreateMD5Password[/url]
[b]在线散列/哈希算法加密工具:
[/b][url=http://tools.jb51.net/password/hash_encrypt]http://tools.jb51.net/password/hash_encrypt[/url]
[b]在线MD5/hash/SHA-1/SHA-2/SHA-256/SHA-512/SHA-3/RIPEMD-160加密工具:
[/b][url=http://tools.jb51.net/password/hash_md5_sha]http://tools.jb51.net/password/hash_md5_sha[/url]
[b]在线sha1/sha224/sha256/sha384/sha512加密工具:
[/b][url=http://tools.jb51.net/password/sha_encode]http://tools.jb51.net/password/sha_encode[/url]
更多关于Python相关内容感兴趣的读者可查看本站专题:《[url=http://www.1sucai.cn/Special/946.htm]Python加密解密算法与技巧总结[/url]》、《[url=http://www.1sucai.cn/Special/788.htm]Python编码操作技巧总结[/url]》、《[url=http://www.1sucai.cn/Special/663.htm]Python数据结构与算法教程[/url]》、《[url=http://www.1sucai.cn/Special/642.htm]Python函数使用技巧总结[/url]》、《[url=http://www.1sucai.cn/Special/636.htm]Python字符串操作技巧汇总[/url]》及《[url=http://www.1sucai.cn/Special/520.htm]Python入门与进阶经典教程[/url]》
希望本文所述对大家Python程序设计有所帮助。