I need to send data from flash to the server, so I'm looking for a flash ActionScript 3.0 script that will encrypt a text and a C# .net script that decrypt the text.

Can anyone help me here ?

link|improve this question
feedback

1 Answer

Check out the as3corelib crypto package: http://code.google.com/p/as3corelib/source/browse/trunk/src/com/adobe/crypto/?r=49

And .NET has it's own cryptography namespace too: http://msdn.microsoft.com/en-us/library/system.security.cryptography.aspx

link|improve this answer
The problem is that I can not find 2 scripts that will work together... I'm tring to use the Rijndael encryption but the AS3 encryption give me a total different encrypt the the C# encryption. Can some one help me with a working codes ??? – Assaf Jul 22 '10 at 12:48
what is it you are trying to do ? Encrypt in AS3, then send to C# and decrypt ? In any case I don't see why it wouldnt work, if the scripts are correct and you use the correct keys too, it should work, I've done this before in AS3 with PHP using md5. – dotminic Jul 22 '10 at 13:23
feedback

Your Answer

 
or
required, but never shown

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