破解hash算法.高手请进,求解.
public static string MD5(string str)
{
byte[] array = Encoding.UTF8.GetBytes(str);
array = new MD5CryptoServiceProvider().ComputeHash(array);
string text = "";
for (int i = 0; i < array.Length; i++)
{
text += array[i].ToString("x").PadLeft(2, '0');
}
return text;
}
{
byte[] array = Encoding.UTF8.GetBytes(str);
array = new MD5CryptoServiceProvider().ComputeHash(array);
string text = "";
for (int i = 0; i < array.Length; i++)
{
text += array[i].ToString("x").PadLeft(2, '0');
}
return text;
}
做一个解密程序.
少侠,我看你气度不凡天赋异禀,骨骼精奇,这么帅,来了就帮推荐一把吧
我的最近更新