Joseph
Joseph

Reputation: 1784

C# decrypt data which encrypted in Javascript

How to decrypt the encryption data generated http://www.movable-type.co.uk/scripts/aes.html in a C# application!

Upvotes: 0

Views: 753

Answers (1)

Brian Merrell
Brian Merrell

Reputation: 1173

The site you have linked deals with AES encryption.

You may want to look at the RijndaelManaged class:

http://msdn.microsoft.com/en-us/library/system.security.cryptography.rijndaelmanaged.aspx

Here is an article discussing the differences between AES and the Rijndael algorithm:

http://blogs.msdn.com/b/shawnfa/archive/2006/10/09/the-differences-between-rijndael-and-aes.aspx

Upvotes: 2

Related Questions