• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php中常用hash加密函数

php 搞代码 4年前 (2022-01-22) 17次浏览 已收录 0个评论

$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"; //定义、本文来源gao($daima.com搞@代@#码$网搞gaodaima代码文件名

$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); //输出结果

//开源代码phpfensi.com


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php中常用hash加密函数

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址