使用 One way hash function 對字串作 hash 的動作

可以用 FormsAuthentication.HashPasswordForStoringInConfigFile 方法來作

string HashString = 
FormsAuthentication.HashPasswordForStoringInConfigFile(txtBeforeHash.Text, "MD5"); 
//可選用MD5 or SHA1
txtAfterHash.Text = HashString;

參考資料:

FormsAuthentication 方法
FormsAuthentication.HashPasswordForStoringInConfigFile 方法

posted @ 2012-06-01 12:13  yuanlin  阅读(416)  评论(2编辑  收藏  举报