Rand Stats

Digest::HMAC

zef:jjmerelo

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.