AesCryptoServiceProvider.TransformFinalBlock错误:输入数据不是完整的块

时间:2014-04-15 19:33:20

标签: c# aes

我写了一个本应该是一个简单的加密/解密应用程序来熟悉AesCryptoServiceProvider并且我收到一个错误。错误是"输入数据不是一个完整的块。"这是代码:

    static void Main(string[] args)
    {
        Console.WriteLine("Enter string to encrypt:");
        string userText = Console.ReadLine();
        byte[] key;
        byte[] IV;
        using (AesCryptoServiceProvider aes = new AesCryptoServiceProvider())
        {
            key = aes.Key;
            IV = aes.IV;
        }

        byte[] encryptedText = EncryptString(userText, key, IV);

        Console.WriteLine(Convert.ToBase64String(encryptedText));

        string decryptedText = DecryptString(encryptedText, key, IV);

        Console.WriteLine(decryptedText);

        Console.ReadLine();
    }

    private static byte[] EncryptString(string encryptText, byte[] key, byte[] IV)
    {
        using (AesCryptoServiceProvider symAlg = new AesCryptoServiceProvider())
        {
            symAlg.Key = key;
            symAlg.IV = IV;

            ICryptoTransform ct = symAlg.CreateEncryptor(symAlg.Key, symAlg.IV);
            byte[] encryptTextBytes = UnicodeEncoding.ASCII.GetBytes(encryptText);
            byte[] encryptedText = ct.TransformFinalBlock(encryptTextBytes, 0, encryptTextBytes.Length);

            return encryptTextBytes;
        }
    }

    private static string DecryptString(byte[] decryptText, byte[] key, byte[] IV)
    {
        using (AesCryptoServiceProvider symAlg = new AesCryptoServiceProvider())
        {
            symAlg.Key = key;
            symAlg.IV = IV;
            ICryptoTransform ct = symAlg.CreateDecryptor(symAlg.Key, symAlg.IV);
            byte[] decryptedUserText = ct.TransformFinalBlock(decryptText, 0, decryptText.Length);

            return Convert.ToBase64String(decryptedUserText);
        }
    }

我可以在线找到这个错误的结果,但它们都与写入加密的内存流有关,这不是我正在做的事情。有人可以帮助指出我在这里做错了吗?

1 个答案:

答案 0 :(得分:2)

哈,发现它! 看看你在加密函数中返回的内容:

        byte[] encryptTextBytes = UnicodeEncoding.ASCII.GetBytes(encryptText);
        byte[] encryptedText = ct.TransformFinalBlock(encryptTextBytes, 0, encryptTextBytes.Length);

        return encryptTextBytes;

提示:它不是加密的东西。