C# SHA1+BASE64
C# SHA1+BASE64
資料來源: https://dotblogs.com.tw/mrsunboss/2013/04/07/99955#SHA1
SHA1 sha1 = new SHA1CryptoServiceProvider();//建立一個SHA1
byte[] source = Encoding.Default.GetBytes(input.Text);//將字串轉為Byte[]
byte[] crypto = sha1.ComputeHash(source);//進行SHA1加密
string result = Convert.ToBase64String(crypto);//把加密後的字串從Byte[]轉為字串
Response.Write(“SHA1加密: ” + result);//輸出結果