Python hashlib模块,pythonhashlib模块,hashlib是个专门提
Python hashlib模块,pythonhashlib模块,hashlib是个专门提
hashlib是个专门提供hash算法的库,现在里面包括md5, sha1, sha224, sha256, sha384,sha512,使用非常简单、方便。 md5经常用来做用户密码的存储。而sha1则经常用作数字签名。
#-*- encoding:gb2312 -*-import hashliba = "a test string"print hashlib.md5(a).hexdigest()print hashlib.sha1(a).hexdigest()print hashlib.sha224(a).hexdigest()print hashlib.sha256(a).hexdigest()print hashlib.sha384(a).hexdigest()print hashlib.sha512(a).hexdigest()#该片段来自于http://byrx.net
相关内容
- Python 动态规划算法,计算单词距离,python算法,#!/usr/bi
- scrapy 在不同的抓取级别的Request之间传递参数的办法,
- python通过xlrd模块读写Excel文件,pythonxlrd,一、安装xlrd模
- python标准算法实现数组全排列代码,python标准算法数组
- 查看所输入年月的日历,查看年月日历,#coding:utf-
- python通过luhn算法实现的信用卡卡号验证代码,pythonlu
- Python 把金额小写转换成大写,python小写,def IIf( b,
- 使用 ensureBuffer 快速填充数组,ensurebuffer数组,import ch
- python根据域名获得ip地址,python域名ip,def getIp(do
- Python Flask框架中同时上传多个文件的详细代码演示,
评论关闭