Files
@ 7ec91347b83f
Branch filter:
Location: hot67beta/libraries/joomla/utilities/simplecrypt.php
7ec91347b83f
3.9 KiB
text/x-php
there we go
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | <?php
/**
* @version $Id: simplecrypt.php 10707 2008-08-21 09:52:47Z eddieajau $
* @package Joomla.Framework
* @subpackage Utilities
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant to the
* GNU General Public License, and as distributed it includes or is derivative
* of works licensed under the GNU General Public License or other free or open
* source software licenses. See COPYRIGHT.php for copyright notices and
* details.
*/
// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();
/**
* JSimpleCrypt is a very simple encryption algorithm for encyrpting/decrypting strings
*
* @static
* @package Joomla.Framework
* @subpackage Utilities
* @since 1.5
*/
class JSimpleCrypt extends JObject
{
/**
* Encryption/Decryption Key
* @access private
* @var string
*/
var $_key;
/**
* Object Constructor takes an optional key to be used for encryption/decryption. If no key is given then the
* secret word from the configuration object is used.
*
* @access protected
* @param string $key Optional encryption key
* @return void
* @since 1.5
*/
function __construct($key = null)
{
if ($key) {
$this->_key = (string) $key;
} else {
$conf = &JFactory::getConfig();
$this->_key = md5($conf->getValue('config.secret'));
}
}
function decrypt($s)
{
$ai = $this->_hexToIntArray($s);
(string) $s1 = $this->_xorString($ai);
return $s1;
}
function encrypt($s)
{
$ai = $this->_xorCharString($s);
$s1 = "";
for ($i = 0; $i < count($ai); $i++)
$s1 = $s1 . $this->_intToHex((int) $ai[$i]);
return $s1;
}
function _hexToInt($s, $i)
{
(int) $j = $i * 2;
(string) $s1 = $s;
(string) $c = substr($s1, $j, 1); // get the char at position $j, length 1
(string) $c1 = substr($s1, $j +1, 1); // get the char at postion $j + 1, length 1
(int) $k = 0;
switch ($c)
{
case "A" :
$k += 160;
break;
case "B" :
$k += 176;
break;
case "C" :
$k += 192;
break;
case "D" :
$k += 208;
break;
case "E" :
$k += 224;
break;
case "F" :
$k += 240;
break;
case " " :
$k += 0;
break;
default :
(int) $k = $k + (16 * (int) $c);
break;
}
switch ($c1)
{
case "A" :
$k += 10;
break;
case "B" :
$k += 11;
break;
case "C" :
$k += 12;
break;
case "D" :
$k += 13;
break;
case "E" :
$k += 14;
break;
case "F" :
$k += 15;
break;
case " " :
$k += 0;
break;
default :
$k += (int) $c1;
break;
}
return $k;
}
function _hexToIntArray($s)
{
(string) $s1 = $s;
(int) $i = strlen($s1);
(int) $j = $i / 2;
for ($l = 0; $l < $j; $l++) {
(int) $k = $this->_hexToInt($s1, $l);
$ai[$l] = $k;
}
return $ai;
}
function _charToInt($c)
{
$ac[0] = $c;
return $ac;
}
function _xorString($ai)
{
$s = $this->_key; //
(int) $i = strlen($s);
$ai1 = $ai;
(int) $j = count($ai1);
for ($i = 0; $i < $j; $i = strlen($s))
$s = $s . $s;
for ($k = 0; $k < $j; $k++) {
(string) $c = substr($s, $k, 1);
$ac[$k] = chr($ai1[$k] ^ ord($c));
}
(string) $s1 = implode('', $ac);
return $s1;
}
function _intToHex($i)
{
(int) $j = (int) $i / 16;
if ((int) $j == 0) {
(string) $s = " ";
} else {
(string) $s = strtoupper(dechex($j));
}
(int) $k = (int) $i - (int) $j * 16;
(string) $s = $s . strtoupper(dechex($k));
return $s;
}
function _xorCharString($s)
{
$ac = preg_split('//', $s, -1, PREG_SPLIT_NO_EMPTY);
(string) $s1 = $this->_key;
(int) $i = strlen($s1);
(int) $j = count($ac);
for ($i = 0; $i < $j; $i = strlen($s1)) {
$s1 = $s1 . $s1;
}
for ($k = 0; $k < $j; $k++) {
$c = substr($s1, $k, 1);
$ai[$k] = ord($c) ^ ord($ac[$k]);
}
return $ai;
}
}
|