2

我有一个问题AesEncrypt,我有这个加密文本的代码块:

private 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 Aes object 
    // with the specified key and IV. 
    using (Aes aesAlg = Aes.Create())
    {
        aesAlg.Padding = PaddingMode.None;
        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))
                {
                    swEncrypt.Write(plainText);
                    csEncrypt.FlushFinalBlock();
                }
            }
            encrypted = msEncrypt.ToArray();
        }
    }

    // Return the encrypted bytes from the memory stream. 
    return encrypted;
}

问题是,在某些情况下,msEncrypt.ToArray()给我一个空byte[]的,在某些情况下,它运作良好......

请拯救我的一天!

4

1 回答 1

4

您需要swEncrypt在调用之前刷新,FlushFinalBlock()以确保您尝试加密的所有数据都传递到CryptoStream.

改变

swEncrypt.Write(plainText);
csEncrypt.FlushFinalBlock();

swEncrypt.Write(plainText);
swEncrypt.Flush();
csEncrypt.FlushFinalBlock();

进行此更改后,CryptoStream如果输入不是块大小的倍数(在 AES 的情况下为 16 个字节),现在将引发异常。

您有两种选择来解决此问题。

  1. 将您的输入手动填充到块大小的倍数。因为"This is a test string",你会把它填充成这样的东西"This is a test string\0\0\0\0\0\0\0\0\0\0\0"。填充字符可以是任何你想要的,只要确保在解密后删除填充。
  2. 将填充模式更改为其他内容,例如PKCS7or Zeros。除非您绝对需要使用PaddingMode.None(例如为了与其他系统兼容),否则这是更好的解决方案。
于 2013-09-13T13:06:31.263 回答