AesManaged and RijndaelManaged

房东的猫 提交于 2019-12-10 20:12:28

问题


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.


回答1:


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

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




回答2:


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



来源:https://stackoverflow.com/questions/2881474/aesmanaged-and-rijndaelmanaged

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!