forked from kokonior/PHP-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create generate hash with hmac method.php
Generate key hash dengan metode HMAC ditambah garem
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
// Generate key hash dengan metode HMAC ditambah garem | ||
|
||
function gen_hmac($txt_enkrip, $garem = '', $algorithm = 'md5') | ||
{ | ||
$algorithm = strtolower($algorithm); | ||
$algorithm_list = array('md2', 'md4', 'md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512/224', 'sha512/256', 'sha512', 'sha3-224', 'sha3-256', 'sha3-384', 'sha3-512', 'ripemd128', 'ripemd160', 'ripemd256', 'ripemd320', 'whirlpool', 'tiger128,3', 'tiger160,3', 'tiger192,3', 'tiger128,4', 'tiger160,4', 'tiger192,4', 'snefru', 'snefru256', 'gost', 'gost-crypto', 'haval128,3', 'haval160,3', 'haval192,3', 'haval224,3', 'haval256,3', 'haval128,4', 'haval160,4', 'haval192,4', 'haval224,4', 'haval256,4', 'haval128,5', 'haval160,5', 'haval192,5', 'haval224,5', 'haval256,5'); | ||
|
||
if (in_array($algorithm, $algorithm_list)) | ||
{ | ||
return hash_hmac($algorithm, $txt_enkrip, $garem); | ||
} | ||
else | ||
{ | ||
return false; | ||
} | ||
} | ||
|
||
echo gen_hmac('bye world!', 'kidding', 'sha1'); |