摘要:
. 阅读全文
摘要:
1、无线迭代器 count()、cycle()、repeat() import itertools natuals=itertools.count(1) #从1开始无限叠加 for n in natuals: print(n) import itertools cs=itertools.cycle( 阅读全文
摘要:
import hmac message=b'hello,world' key=b'secret' h=hmac.new(key,message,digestmod='Md5') h.hexdigest() '5848a9dba4e9a6168887b0ee6cd03b69' 阅读全文
摘要:
摘要算法:通过函数把任意长度的数据转换为一个长度固定的数据串(16进制) MD5、SHA1 摘要算法就是通过摘要函数f()对任意长度的数据data计算出固定长度的摘要digest,目的是为了发现原始数据是否被人篡改过。 import hashlib md5=hashlib.md5() md5.upd 阅读全文