我正在尝试用php“加密”一个字符串(js代码),然后使用javascript对其进行解码。
这是php函数:
function xor_string( $text, $xorKey ) {
$xored = '';
$chars = str_split( $text );
$i = 0;
while ( $i < count( $chars ) ) {
$xored .= chr( ord( $chars[$i] ) ^ $xorKey );
$i++;
}
return $xored;
}
这是js函数:
function xor_string( str, key ) {
var xored = "";
for (i=0; i<str.length;i++) {
var a = str.charCodeAt(i);
var b = a ^ key;
xored = xored+String.fromCharCode(b);
}
console.log(xored);
}
对于某些键,这种方式可以双向使用,但对于其他键则失败,例如:
echo urlencode( xor_string( 'document.location.href.search', 67 ) );
回报:
%27%2C+6.%26-7m%2F%2C+%227%2A%2C-m%2B1%26%25m0%26%221+%2B
当我尝试使用javascript“解码”它时:
var str = decodeURIComponent("%27%2C+6.%26-7m%2F%2C+%227%2A%2C-m%2B1%26%25m0%26%221+%2B");
xor_string( str, 67 );
它返回:
dohument.lohation.href.searhh
任何人都知道为什么会这样?
对于某些“键”,例如 120 和其他键,它可以正常工作,但对于许多其他键,它会失败。