_cipher = $cipher; $this->_mode = $mode; $this->_handle = @mcrypt_module_open($cipher, '', $mode, ''); try { $maxKeySize = @mcrypt_enc_get_key_size($this->_handle); if (strlen($key) > $maxKeySize) { throw new \Magento\Framework\Exception\LocalizedException( new \Magento\Framework\Phrase('Key must not exceed %1 bytes.', [$maxKeySize]) ); } $initVectorSize = @mcrypt_enc_get_iv_size($this->_handle); if (true === $initVector) { /* Generate a random vector from human-readable characters */ $abc = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; $initVector = ''; for ($i = 0; $i < $initVectorSize; $i++) { $initVector .= $abc[rand(0, strlen($abc) - 1)]; } } elseif (false === $initVector) { /* Set vector to zero bytes to not use it */ $initVector = str_repeat("\0", $initVectorSize); } elseif (!is_string($initVector) || strlen($initVector) != $initVectorSize) { throw new \Magento\Framework\Exception\LocalizedException( new \Magento\Framework\Phrase('Init vector must be a string of %1 bytes.', [$initVectorSize]) ); } $this->_initVector = $initVector; } catch (\Exception $e) { @mcrypt_module_close($this->_handle); throw $e; } @mcrypt_generic_init($this->_handle, $key, $initVector); } /** * Destructor frees allocated resources * * @return void */ public function __destruct() { @mcrypt_generic_deinit($this->_handle); @mcrypt_module_close($this->_handle); } /** * Retrieve a name of currently used cryptographic algorithm * * @return string */ public function getCipher() { return $this->_cipher; } /** * Mode in which cryptographic algorithm is running * * @return string */ public function getMode() { return $this->_mode; } /** * Retrieve an actual value of initial vector that has been used to initialize a cipher * * @return string */ public function getInitVector() { return $this->_initVector; } /** * Encrypt a data * * @param string $data String to encrypt * @return string */ public function encrypt($data) { if (strlen($data) == 0) { return $data; } return @mcrypt_generic($this->_handle, $data); } /** * Decrypt a data * * @param string $data String to decrypt * @return string */ public function decrypt($data) { if (strlen($data) == 0) { return $data; } $data = @mdecrypt_generic($this->_handle, $data); /* * Returned string can in fact be longer than the unencrypted string due to the padding of the data * @link http://www.php.net/manual/en/function.mdecrypt-generic.php */ $data = rtrim($data, "\0"); return $data; } }