0
私のWebページのQueryStringにIDを渡したいと思っています。訪問者に数字を見せたくないので、RijndaelManagedアルゴリズムを使ってエンコードしています。ダブルエスケープシーケンスエラーの原因となる '+'などの文字。 暗号出力から一部の文字を除外する方法があるのだろうかと思っていました。C#のダブルエスケープシーケンスとRijndael Managed暗号化
私の暗号化コードは以下の通りです:
public static string Encrypt(string plainText)
{
byte[] plainTextBytes = Encoding.UTF8.GetBytes(plainText);
byte[] keyBytes = new Rfc2898DeriveBytes(PasswordHash, Encoding.ASCII.GetBytes(SaltKey)).GetBytes(256/8);
var symmetricKey = new RijndaelManaged() { Mode = CipherMode.CBC, Padding = PaddingMode.Zeros };
var encryptor = symmetricKey.CreateEncryptor(keyBytes, Encoding.ASCII.GetBytes(VIKey));
byte[] cipherTextBytes;
using (var memoryStream = new MemoryStream())
{
using (var cryptoStream = new CryptoStream(memoryStream, encryptor, CryptoStreamMode.Write))
{
cryptoStream.Write(plainTextBytes, 0, plainTextBytes.Length);
cryptoStream.FlushFinalBlock();
cipherTextBytes = memoryStream.ToArray();
cryptoStream.Close();
}
memoryStream.Close();
}
return Convert.ToBase64String(cipherTextBytes);
}
私はURLエンコーディングを行いますが、Webサーバーはそれを+ –