<?php function xor_encrypt($in) { $key = 'eDWo'; $text = $in; $outText = ''; // Iterate through each character for($i=0;$i<strlen($text);$i++) { $outText .= $text[$i] ^ $key[$i % strlen($key)]; } return $outText; } $tempdata = xor_encrypt(base64_decode('8zEgOFGZOHCxuQAAuQOqqjnpkOI7Q6hoETnAGFGzqqo7OIlJGBCJSjnI')); echo $tempdata; ?>
You have javascript disabled. You will not be able to edit any code.