From b40682d6ff1407d7471e5dbb7338dd3a38787637 Mon Sep 17 00:00:00 2001 From: Rico29 Date: Thu, 16 Jan 2020 12:37:39 +0100 Subject: Update class.phpipam-api.php replace deprecated mcrypt_encrypt by openssl_encrypt. API with php7 is broken --- php-client/class.phpipam-api.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/php-client/class.phpipam-api.php b/php-client/class.phpipam-api.php index 3fa59fe..2abf438 100644 --- a/php-client/class.phpipam-api.php +++ b/php-client/class.phpipam-api.php @@ -695,7 +695,9 @@ class phpipam_api_client { $params['controller'] = $this->api_server_controller; // create encrypted request - $encrypted_request = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->api_key, json_encode($params), MCRYPT_MODE_ECB)); + $ivlen = openssl_cipher_iv_length($cipher="AES-128-CBC"); + $iv = openssl_random_pseudo_bytes($ivlen); + $encrypted_request = base64_encode(openssl_encrypt(json_encode($params),$cipher,$this->api_key,$options=OPENSSL_RAW_DATA, $iv)); // escape + $encrypted_request = urlencode($encrypted_request); -- cgit v1.2.3