4

What id the alternate of AesCryptoServiceProvider (that existed in system.Core -.net 4-) in .net 2.0??

mmmmmm
  • 32,227
  • 27
  • 88
  • 117
Saw
  • 6,199
  • 11
  • 53
  • 104

1 Answers1

7

In .Net 2.0 you would use the RijndaelManaged class:

http://msdn.microsoft.com/en-us/library/system.security.cryptography.rijndaelmanaged.aspx

csharptest.net
  • 62,602
  • 11
  • 71
  • 89