/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Encryption/Crypt.php
144 строки
3 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2014 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\Encryption; use Magento\Framework\Encryption\Adapter\Mcrypt; /** * Class encapsulates cryptographic algorithm * * @api * @deprecated 102.0.0 * @since 100.0.2 */ class Crypt { /** * @var string */ protected $_cipher; /** * @var string */ protected $_mode; /** * @var string */ protected $_initVector; /** * Mcrypt adapter * * @var Mcrypt */ private $mcrypt; /** * Constructor * * @param string $key Secret encryption key. * It's unsafe to store encryption key in memory, so no getter for key exists. * @param string $cipher Cipher algorithm (one of the MCRYPT_ciphername constants) * @param string $mode Mode of cipher algorithm (MCRYPT_MODE_modeabbr constants) * @param string|bool $initVector Initial vector to fill algorithm blocks. * TRUE generates a random initial vector. * FALSE fills initial vector with zero bytes to not use it. * @throws \Exception * phpcs:disable PHPCompatibility.Constants.RemovedConstants */ public function __construct( $key, $cipher = MCRYPT_BLOWFISH, $mode = MCRYPT_MODE_ECB, $initVector = false ) { if (true === $initVector) { //phpcs:disable $handle = @mcrypt_module_open($cipher, '', $mode, ''); $initVectorSize = @mcrypt_enc_get_iv_size($handle); //phpcs:enable /* Generate a random vector from human-readable characters */ $allowedCharacters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; $initVector = ''; for ($i = 0; $i < $initVectorSize; $i++) { $initVector .= $allowedCharacters[random_int(0, strlen($allowedCharacters) - 1)]; } //phpcs:disable @mcrypt_generic_deinit($handle); @mcrypt_module_close($handle); //phpcs:enable } $this->mcrypt = new Mcrypt( $key, $cipher, $mode, $initVector === false ? null : $initVector ); } /** * Retrieve a name of currently used cryptographic algorithm * * @return string */ public function getCipher() { return $this->mcrypt->getCipher(); } /** * Mode in which cryptographic algorithm is running * * @return string */ public function getMode() { return $this->mcrypt->getMode(); } /** * Retrieve an actual value of initial vector that has been used to initialize a cipher * * @return string */ public function getInitVector() { return $this->mcrypt->getInitVector(); } /** * Encrypt a data * * @param string $data String to encrypt * @return string */ public function encrypt($data) { if (!$data || strlen($data) == 0) { return $data; } // @codingStandardsIgnoreLine return @mcrypt_generic($this->mcrypt->getHandle(), $data); } /** * Decrypt a data * * @param string $data String to decrypt * @return string */ public function decrypt($data) { return $this->mcrypt->decrypt($data); } }