Help language development. Donate to The Perl Foundation

Digest::HMAC zef:jjmerelo last updated on 2023-01-20

d3ac52c281bb0e70d0d02596efa3b087837b709b/

Raku-Digest-HMAC

Fork from @retupmoca's original fixing some installation errors.

Example Usage

use Digest::HMAC;
use Digest;

my Buf $hmac = hmac($key, $data, &md5);
my Str $hmac = hmac-hex($key, $data, &md5);

Functions

See also

Since version 0.28, Digest also implements the HMAC algorithm, along with many others. You can use that one for a more complete range of digest methods.