AES 256 encryption in the .NET Framework 2.0

Does anyone know if C # can use AES 256 encryption and decryption in the .NET Framework 2.0? Evaluate whether the built-in framework supports it or if you need to use any external APIs for this?

Thanks.

+6
c # aes
source share
3 answers

Take a look at the System.Security.Cryptography . It contains classes that you can use to encrypt AES, such as the Rijndael class.

+2
source share

It is built-in - you need to use the Rijndael Class (the name of the algorithm that received the NIST AES Competition ) in System.Security.Cryptography .

+3
source share

Before he won the AES title, he was named Rijndael. Support for the Rijndael class has been in .Net since version 1.0.

+1
source share

All Articles