0

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?

3 Answers 3

2

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

Sign up to request clarification or add additional context in comments.

Comments

1

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

Comments

1

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.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.