标签: php security hash
secret函数中的hash_hmac参数以及如何添加密钥?
secret
hash_hmac
例如:
$mac = hash_hmac('sha256', $cookie, SECRET_KEY);
来自https://stackoverflow.com/a/17266448/3578287
答案 0 :(得分:0)
字符串。这就是所谓的盐。它将与您想要散列的数据相结合,并使您的哈希变得更复杂(但并非不可能)。
$mac = hash_hmac('sha256', $cookie, 'sdKJ7_dghsJ5dj');