破解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;
        }

 

做一个解密程序.

 

posted @ 2012-01-12 10:14  迅捷网络[来送福利]  阅读(1138)  评论(3编辑  收藏  举报