我正在c#asp.net中开发一个处理保留信息的应用程序。
出于这个原因,我做了一些研究,并在本教程中分别从c#中提出了两个加密和解密函数:
我已经确认存在解密出错的情况,例如
加密(" a808XXX")无法正常工作
加密(" A808XXX")正常工作
加密(" a631XXX")正常工作
加密(" A631XXX")无法正常工作
错误是:
base64无效字符
我尝试过应用替换语法但没有成功:
Request.QueryString["m"].ToString().Replace(" ", "+")
我的代码如下,如何解决这个问题?
请帮帮我,谢谢你。
public string Encrypt(string clearText)
{
string EncryptionKey = "MAKV2SPBNI99212";
byte[] clearBytes = Encoding.Unicode.GetBytes(clearText);
using (Aes encryptor = Aes.Create())
{
Rfc2898DeriveBytes pdb = new Rfc2898DeriveBytes(EncryptionKey, new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
encryptor.Key = pdb.GetBytes(32);
encryptor.IV = pdb.GetBytes(16);
using (MemoryStream ms = new MemoryStream())
{
using (CryptoStream cs = new CryptoStream(ms, encryptor.CreateEncryptor(), CryptoStreamMode.Write))
{
cs.Write(clearBytes, 0, clearBytes.Length);
cs.Close();
}
clearText = Convert.ToBase64String(ms.ToArray());
}
}
return clearText;
}
private string Decrypt(string cipherText)
{
string EncryptionKey = "MAKV2SPBNI99212";
byte[] cipherBytes = Convert.FromBase64String(cipherText);
using (Aes encryptor = Aes.Create())
{
Rfc2898DeriveBytes pdb = new Rfc2898DeriveBytes(EncryptionKey, new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
encryptor.Key = pdb.GetBytes(32);
encryptor.IV = pdb.GetBytes(16);
using (MemoryStream ms = new MemoryStream())
{
using (CryptoStream cs = new CryptoStream(ms, encryptor.CreateDecryptor(), CryptoStreamMode.Write))
{
cs.Write(cipherBytes, 0, cipherBytes.Length);
cs.Close();
}
cipherText = Encoding.Unicode.GetString(ms.ToArray());
}
}
return cipherText;
}
答案 0 :(得分:1)
错误消息:“base64 invalid characters”已清除。
调试:找到错误,发生错误,修复错误。不要只是开始尝试。
在加密后立即打印Base64字符串,并在解密之前再次打印。
比较寻找差异/腐败。
验证两个Base64字符串是否仅包含有效字符“A-Za-z / +”以及可能包含一个或两个尾随“=”字符。
如果Base64字符串是查询字符串的一部分,则可能需要对其进行URL编码。
答案 1 :(得分:0)
您必须至少更换字符+和/.
尝试类似
的内容.Replace("+", "-").Replace("/", "_");
显然,在解密之前你必须做相反的事情。