Note that there are some explanatory texts on larger screens.

plurals
  1. POAES encryption in php and then decryption with Javascript (cryptojs)
    text
    copied!<p>I'm searching for a way to make a 2 way encryption of a simple text (5 to 6 numbers and/or characters). The catch is that i want to make the encryption in php and then decrypt it via Javascript. For php i've tested using mcrypt_encode and have gotten it to work, hence when i try to decrypt it with javascript (i'm using the Crypto-js library - <a href="http://code.google.com/p/crypto-js/">http://code.google.com/p/crypto-js/</a> ) i get no results. Here is the php code i'm using:</p> <pre><code>$key = "oijhd981727783hy18274"; $text = "1233"; $td = mcrypt_module_open(MCRYPT_RIJNDAEL_256, '', MCRYPT_MODE_CBC, ''); $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_RAND); $crypttext = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $text, MCRYPT_MODE_CBC,$iv); echo base64_encode($crypttext); </code></pre> <p>and then here is the Javascript code i'm using:</p> <pre><code>var encrypted = CryptoJS.enc.Base64.parse("LiJU5oYHXRSNsrjMtCr5o2ev7yDFGZId85gh9MEXPeg="); var key = 'oijhd981727783hy18274'; var decrypted = CryptoJS.AES.decrypt(encrypted, key); document.write( decrypted.toString(CryptoJS.enc.Utf8) ); </code></pre> <p>As i'm just testing, i copy/paste the output from the php straight into the JS and see if it would return any results, however that doesnt happen. As i'm new to the encryption/decryption part i might be missing something. Any suggestions will be greatly appreciated.</p> <p>On a side note, as i read a lot of suggestions here about using other types of communication to transfer the data, that would not be possible in this case, as i need to pass this string to a third party software, which will bring it over on a secure area, where i have access to edit only the javascript, this is why i'm trying to encrypt the text in php and place it inside the website's source, from where the third party software will read it as it is encrypted and will transfer it to the secure section, where i will need to decrypt it back via Javascript (i dont have access to php there).</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload