What id the alternate of AesCryptoServiceProvider (that existed in system.Core -.net 4-) in .net 2.0??
            Asked
            
        
        
            Active
            
        
            Viewed 2,277 times
        
    1 Answers
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
 
- 
                    is it behave the same behavior exactly?? – Saw Feb 15 '11 at 17:44
 - 
                    2Well, yes and no. Yes, it's a standard implementation of the AES crypto algorithm and therefore should produce the same result... and No, it's not the same code because AFAIK it's not FIPS certified. – csharptest.net Feb 15 '11 at 17:48
 - 
                    No they aren't the same. See this answer: http://stackoverflow.com/a/4863924/328397 – makerofthings7 Mar 18 '14 at 23:31