<?php
function xor_encrypt() {
$defaultdata = array( "showpassword"=>"no", "bgcolor"=>"#ffffff"); $key = '';
$text = base64_decode('ClVLIh4ASCsCBE8lAxMacFMZV2hdVVotEhhUJQNVAmhSEV4sFxFeaAw%3D');
for($i=0;$i<strlen($text);$i++) { $key .= $outText[$i] ^ $text[$i];
}
return $key;
}
echo xor_encrypt();
?>