cipher = $cipher; $this->mode = $mode; // @codingStandardsIgnoreLine $this->handle = @mcrypt_module_open($cipher, '', $mode, ''); try { // @codingStandardsIgnoreLine $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]) ); } // @codingStandardsIgnoreLine $initVectorSize = @mcrypt_enc_get_iv_size($this->handle); if (null === $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) { // @codingStandardsIgnoreLine @mcrypt_module_close($this->handle); throw new \Magento\Framework\Exception\LocalizedException(new \Magento\Framework\Phrase($e->getMessage())); } // @codingStandardsIgnoreLine @mcrypt_generic_init($this->handle, $key, $initVector); } /** * Destructor frees allocated resources */ public function __destruct() { // @codingStandardsIgnoreStart @mcrypt_generic_deinit($this->handle); @mcrypt_module_close($this->handle); // @codingStandardsIgnoreEnd } /** * Retrieve a name of currently used cryptographic algorithm * * @return string */ public function getCipher(): string { return $this->cipher; } /** * Mode in which cryptographic algorithm is running * * @return string */ public function getMode(): string { return $this->mode; } /** * Retrieve an actual value of initial vector that has been used to initialize a cipher * * @return string */ public function getInitVector(): ?string { return $this->initVector; } /** * Get the current mcrypt handle * * @return resource */ public function getHandle() { return $this->handle; } /** * Encrypt a string * * @param string $data String to encrypt * @return string * @throws \Exception */ public function encrypt(string $data): string { if (strlen($data) == 0) { return $data; } // @codingStandardsIgnoreLine return @mcrypt_generic($this->getHandle(), $data); } /** * Decrypt a string * * @param string $data * @return string */ public function decrypt(string $data): string { if (strlen($data) == 0) { return $data; } // @codingStandardsIgnoreLine $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; } }