本文实例讲述了php常用hash加密函数。分享给大家供大家参考。具体分析如下:
$hash_list=hash_algos(); //返回注册的hash规则列表</p><p>print_r($hash_list); //显示结果
创建文件以计算哈希值:file_put_contents(‘example.txt’, ‘the quick brown fox jumped over the lazy dog.’);
输出哈希值信息:
echo hash_file('md5', 'example.txt'); <br /> <br />$str="the quick brown fox jumped over the lazy dog."; //定义字符串 <br />echo hash('ripemd160',$str); //生成哈希值 <br /> <br />$ctx=hash_init('md5'); //初始化一个hash值 <br />hash_update($ctx,'the quick brown fox'); //向哈希值灌注数据 <br />hash_update($ctx,'jumped over the lazy dog.'); //向哈希值灌注数据 <br />echo hash_final($ctx); //输出最后的结果 <br /> <br />$str="the quick brown fox jumped over the lazy dog."; //定义字符串 <br />$fp=tmpfile(); //创建一个临时文件 <br />fwrite($fp,$str); //将字符串写入到临时文件 <br />rewind($fp); //倒回文件指针的位置 <br />$ctx=hash_init('md5'); //初始化一个hash值 <br />hash_update_stream($ctx,$fp); //向数据流中灌注数据 <br />ec<p style="color:transparent">。本文来源gao!%daima.com搞$代*!码网1</p><cite>搞代gaodaima码</cite>ho hash_final($ctx); //输出结果 <br /> <br /> <br />$str="the quick brown fox jumped over the lazy dog."; //定义字符串 <br />echo hash_hmac('ripemd160',$str,'secret'); //生成包含密钥的hash值 <br /> <br />/*创建一个文件并将字符串写入其中*/ <br />$file="example.txt"; //定义文件名 <br />$str=" the quick brown fox jumped over the lazy dog."; //定义字符串 <br />file_put_contents($file,$str); //向文件中写入字符串 <br />echo hash_hmac_file('md5',$file,'secret'); //生成一个包含密钥的hash值 <br /> <br />$ctx=hash_init('sha1'); //定义字符串 <br />hash_update($ctx,'the quick brown fox jumped over the lazy dog.'); //向哈希值中灌注数据 <br />echo hash_final($ctx); //输出结果
希望本文所述对大家的PHP程序设计有所帮助。