gongzhonghao.png
扫码关注我们
最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

php hash加密函数示例代码

来源:http://erdangjiade.com/topic/1711.html 你好,世界。 2017-09-25 22:42浏览(16)

哈希(Hash)是将目标文本转换成具有相同长度的、不可逆的杂凑字符串(或叫做消息摘要),而加密(Encrypt)是将目标文本转换成具有不同长度的、可逆的密文。这篇文章主要介绍了php常用hash加密函数,以实例形式详细分析了PHP的hash加密函数用法,代码中备有详尽的注释,便于理解,需要的朋友可以参考下,具体分析如下:

$hash_list=hash_algos();  //返回注册的hash规则列表
print_r($hash_list); //显示结果

创建文件以计算哈希值:file_put_contents('example.txt', 'the quick brown fox jumped over the lazy dog.');

输出哈希值信息:

echo hash_file('md5', 'example.txt'); 
 
$str="the quick brown fox jumped over the lazy dog.";      //定义字符串 
echo hash('ripemd160',$str);           //生成哈希值 
 
$ctx=hash_init('md5');          //初始化一个hash值 
hash_update
($ctx,'the quick brown fox');       //向哈希值灌注数据 
hash_update($ctx,'jumped over the lazy dog.');      //向哈希值灌注数据 
echo 
hash_final
($ctx);          //输出最后的结果 
 
$str="the quick brown fox jumped over the lazy dog.";    //定义字符串 
$fp=tmpfile();            //创建一个临时文件 
fwrite($fp,$str);            //将字符串写入到临时文件 
rewind($fp);            //倒回文件指针的位置 
$ctx=hash_init('md5');          //初始化一个hash值 
hash_update_stream
($ctx,$fp);         //向数据流中灌注数据 
echo hash_final($ctx);          //输出结果 
 
 
$str="the quick brown fox jumped over the lazy dog.";    //定义字符串 
echo hash_hmac('ripemd160',$str,'secret');      //生成包含密钥的hash值 
 
/*创建一个文件并将字符串写入其中*/ 
$file="example.txt";          //定义文件名 
$str=" the quick brown fox jumped over the lazy dog.";   //定义字符串 
file_put_contents($file,$str);        //向文件中写入字符串 
echo 
hash_hmac_file
('md5',$file,'secret');      //生成一个包含密钥的hash值 
 
$ctx=hash_init('sha1');          //定义字符串 
hash_update($ctx,'the quick brown fox jumped over the lazy dog.');  //向哈希值中灌注数据 
echo hash_final($ctx);  //输出结果

以上就是php hash加密函数示例代码的详细内容,更多请关注二当家的素材网其它相关文章!

评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2