00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 class Varien_Crypt_Mcrypt extends Varien_Crypt_Abstract
00036 {
00037
00038
00039
00040
00041
00042 public function __construct(array $data=array())
00043 {
00044 parent::__construct($data);
00045 }
00046
00047
00048
00049
00050
00051
00052
00053 public function init($key)
00054 {
00055 if (!$this->getCipher()) {
00056 $this->setCipher(MCRYPT_BLOWFISH);
00057 }
00058
00059 if (!$this->getMode()) {
00060 $this->setMode(MCRYPT_MODE_ECB);
00061 }
00062
00063 $this->setHandler(mcrypt_module_open($this->getCipher(), '', $this->getMode(), ''));
00064 $iv = mcrypt_create_iv (mcrypt_enc_get_iv_size($this->getHandler()), MCRYPT_RAND);
00065
00066 $maxKeySize = mcrypt_enc_get_key_size($this->getHandler());
00067
00068 if (iconv_strlen($key, 'UTF-8')>$maxKeySize) {
00069 $this->setHandler(null);
00070 throw new Varien_Exception('Maximum key size must should be smaller '.$maxKeySize);
00071 }
00072
00073 mcrypt_generic_init($this->getHandler(), $key, $iv);
00074
00075 return $this;
00076 }
00077
00078
00079
00080
00081
00082
00083
00084 public function encrypt($data)
00085 {
00086 if (!$this->getHandler()) {
00087 throw new Varien_Exception('Crypt module is not initialized.');
00088 }
00089 if (strlen($data) == 0) {
00090 return $data;
00091 }
00092 return mcrypt_generic($this->getHandler(), $data);
00093 }
00094
00095
00096
00097
00098
00099
00100
00101 public function decrypt($data)
00102 {
00103 if (!$this->getHandler()) {
00104 throw new Varien_Exception('Crypt module is not initialized.');
00105 }
00106 if (strlen($data) == 0) {
00107 return $data;
00108 }
00109 return mdecrypt_generic($this->getHandler(), $data);
00110 }
00111
00112
00113
00114
00115
00116 public function __destruct()
00117 {
00118 if ($this->getHandler()) {
00119 $this->_reset();
00120 }
00121 }
00122
00123 protected function _reset()
00124 {
00125 mcrypt_generic_deinit($this->getHandler());
00126 mcrypt_module_close($this->getHandler());
00127 }
00128 }