I need an XOR line / text in PHP, base64 encodes it, but something goes wrong:
<?php $mustget = 'Kw4SCQ=='; $string = 'Josh'; echo("Must get: " . $mustget . "\n"); echo("We got: " . base64_encode(xor_this($string)) . "\n"); function xor_this($text) { $key = 'frtkj'; $i = 0; $encrypted = ''; foreach (str_split($text) as $char) { $encrypted .= chr(ord($char) ^ ord($key{$i++ % strlen($key)})); } return $encrypted; } ?>
I get the following result, but I need to get "$ mustget":
Must get: Kw4SCQ== We got: LB0HAw==
What am I doing wrong?
source share