C# Example of AES256 encryption using System.Security.Cryptography.Aes
I need to implement AES 256 encryption /decryption and I haven't been able to find an example that works correctly. MSDN suggests that I should use the AES class. The Rijndael class is the predecessor of the Aes algorithm. You should use the Aes algorithm instead of Rijndael. For more information, see the entry The Differences Between Rijndael and AES in the .NET Security blog. Could anyone point me in the direction of a good example using the AES class for AES256? To add a little more clarity: I have a cipher file that contains the shared key and a string of encrypted text. I need to decrypt