J'ai regardé en ligne pour que cette exception signifie que par rapport à mon programme mais n'arrive pas à trouver une solution, ou la raison pour laquelle il n'arrive à mon programme spécifique. J'ai été en utilisant l'exemple de mon msdn pour le chiffrement et le déchiffrement d'un xmldocument à l'aide de l'algorithme de rijndael. Le cryptage fonctionne bien, mais lorsque je tente de déchiffrer, j'obtiens l'exception suivante: rembourrage est pas valide et ne peut pas être supprimé?
Quelqu'un peut me dire ce que je peux faire pour résoudre ce problème s'il vous plaît. Je suis à cours de ressources. Je n'arrive pas à trouver la réponse nulle part. Mon code ci-dessous où j'ai reçu la clé, etc, et si le cryptoMode est faux il va appeler le déchiffrer méthode, qui est l'endroit où l'exception se produit:
public void Cryptography(XmlDocument doc, bool cryptographyMode)
{
RijndaelManaged key = null;
try
{
// Create a new Rijndael key.
key = new RijndaelManaged();
const string passwordBytes = "Password1234"; //password here
byte[] saltBytes = Encoding.UTF8.GetBytes("SaltBytes");
Rfc2898DeriveBytes p = new Rfc2898DeriveBytes(passwordBytes, saltBytes);
// sizes are devided by 8 because [ 1 byte = 8 bits ]
key.IV = p.GetBytes(key.BlockSize/8);
key.Key = p.GetBytes(key.KeySize/8);
if (cryptographyMode)
{
Ecrypt(doc, "Content", key);
}
else
{
Decrypt(doc, key);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
// Clear the key.
if (key != null)
{
key.Clear();
}
}
}
private void Decrypt(XmlDocument doc, SymmetricAlgorithm alg)
{
// Check the arguments.
if (doc == null)
throw new ArgumentNullException("Doc");
if (alg == null)
throw new ArgumentNullException("alg");
// Find the EncryptedData element in the XmlDocument.
XmlElement encryptedElement = doc.GetElementsByTagName("EncryptedData")[0] as XmlElement;
// If the EncryptedData element was not found, throw an exception.
if (encryptedElement == null)
{
throw new XmlException("The EncryptedData element was not found.");
}
// Create an EncryptedData object and populate it.
EncryptedData edElement = new EncryptedData();
edElement.LoadXml(encryptedElement);
// Create a new EncryptedXml object.
EncryptedXml exml = new EncryptedXml();
// Decrypt the element using the symmetric key.
byte[] rgbOutput = exml.DecryptData(edElement, alg); <---- I GET THE EXCEPTION HERE
// Replace the encryptedData element with the plaintext XML element.
exml.ReplaceData(encryptedElement, rgbOutput);
}