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 class Mage_Core_Model_Encryption
00035 {
00036
00037
00038
00039 protected $_crypt;
00040
00041
00042
00043 protected $_helper;
00044
00045
00046
00047
00048
00049
00050
00051 public function setHelper($helper)
00052 {
00053 $this->_helper = $helper;
00054 return $this;
00055 }
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069 public function getHash($password, $salt = false)
00070 {
00071 if (is_integer($salt)) {
00072 $salt = $this->_helper->getRandomString($salt);
00073 }
00074 return $salt === false ? $this->hash($password) : $this->hash($salt . $password) . ':' . $salt;
00075 }
00076
00077
00078
00079
00080
00081
00082
00083 public function hash($data)
00084 {
00085 return md5($data);
00086 }
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096 public function validateHash($password, $hash)
00097 {
00098 $hashArr = explode(':', $hash);
00099 switch (count($hashArr)) {
00100 case 1:
00101 return $this->hash($password) === $hash;
00102 case 2:
00103 return $this->hash($hashArr[1] . $password) === $hashArr[0];
00104 }
00105 Mage::throwException('Invalid hash.');
00106 }
00107
00108
00109
00110
00111
00112
00113
00114 protected function _getCrypt($key = null)
00115 {
00116 if (!$this->_crypt) {
00117 if (null === $key) {
00118 $key = (string)Mage::getConfig()->getNode('global/crypt/key');
00119 }
00120 $this->_crypt = Varien_Crypt::factory()->init($key);
00121 }
00122 return $this->_crypt;
00123 }
00124
00125
00126
00127
00128
00129
00130
00131 public function encrypt($data)
00132 {
00133 return base64_encode($this->_getCrypt()->encrypt((string)$data));
00134 }
00135
00136
00137
00138
00139
00140
00141
00142 public function decrypt($data)
00143 {
00144 return str_replace("\x0", '', trim($this->_getCrypt()->decrypt(base64_decode((string)$data))));
00145 }
00146
00147
00148
00149
00150
00151
00152
00153 public function validateKey($key)
00154 {
00155 return $this->_getCrypt($key);
00156 }
00157 }