Php/docs/mhash.examples

提供:Dev Guides
< Php
2020年12月14日 (月) 09:45時点におけるNotes (トーク | 投稿記録)による版 (autoload)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

例1 MD5 ダイジェストと hmac を計算し、16 進数で出力する

<?php$input = "what do ya want for nothing?";$hash = mhash(MHASH_MD5, $input);echo "The hash is " . bin2hex($hash) . "<br />\n";$hash = mhash(MHASH_MD5, $input, "Jefe");echo "The hmac is " . bin2hex($hash) . "<br />\n";?>

上の例の出力は以下となります。


The hash is d03cb659cbf9192dcd066272249f8412 
The hmac is 750c783e6ab0b503eaa86e310a5db738