使用 HMAC 方法生成带有密钥的哈希值
hash_hmac ( string $algo , string $data , string $key [, bool $raw_output = false ] )
参数
¶
algo
data
要进行哈希运算的消息。
key
使用 HMAC 生成信息摘要时所使用的
密钥
。
raw_output
设置为 TRUE
输出原始
二进制
数据, 设置为 FALSE
输出小写 16 进制字符串。
python的
import hashlib
import hmac
hmac.
new
(
key
,
msg=None
,
digestmod=None
)
第一个参数:秘钥
2:数据
3:算法
hashlib.sha256,
hashlib.sha1
digest对应php的raw_output=TRUE
import base64
base64.b64encode(s)
base64.b64decode(aa)