PHP代码: class Aes { private $hex_iv = '00000000000000000000000000000000'; // converted JAVA byte code in to HEX and placed it here private $key = '123456789'; //Same as in JAVA function __construct() { $this->key = hash('sha256', $this->key, true); /…