perl中的hmac sha-256

前端之家收集整理的这篇文章主要介绍了perl中的hmac sha-256前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个 PHP代码的perl等价物是什么?

$hash = hash_hmac(‘sha256’,$all,$secret);

我尝试使用下面的代码但是徒劳无功.价值观是不同的.

use Digest::SHA;
             $sha = Digest::SHA->new('sha256');
             $sha->add($secret);
             $sha->add($all);
             $digest = $sha->hexdigest;

问候,
帕文

解决方法

由于我的问题得到了比我预期更多的观点,我决定回答它以帮助其他人解决同样的问题.我在PHP中发现了它的等价物.
use Digest::SHA qw(hmac_sha256_hex); 
$digest=hmac_sha256_hex($all,$secret);

希望能帮助到你.

原文链接:https://www.f2er.com/Perl/171969.html

猜你在找的Perl相关文章