I've got a flash client that communicates with a server. The server-side code is in java. I'd like to be able to encrypt the communication, so it has to be an algorithm that has libraries for both as3 & java.

Speed if more important than the security of the encryption, and ideally it would use asymmetric key encryption.

AES and Blowfish seem like they would work from what I've seen. But both use symmetric keys.

Any ideas?

link|improve this question

60% accept rate
feedback

3 Answers

up vote 1 down vote accepted

AS3Crypto is a port of the popular Java/C# library BouncyCastle. That works just great.

link|improve this answer
feedback

It seems like opening an HTTPS connection would be the simplest way to do this.

link|improve this answer
feedback

I'm going to be working with encrypting data shortly here. I've chosen to do it using asynchronous RSA encryption.

I'll be using AS3Crypto's RSA encryption client-side with the public key.

Server-side I'll be using JAVA's built-in RSA cryptography to decrypt data with the private key.

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.