首頁  >  文章  >  後端開發  >  php中常用hash加密函數

php中常用hash加密函數

高洛峰
高洛峰原創
2016-11-29 13:34:471387瀏覽

$hash_list=hash_algos();  //傳回已註冊的hash規則清單

print_r($hash_list); //顯示結果

建立檔案以計算雜湊值:file_put_contents('example.txt', 'thethe stxt', 'thethe fox jumped over the lazy dog.');

輸出雜湊值資訊:

echo hash_file('md5', 'example.txt'); 

 

]$mample.txt'); 

 

. dog.";      //定義字串 

echo hash('ripemd160',$str);                 //初始化一個hash值 

hash_update($ctx,'the quick brown fox');       //灌注資料給雜項灌注資料 

hash_update($ctx,'jumped over the lazy mam.'); hash_final ($ctx);          //輸出最後的結果 

 

$str="the quick brown fox jumped over the lazy quick brown fox jumped over the lazy quick brown fox jumped .            //創造一個臨時文件 

fwrite($fp,$str);            //將字串寫入臨時檔案 

rew ash_init('md5'); //初始化一個hash值 

hash_update_stream($ctx,$fp);         //向資料流中灌注資料 

echo  

 

$str="the quick brown fox jumped over the lazy dog.";    //定義字串 

echo hash_hmac('ripemd160',$str,'secret'); hash_hmac('ripemd160',$str,'secret'); hash_hmac('ripemd160',$str,'secret'); hash_hmac('ripemd160',$str,'secret'); 一個文件並將字串寫入其中*/ 

$file="example.txt";          //定義檔名 

$str=" the file_put_contents($file,$str);        //在檔案中寫入字串 

echo hash_hmac_file('md5',$file,'secret ctx=hash_init('sha1');          //定義字串 

hash_update($ctx,'the quick brown   hash_final($ ctx);  //輸出結果 

//開源程式碼phpfensi.com

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn