Skip to content
Advertisement

Convert java encryption method in php [closed]

Below is the encryption method written in java, which I am trying to convert in php.

JavaScript

I tried several ways explained online but encrypted values from both the functions are not matching.

Below is the closest solution I got so far, but not getting the required output.

JavaScript

Any help in resolving this is highly appreciated. Thanks!

Advertisement

Answer

Java’s AES CTR implementation and PHP OpenSSL’s AES CTR implementations gives the same ciphertext when feed with the same data (encryption key, initialization vector and plaintext).

Below you find both programs using an UNSECURE fixed IV (for demonstration purposes) – never ever use a fixed IV in real programs!

The result on Java-side is:

JavaScript

and the same result on PHP-side:

JavaScript

Security warning: the following codes use a static IV and static (hardcoded) key and are for educational purpose only:

Java:

JavaScript

PHP:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement