高手请:这个算法是什么算法呢?它是可逆加密法吗?逆算法又是怎样写呢?
public static String Encrypt(string password)
{
Byte[] clearBytes = new UnicodeEncoding().GetBytes(password);
Byte[] hashedBytes = ((HashAlgorithm) CryptoConfig.CreateFromName( "MD5 ")).ComputeHash(clearBytes);
return BitConverter.ToString(hashedBytes);
}
//这个算法是什么算法呢??它是可逆加密法吗?逆算法又是怎样写呢??
------解决方案--------------------MD5,不可以逆。
------解决方案--------------------在你另一个贴子里 秋枫不是已经给了参考哦
你到底看没看讷??