我有这个代码: RijndaelManaged rijndaelCipher = new RijndaelManaged(); // Set key and IV rijndaelCipher.Key = Convert.FromBase64String("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz012345678912"); rijndaelCipher.IV = Convert.FromBase64String("1234567890123456789012345678901234567890123456789012345678901234"); 我得到了投掷: Specified key is not a valid size for this algorithm. Specified initialization vector (IV) does not match the block size for this algorithm. 这个string有什么问题? 我可以从你的一些例子string?
我似乎无法find使用AES 128位encryption的一个很好的干净的例子。 有没有人有一些示例代码?