当前位置:首页 > PHP教程 > php函数 > 列表

php中常用hash加密函数

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-19 16:47:12 浏览: 评论:0 

$hash_list=hash_algos();  //返回注册的hash规则列表

print_r($hash_list); //显示结果

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

输出哈希值信息:

  1. echo hash_file('md5''example.txt'); 
  2.  
  3. $str="the quick brown fox jumped over the lazy dog.";      //定义字符串 
  4. echo hash('ripemd160',$str);           //生成哈希值 
  5.  
  6. $ctx=hash_init('md5');          //初始化一个hash值 
  7. hash_update($ctx,'the quick brown fox');       //向哈希值灌注数据 
  8. hash_update($ctx,'jumped over the lazy dog.');      //向哈希值灌注数据 
  9. echo hash_final($ctx);          //输出最后的结果 
  10.  
  11. $str="the quick brown fox jumped over the lazy dog.";    //定义字符串 
  12. $fp=tmpfile();            //创建一个临时文件 
  13. fwrite($fp,$str);            //将字符串写入到临时文件 
  14. rewind($fp);            //倒回文件指针的位置 
  15. $ctx=hash_init('md5');          //初始化一个hash值 
  16. hash_update_stream($ctx,$fp);         //向数据流中灌注数据 
  17. echo hash_final($ctx);          //输出结果 
  18.  
  19.  
  20. $str="the quick brown fox jumped over the lazy dog.";    //定义字符串 
  21. echo hash_hmac('ripemd160',$str,'secret');      //生成包含密钥的hash值 
  22.  
  23. /*创建一个文件并将字符串写入其中*/ 
  24. $file="example.txt";          //定义文件名 
  25. $str=" the quick brown fox jumped over the lazy dog.";   //定义字符串 
  26. file_put_contents($file,$str);        //向文件中写入字符串 
  27. echo hash_hmac_file('md5',$file,'secret');      //生成一个包含密钥的hash值 
  28.  
  29. $ctx=hash_init('sha1');          //定义字符串 
  30. hash_update($ctx,'the quick brown fox jumped over the lazy dog.');  //向哈希值中灌注数据 
  31. echo hash_final($ctx);  //输出结果 
  32. //开源代码phpfensi.com

Tags: php加密函数 hash加密函数

分享到:

相关文章