up vote 1 down vote favorite
1
share [g+] share [fb]

I'd like to encrypt in javascript and then decrypt in Php.

There are RSA implementations for javascript and php but they are not compatible. I cannot decrypt in Php correctly what I had encrypted with javascript.

Does anyone know a library/code that will work both with javascript and Php?

Thanks.

link|improve this question
feedback

5 Answers

Here is an JavaScript RSA encryption library: http://www.ohdave.com/rsa/

And I think you could use something like this class to decrypt the generated encrypted string - http://www.phpclasses.org/browse/package/4121.html

Let me know if you manage get this work together, as I am myself looking into this subject (I actually found this post looking for this answer myself :P ) .

Edit: Look, I've also found this - http://www.sematopia.com/?p=275 - seems related to the previous two as well...

Hope this helps, Constantin TOVISI

link|improve this answer
feedback

If you set up your server to use SSL then you can have encrypted transmission via ajax using https. That is probably the best way to encrypt data between javascript and php. If you want to make it yourself there is a big chance you will screw up somewhere and the system wont be secure.

Google on how to set up https for your server.

link|improve this answer
feedback

I assume you have a valid reason to do that other than to do https yourself, so I'd say that if you stick to the standards you should be able to easily decrypt with whatever technology supports these standards : ie it should work

For example if you encrypt your data in PKCS#7 format, be sure that your php library knows that the input data is PKCS#7.

Also be sure that your encryption key is not scrambled between server and client. Did you try to decrypt your data with your javascript library ?

Hope this can help...

link|improve this answer
feedback

Maybe you can help by putting the code you're using for both js and php.

Also, maybe you could be more specific on why you need to use js and php. Maybe you could use only php, and AJAX (to query the same php function) where you were using js.

link|improve this answer
feedback

I am not one to toot my own horn but I have a project at github.com that will perform this functionality.

A private key is generated on the server, a public key and pkcs#7 certificate is also derived from the private key. The public key is sent to the client at which time each form element assocated with the specified form is encrypted prior to being submitted to the server.

It is 100% OpenSSL compatibile as it uses the PHP OpenSSL extension to generate, encrypt and decrypt data.

https://github.com/jas-/jQuery.pidCrypt/

This project is not as secure as PGP because the JavaScript will not sign and encrypt emails until the form data is sent to the server, but the form data that is to be encrypted and or signed is encrypted using RSA public key encryption prior to being sent to the server.

Again the project is not complete in terms of the authentication and email signing but for ordinary form encryption using a public key it works very well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown