views:

307

answers:

2

Im currently developing a Silverlight application that connects to an old webservice. Our old webservice uses an encryption tool which silverlight does not support. Finally, we decided to used AesManaged for encryption, however, our webservice does not support AesManaged. Is their a way to decrypt an AesManaged to RijndaelManaged?

If yes, can you please post a sample snippet? Your feedback is highly needed.

Thank you.

+5  A: 

As long as you make sure to set the blocksize of RijndaelManager to 128 bits, AesManaged and RijndaelManaged will behave identically.

AES is just another name for the Rijndael encryption algorithm with blocksize 128.

Rasmus Faber
http://blogs.msdn.com/shawnfa/archive/2006/10/09/The-Differences-Between-Rijndael-and-AES.aspx
Will
A: 

I found a sample snippet for this one. Referencing from one of the questions related to it here

xscape