Saw
Saw

Reputation: 6416

AesCryptoServiceProvider alternate in .Net 2.0

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

Upvotes: 4

Views: 2385

Answers (1)

csharptest.net
csharptest.net

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

Related Questions