利用如下函数可以将一字符串(data)转换成MD5的加密字符(result),但是我如何再将MD5的加密字符(result)转换成字符串(data)呢,即解密呢?谢谢!
使用加密服务提供程序 (CSP) 提供的实现计算输入数据的 MD5 哈希值
byte[] MD5hash (byte[] data)
{
// This is one implementation of the abstract class MD5.
MD5 md5 = new MD5CryptoServiceProvider();
byte[] result = md5.ComputeHash(data);
return result;
}