Hash密碼加密函式

2021-04-01 15:20:54 字數 564 閱讀 9363

function tlogin_form.hash_password(password: string): string; //it must incloud unit dcpcrypt2 and dcpsha1

var i: integer;

str1,str2: string;

hash: tdcp_sha1;

digest: array[0..19] of byte;

begin

str1:=password;

hash := tdcp_sha1.create(self); // create the hash

hash.init; // initialize it

hash.updatestr(str1); // hash the stream contents

hash.final(digest); // produce the digest

for i := 0 to 19 do

str2 := str2 + inttohex(digest[i], 2);

result:=str2;

end;

php常用hash加密函式

複製 如下 hash list hash algos 返回註冊的hash規則列表 print r hash list 顯程式設計客棧示結果 建立檔案以計算雜湊值 file put contents example.txt the quick brown fox jumped over the laz...

MYSQL密碼加密函式的實際用途

在新增一條資料庫記錄時,有時候密碼需要加密儲存,此時我們採用mysql自帶的加密演算法 password yourpassword 經過此函式後就可以將密碼加密後儲存在資料庫.在修改密碼時同樣會用到這樣的函式.先將新輸入的密碼字串,經過此函式加密碼後,再與從資料庫取出的密碼作比較,這樣才能保證相匹配...

php提供的使用者密碼加密函式

在實際專案中,對使用者的密碼加密基本上採用的 md5加鹽的方式,php5.5後提供了一個加密函式,不需要手動加鹽,不需要去維護鹽值,str 123456 pwd password hash str,password default echo pwd if password verify 123456...

php加密函式

計應134 實驗班 周露玲 php中能對資料進行加密的函式只要有crypt md5 和shal 還有加密擴充套件庫mcrypt和mash。crypt 函式 crypt 函式可以完成單向加密功能,語法如下 string crypt string str string salt crypt 接受兩個引數...

PHP加密函式

1.使用crypt 函式進行加密 string crypt string str string salt 其中,str引數是需要加密的字串,salt引數為加密時使用的干擾串。如果省略掉第二個引數,則會隨機生成一個干擾串。2.使用md5 函式進行加密 string md5 string str boo...