这是一段解密的代码,谁能写出来解密的代码?C#
这是一段解密的代码,谁能写出来解密的代码?C#
日期:2014-03-21 16:06:19 人气:1
没细看加密的代码,不过注释上写的是 RC2,如果代码写的对(挂羊头卖狗肉不关我事),那么解密算法是:
public static string RC2Decrypt(string DecryptString, string DecryptKey){ // DecryptString 要解密的密文 // DecryptKey 密钥 if (string.IsNullOrEmpty(DecryptString)) { throw (new Exception(&qu