Why are RijndaelManaged and AesCryptoServiceProvider returning different results?
Response from Microsoft: RijndaelManaged class and AesCryptoServiceProvider class are two different implementations. RijndaelManaged class is a kind of implementation of Rijndael algorithm in .net framework, which was not validated under NIST (National Institute of Standards and Technology) Cryptographic Module Validation Program (CMVP). However, AesCryptoServiceProvider class calls the Windows Crypto API, which uses RSAENH.DLL, and has … Read more