We have a .NET 2.0 application that uses a class RijindaelManagedto encrypt some sensitive data. This was good until we came across some machines that require the use of FIPS-compatible algorithms.
We would like to switch to AesCryptoServiceProvider, but most of our target computers have not updated .NET 2.0. The demand for updates is out of the question. After all, the updates are scary!
Can i use AesCryptoServiceProviderin a .NET 2.0 application? Since 3.5 uses the 2.0 CLR, I was hoping there might be a way to build the necessary libraries in the application. Otherwise, can someone point me to a link to their own API, which is wrapped AesCryptoServiceProvider?
source
share