mirror of
https://github.com/vrana/adminer.git
synced 2025-08-16 11:34:10 +02:00
Use XXTEA for permanent login
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1287 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
96
adminer/include/xxtea.inc.php
Normal file
96
adminer/include/xxtea.inc.php
Normal file
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
/** PHP implementation of XXTEA encryption algorithm.
|
||||
* @author Ma Bingyao <andot@ujn.edu.cn>
|
||||
* @link http://www.coolcode.cn/?action=show&id=128
|
||||
*/
|
||||
|
||||
function int32($n) {
|
||||
while ($n >= 2147483648) {
|
||||
$n -= 4294967296;
|
||||
}
|
||||
while ($n <= -2147483649) {
|
||||
$n += 4294967296;
|
||||
}
|
||||
return (int) $n;
|
||||
}
|
||||
|
||||
function long2str($v, $w) {
|
||||
$s = '';
|
||||
foreach ($v as $val) {
|
||||
$s .= pack('V', $val);
|
||||
}
|
||||
if ($w) {
|
||||
return substr($s, 0, end($v));
|
||||
}
|
||||
return $s;
|
||||
}
|
||||
|
||||
function str2long($s, $w) {
|
||||
$v = array_values(unpack('V*', str_pad($s, 4 * ceil(strlen($s) / 4), "\0")));
|
||||
if ($w) {
|
||||
$v[] = strlen($s);
|
||||
}
|
||||
return $v;
|
||||
}
|
||||
|
||||
function xxtea_mx($z, $y, $sum, $k) {
|
||||
return int32((($z >> 5 & 0x7FFFFFF) ^ $y << 2) + (($y >> 3 & 0x1FFFFFFF) ^ $z << 4)) ^ int32(($sum ^ $y) + ($k ^ $z));
|
||||
}
|
||||
|
||||
/** Cipher
|
||||
* @param string plain-text password
|
||||
* @param array 4 integers
|
||||
* @return string binary cipher
|
||||
*/
|
||||
function encrypt_string($str, $key) {
|
||||
$v = str2long($str, true);
|
||||
$n = count($v) - 1;
|
||||
$z = $v[$n];
|
||||
$y = $v[0];
|
||||
$q = floor(6 + 52 / ($n + 1));
|
||||
$sum = 0;
|
||||
while ($q-- > 0) {
|
||||
$sum = int32($sum + 0x9E3779B9);
|
||||
$e = $sum >> 2 & 3;
|
||||
for ($p=0; $p < $n; $p++) {
|
||||
$y = $v[$p + 1];
|
||||
$mx = xxtea_mx($z, $y, $sum, $key[$p & 3 ^ $e]);
|
||||
$z = int32($v[$p] + $mx);
|
||||
$v[$p] = $z;
|
||||
}
|
||||
$y = $v[0];
|
||||
$mx = xxtea_mx($z, $y, $sum, $key[$p & 3 ^ $e]);
|
||||
$z = int32($v[$n] + $mx);
|
||||
$v[$n] = $z;
|
||||
}
|
||||
return long2str($v, false);
|
||||
}
|
||||
|
||||
/** Decipher
|
||||
* @param string binary cipher
|
||||
* @param array 4 integers
|
||||
* @return string plain-text password
|
||||
*/
|
||||
function decrypt_string($str, $key) {
|
||||
$v = str2long($str, false);
|
||||
$n = count($v) - 1;
|
||||
$z = $v[$n];
|
||||
$y = $v[0];
|
||||
$q = floor(6 + 52 / ($n + 1));
|
||||
$sum = int32($q * 0x9E3779B9);
|
||||
while ($sum) {
|
||||
$e = $sum >> 2 & 3;
|
||||
for ($p=$n; $p > 0; $p--) {
|
||||
$z = $v[$p - 1];
|
||||
$mx = xxtea_mx($z, $y, $sum, $key[$p & 3 ^ $e]);
|
||||
$y = int32($v[$p] - $mx);
|
||||
$v[$p] = $y;
|
||||
}
|
||||
$z = $v[$n];
|
||||
$mx = xxtea_mx($z, $y, $sum, $key[$p & 3 ^ $e]);
|
||||
$y = int32($v[0] - $mx);
|
||||
$v[0] = $y;
|
||||
$sum = int32($sum - 0x9E3779B9);
|
||||
}
|
||||
return long2str($v, true);
|
||||
}
|
Reference in New Issue
Block a user