gpt4 book ai didi

c# - 有时 C# 中的 Base 64 无效字符

转载 作者:太空宇宙 更新时间:2023-11-03 12:50:33 26 4
gpt4 key购买 nike

我正在用 c# asp.net 开发一个处理保留信息的应用程序。

出于这个原因,我做了一些研究,并在本教程中分别从 c# 中提出了以下两个用于加密和解密的函数:

http://www.aspsnippets.com/Articles/AES-Encryption-Decryption-Cryptography-Tutorial-with-example-in-ASPNet-using-C-and-VBNet.aspx

我已经验证了有解密出错的情况,例如

Encrypt("a808XXX") not working

Encrypt("A808XXX") working

Encrypt("a631XXX") working

Encrypt("A631XXX") not working

错误是:

base64 invalid characters

我试过应用替换语法但没有成功:

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

最佳答案

错误信息:“base64 invalid characters”很清楚。

调试:找到错误,在错误发生的地方修复错误。不要只是开始尝试。

在加密之后和解密之前再次打印 Base64 字符串。

比较寻找差异/损坏。

验证两个 Base64 字符串是否仅包含有效字符“A-Za-z/+”以及可能的一两个尾随“=”字符。

如果 Base64 字符串是查询字符串的一部分,您可能需要对其进行 URL 编码。

关于c# - 有时 C# 中的 Base 64 无效字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35723859/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com