填充无效,AesManaged加密解密
Padding is invalid, AesManaged Encrypt and Decrypt
我遇到了一个奇怪的问题,因为只有某些时候我得到了执行
Padding is invalid and cannot be removed.
为什么我得到它?它是 Windows Phone 8.0 项目。我已经搜索并发现我应该添加这个
aesManaged.Padding = PaddingMode.None
但它是 WP8,没有 PaddingMode。
public LoginView()
{
this.InitializeComponent();
try
{
string original = "Here is some data to encrypt!";
AesManaged myAes = new AesManaged();
byte[] encrypted = EncryptStringToBytes_Aes(original, myAes.Key, myAes.IV);
Console.WriteLine("Original: {0}", original);
var str = System.Text.Encoding.Unicode.GetString(encrypted,0,encrypted.Length);
var str1 = System.Text.Encoding.Unicode.GetBytes(str);
AesManaged myAes1 = new AesManaged();
myAes1.Key = myAes.Key;
myAes1.IV = myAes.IV;
myAes.Clear();
string roundtrip = DecryptStringFromBytes_Aes(str1, myAes1.Key, myAes1.IV); // HERE IS EXCEPTION
Console.WriteLine("Round Trip: {0}", roundtrip);
}
catch (Exception e)
{
Console.WriteLine("Error: {0}", e.Message);
}
}
static byte[] EncryptStringToBytes_Aes(string plainText, byte[] Key, byte[] IV)
{
// Check arguments.
if (plainText == null || plainText.Length <= 0)
throw new ArgumentNullException("plainText");
if (Key == null || Key.Length <= 0)
throw new ArgumentNullException("Key");
if (IV == null || IV.Length <= 0)
throw new ArgumentNullException("Key");
byte[] encrypted;
// Create an AesManaged object
// with the specified key and IV.
using (AesManaged aesAlg = new AesManaged())
{
aesAlg.Key = Key;
aesAlg.IV = IV;
// Create a decrytor to perform the stream transform.
ICryptoTransform encryptor = aesAlg.CreateEncryptor(aesAlg.Key, aesAlg.IV);
// Create the streams used for encryption.
using (MemoryStream msEncrypt = new MemoryStream())
{
using (CryptoStream csEncrypt = new CryptoStream(msEncrypt, encryptor, CryptoStreamMode.Write))
{
using (StreamWriter swEncrypt = new StreamWriter(csEncrypt))
{
//Write all data to the stream.
swEncrypt.Write(plainText);
}
encrypted = msEncrypt.ToArray();
}
}
}
// Return the encrypted bytes from the memory stream.
return encrypted;
}
static string DecryptStringFromBytes_Aes(byte[] cipherText, byte[] Key, byte[] IV)
{
// Check arguments.
if (cipherText == null || cipherText.Length <= 0)
throw new ArgumentNullException("cipherText");
if (Key == null || Key.Length <= 0)
throw new ArgumentNullException("Key");
if (IV == null || IV.Length <= 0)
throw new ArgumentNullException("Key");
// Declare the string used to hold
// the decrypted text.
string plaintext = null;
// Create an AesManaged object
// with the specified key and IV.
using (AesManaged aesAlg = new AesManaged())
{
aesAlg.Key = Key;
aesAlg.IV = IV;
// Create a decrytor to perform the stream transform.
ICryptoTransform decryptor = aesAlg.CreateDecryptor(aesAlg.Key, aesAlg.IV);
// Create the streams used for decryption.
using (MemoryStream msDecrypt = new MemoryStream(cipherText))
{
using (CryptoStream csDecrypt = new CryptoStream(msDecrypt, decryptor, CryptoStreamMode.Read))
{
using (StreamReader srDecrypt = new StreamReader(csDecrypt))
{
// Read the decrypted bytes from the decrypting stream
// and place them in a string.
plaintext = srDecrypt.ReadToEnd();
}
}
}
}
return plaintext;
}
改变这个:
var str = System.Text.Encoding.Unicode.GetString(encrypted,0,encrypted.Length);
var str1 = System.Text.Encoding.Unicode.GetBytes(str);
为此:
var str = Convert.ToBase64String(encrypted);
var str1 = Convert.FromBase64String(str);
编码 类 不应用于将字符串转换为字节,反之亦然。
您还应该删除 StreamReader 和 StreamWriter 以及 write/read 直接 to/from MemoryStream
我遇到了一个奇怪的问题,因为只有某些时候我得到了执行
Padding is invalid and cannot be removed.
为什么我得到它?它是 Windows Phone 8.0 项目。我已经搜索并发现我应该添加这个
aesManaged.Padding = PaddingMode.None
但它是 WP8,没有 PaddingMode。
public LoginView()
{
this.InitializeComponent();
try
{
string original = "Here is some data to encrypt!";
AesManaged myAes = new AesManaged();
byte[] encrypted = EncryptStringToBytes_Aes(original, myAes.Key, myAes.IV);
Console.WriteLine("Original: {0}", original);
var str = System.Text.Encoding.Unicode.GetString(encrypted,0,encrypted.Length);
var str1 = System.Text.Encoding.Unicode.GetBytes(str);
AesManaged myAes1 = new AesManaged();
myAes1.Key = myAes.Key;
myAes1.IV = myAes.IV;
myAes.Clear();
string roundtrip = DecryptStringFromBytes_Aes(str1, myAes1.Key, myAes1.IV); // HERE IS EXCEPTION
Console.WriteLine("Round Trip: {0}", roundtrip);
}
catch (Exception e)
{
Console.WriteLine("Error: {0}", e.Message);
}
}
static byte[] EncryptStringToBytes_Aes(string plainText, byte[] Key, byte[] IV)
{
// Check arguments.
if (plainText == null || plainText.Length <= 0)
throw new ArgumentNullException("plainText");
if (Key == null || Key.Length <= 0)
throw new ArgumentNullException("Key");
if (IV == null || IV.Length <= 0)
throw new ArgumentNullException("Key");
byte[] encrypted;
// Create an AesManaged object
// with the specified key and IV.
using (AesManaged aesAlg = new AesManaged())
{
aesAlg.Key = Key;
aesAlg.IV = IV;
// Create a decrytor to perform the stream transform.
ICryptoTransform encryptor = aesAlg.CreateEncryptor(aesAlg.Key, aesAlg.IV);
// Create the streams used for encryption.
using (MemoryStream msEncrypt = new MemoryStream())
{
using (CryptoStream csEncrypt = new CryptoStream(msEncrypt, encryptor, CryptoStreamMode.Write))
{
using (StreamWriter swEncrypt = new StreamWriter(csEncrypt))
{
//Write all data to the stream.
swEncrypt.Write(plainText);
}
encrypted = msEncrypt.ToArray();
}
}
}
// Return the encrypted bytes from the memory stream.
return encrypted;
}
static string DecryptStringFromBytes_Aes(byte[] cipherText, byte[] Key, byte[] IV)
{
// Check arguments.
if (cipherText == null || cipherText.Length <= 0)
throw new ArgumentNullException("cipherText");
if (Key == null || Key.Length <= 0)
throw new ArgumentNullException("Key");
if (IV == null || IV.Length <= 0)
throw new ArgumentNullException("Key");
// Declare the string used to hold
// the decrypted text.
string plaintext = null;
// Create an AesManaged object
// with the specified key and IV.
using (AesManaged aesAlg = new AesManaged())
{
aesAlg.Key = Key;
aesAlg.IV = IV;
// Create a decrytor to perform the stream transform.
ICryptoTransform decryptor = aesAlg.CreateDecryptor(aesAlg.Key, aesAlg.IV);
// Create the streams used for decryption.
using (MemoryStream msDecrypt = new MemoryStream(cipherText))
{
using (CryptoStream csDecrypt = new CryptoStream(msDecrypt, decryptor, CryptoStreamMode.Read))
{
using (StreamReader srDecrypt = new StreamReader(csDecrypt))
{
// Read the decrypted bytes from the decrypting stream
// and place them in a string.
plaintext = srDecrypt.ReadToEnd();
}
}
}
}
return plaintext;
}
改变这个:
var str = System.Text.Encoding.Unicode.GetString(encrypted,0,encrypted.Length);
var str1 = System.Text.Encoding.Unicode.GetBytes(str);
为此:
var str = Convert.ToBase64String(encrypted);
var str1 = Convert.FromBase64String(str);
编码 类 不应用于将字符串转换为字节,反之亦然。
您还应该删除 StreamReader 和 StreamWriter 以及 write/read 直接 to/from MemoryStream