whoami7 - Manager
:
/
proc
/
self
/
root
/
home
/
kckglobal
/
public_html
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Hash
/
Hmac
/
Upload File:
files >> //proc/self/root/home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Hash/Hmac/hash.php
<?php declare(strict_types=1); namespace Psl\Hash\Hmac; use Psl\Hash; /** * Generate a keyed hash value using the HMAC method. * * @param non-empty-string $key * * @throws Hash\Exception\RuntimeException If unable to pump data into the hashing context. * * @pure */ function hash(string $data, Algorithm $algorithm, string $key): string { return Hash\Context::hmac($algorithm, $key)->update($data)->finalize(); }
Copyright ©2021 || Defacer Indonesia