aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--php-client/class.phpipam-api.php4
1 files changed, 3 insertions, 1 deletions
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);