Your IP : 127.0.0.1
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Encryption\Adapter;
/**
* Mcrypt adapter for decrypting values using legacy ciphers
*/
class Mcrypt implements EncryptionAdapterInterface
{
/**
* @var string
*/
private $cipher;
/**
* @var string
*/
private $mode;
/**
* @var string
*/
private $initVector;
/**
* Encryption algorithm module handle
*
* @var resource
*/
private $handle;
/**
* Mcrypt constructor.
* @param string $key
* @param string $cipher
* @param string $mode
* @param string $initVector
* @throws \Exception
*/
public function __construct(
string $key,
string $cipher = MCRYPT_BLOWFISH,
string $mode = MCRYPT_MODE_ECB,
string $initVector = null
) {
$this->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;
}
}