こんにちは、この暗号関数の復号化関数を作成する方法を知りたかったのです。
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