-4
公共類使用SecurityModule1 {這alorithm的類型在這個
public string CreateHash(string strSource)
{
byte[] bytHash;
UnicodeEncoding uEncode = new System.Text.UnicodeEncoding();
byte[] bytSource = uEncode.GetBytes(strSource);
SHA1CryptoServiceProvider sha1 = new SHA1CryptoServiceProvider();
bytHash = sha1.ComputeHash(bytSource);
return Convert.ToBase64String(bytHash);
}
}
ü可以解釋我的算法是這樣的安全模塊中使用有關算法
SHA1? http://en.wikipedia.org/wiki/SHA-1 – 2014-09-23 15:48:04
這是一種將字符串編碼爲SHA1格式的方法... – 2014-09-23 15:49:02
它有三件事。將字符串編碼爲unicode,計算其SHA1散列值,並返回SHA1散列的基數64表示形式。 – 2014-09-23 15:51:58