Reputation: 6416
What id the alternate of AesCryptoServiceProvider (that existed in system.Core -.net 4-) in .net 2.0??
Upvotes: 4
Views: 2385
Reputation: 64218
In .Net 2.0 you would use the RijndaelManaged class:
http://msdn.microsoft.com/en-us/library/system.security.cryptography.rijndaelmanaged.aspx
Upvotes: 7