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

可以用 FormsAuthentication.HashPasswordForStoringInConfigFile 方法來作

可以用 FormsAuthentication.HashPasswordForStoringInConfigFile 方法來作


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

參考資料:

FormsAuthentication 方法
FormsAuthentication.HashPasswordForStoringInConfigFile 方法