gpt4 book ai didi

php - 相当于 oppenssl_* 函数中的 hash_hmac

转载 作者:搜寻专家 更新时间:2023-10-31 21:20:49 24 4
gpt4 key购买 nike

什么是等效的:

hash_hmac('sha256', 'data', 'key')

如果我使用的是 openssl_*?

openssl_digest 不接受 $key 参数。

最佳答案

此函数使用 openssl_* 扩展来散列数据和 key :

代码

function openssl_hmac($algo, $data, $key, $raw_output = false)
{
$algo = strtolower($algo);
$pack = 'H' . strlen(openssl_digest('test', $algo));
$size = 64;
$opad = str_repeat(chr(0x5C), $size);
$ipad = str_repeat(chr(0x36), $size);

if (strlen($key) > $size) {
$key = str_pad(pack($pack, $algo($key)), $size, chr(0x00));
} else {
$key = str_pad($key, $size, chr(0x00));
}

for ($i = 0; $i < strlen($key) - 1; $i++) {
$opad[$i] = $opad[$i] ^ $key[$i];
$ipad[$i] = $ipad[$i] ^ $key[$i];
}

$output = openssl_digest($opad . pack($pack, openssl_digest($ipad . $data, $algo)), $algo);

return ($raw_output) ? pack($pack, $output) : $output;
}

用法

echo openssl_hmac('sha256', 'data', 'key', false);

结果:

5031fe3d989c6d1537a013fa6e739da23463fdaec3b70137d828e36ace221bd0

结果与使用hash_hmac 函数时的结果相同:

echo hash_hmac('sha256', 'data', 'key');

结果:

5031fe3d989c6d1537a013fa6e739da23463fdaec3b70137d828e36ace221bd0

关于php - 相当于 oppenssl_* 函数中的 hash_hmac,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49367413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com