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加密函数[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |