嘿伙计们,我想知道为这个 crypt 函数创建一个解密函数:
public static string CreateHash(string unHashed)
{
System.Security.Cryptography.MD5CryptoServiceProvider x = new System.Security.Cryptography.MD5CryptoServiceProvider();
byte[] data = System.Text.Encoding.ASCII.GetBytes(unHashed);
data = x.ComputeHash(data);
return System.Text.Encoding.ASCII.GetString(data);
}
有什么方法可以解密函数?
我得到的哈希值是:??????7hYkr?4??w