摘要: 1、hmac模块验证客户端合法性 1)demo 1 import hmac 2 3 # hmac模块使用演示 4 5 secret_key = b'hongsun' 6 content = b'hello python hmac' 7 h = hmac.new(secret_key,content) 阅读全文
posted @ 2019-12-20 22:35 四方游览 阅读(122) 评论(0) 推荐(0)