Hello mans! I need you help!
This is XOR encryption:
$ctxt - encryption text. How decode this text in $ctext ?
I need back loop!
Thank you
This is XOR encryption:
PHP Code:
for ($i = 0; $i < $suma; ++$i)
{
$ctxt .= $text[$i] ^ $dlina[$i % $hlam] ^ $bite ^ $dbite;
$bite = $text[$i];
}
I need back loop!
Thank you
Comment