I use the following javascript to encrypt some data : http://www.movable-type.co.uk/scripts/aes.html

I have to decrypt it with C#. Anyone knows how to decrypt that with the Rijndael manager ?

I want to avoid to port the code ;-)

Thanks in advance

link|improve this question

Also see this question: stackoverflow.com/questions/1149611/… which shows how to get SlowAES (a javascript AES library) to work with .NET/C#. It works. (but not in CTR mode) – Cheeso Mar 25 '11 at 0:21
I finally rewrote the algorithm in C# ;) – si2w Feb 18 at 13:05
feedback

2 Answers

up vote 4 down vote accepted

Alas, CTR mode is not implemented as a "mode" in the builtin AES class in the System.Security.Cryptography namespace.

But, there is a solution. CTR mode is not too difficult to implement using the builtin AES class operating in ECB mode, an IV of all zeros, no padding, and a few tweaks. Basically, for each block, CTR mode encrypts the counter, then XORs the result of that encryption with the plaintext to get the ciphertext. That's for encryption. You'd do the converse for decryption. Since the transform operation is XOR, it's reflexive, so decryption is really the same as encryption.

Start with the counter at zero for the first block of 16-bytes (the block size for AES); increment the counter for each subsequent block.

Honestly, the trickiest part about the whole affair is segmenting the data to be encrypted, into blocks of 16 bytes. If the app asks to encrypt 10 bytes, you can't encrypt. You need to wait til you get a full 16 bytes before you do the transform. So you need to manage a buffer.

I don't have a working code demo for you, but given this description it shouldn't be too hard to construct a CTR mode suitable for you. You can see an example of CTR mode encryption based on the builtin AES class in the WinZipAes.cs module, part of the open-source DotNetZip library. This code does work but isn't ready to be used outside of DotNetZip. You'd need to repackage it to make it clean.


On the other hand, if you just want to get Javascript and C# to interoperate with AES, and you are not particularly wedded to CTR mode, then you could use ECB mode, very easily. This question shows you how to get SlowAES and .NET's Aes class to work together, and it includes links to working code (Javascript, C#, and VB).

This is a different Javascript library than the one you selected; I prefer slowAES because it made more sense to me. also, in that answer I provide supporting classes like the RFC2898 password-based key derivation.

Good luck.

link|improve this answer
feedback

You may also want to ensure that your input to the AES ECB block is a combination of a random IV and a byte offset. For example, the upper 92 bits is the random IV (different for each file) and the lower 32 bits is your byte offset.

Using an IV of 0 for every file encryption is dangerous. (check out "Writing Secure Code", pg. 285, 2nd edition). Vary the key and IV for each encrypt operation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.