| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/lib/Varien/Crypt/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Varien
* @package Varien_Crypt
* @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Mcrypt plugin
*
* @category Varien
* @package Varien_Crypt
* @author Magento Core Team <core@magentocommerce.com>
*/
class Varien_Crypt_Mcrypt extends Varien_Crypt_Abstract
{
/**
* Constuctor
*
* @param array $data
*/
public function __construct(array $data=array())
{
parent::__construct($data);
}
/**
* Initialize mcrypt module
*
* @param string $key cipher private key
* @return Varien_Crypt_Mcrypt
*/
public function init($key)
{
if (!$this->getCipher()) {
$this->setCipher(MCRYPT_BLOWFISH);
}
if (!$this->getMode()) {
$this->setMode(MCRYPT_MODE_ECB);
}
$this->setHandler(mcrypt_module_open($this->getCipher(), '', $this->getMode(), ''));
if (!$this->getInitVector()) {
if (MCRYPT_MODE_CBC == $this->getMode()) {
$this->setInitVector(substr(
md5(mcrypt_create_iv (mcrypt_enc_get_iv_size($this->getHandler()), MCRYPT_RAND)),
- mcrypt_enc_get_iv_size($this->getHandler())
));
} else {
$this->setInitVector(mcrypt_create_iv (mcrypt_enc_get_iv_size($this->getHandler()), MCRYPT_RAND));
}
}
$maxKeySize = mcrypt_enc_get_key_size($this->getHandler());
if (strlen($key) > $maxKeySize) { // strlen() intentionally, to count bytes, rather than characters
$this->setHandler(null);
throw new Varien_Exception('Maximum key size must be smaller '.$maxKeySize);
}
mcrypt_generic_init($this->getHandler(), $key, $this->getInitVector());
return $this;
}
/**
* Encrypt data
*
* @param string $data source string
* @return string
*/
public function encrypt($data)
{
if (!$this->getHandler()) {
throw new Varien_Exception('Crypt module is not initialized.');
}
if (strlen($data) == 0) {
return $data;
}
return mcrypt_generic($this->getHandler(), $data);
}
/**
* Decrypt data
*
* @param string $data encrypted string
* @return string
*/
public function decrypt($data)
{
if (!$this->getHandler()) {
throw new Varien_Exception('Crypt module is not initialized.');
}
if (strlen($data) == 0) {
return $data;
}
return mdecrypt_generic($this->getHandler(), $data);
}
/**
* Desctruct cipher module
*
*/
public function __destruct()
{
if ($this->getHandler()) {
$this->_reset();
}
}
protected function _reset()
{
mcrypt_generic_deinit($this->getHandler());
mcrypt_module_close($this->getHandler());
}
}