我想知道是否有一种解密方法。
我正在尝试查找密码学。 SHA1属性,希望有一个解密方法,但是没有这种运气。
任何人都可以协助完成解密方法吗?
public string Encode(string value)
{
var hash = System.Security.Cryptography.SHA1.Create();
var encoder = new System.Text.ASCIIEncoding();
var combined = encoder.GetBytes(value ?? "");
return BitConverter.ToString(hash.ComputeHash(combined)).ToLower().Replace("-", "");
}