Hallo,
ich hab eine verschlüsslung im script erstellt, die ich jetzt in php umsetzten möchte.
ich bekommt es einfach nicht hin.
im script:
stock crypt(txt[],output[])
{
new x[5];
for(new i=0;i<strlen(txt);i++)
{
format(x,5,"%i%i%i",txt[i]+4,txt[i]+101,txt[i]+123);
strins(output,x,strlen(output),strlen(output));
}
return true;
}
mein ansatz in php:
for ($i = 0; $i < strlen($passwort); $i++) {
$x;
$x1=$passwort[$i]+4;
$x2=$passwort[$i]+101;
$x3=$passwort[$i]+123;
$x=$x1.$x2.$x3;
$cpw=$cpw.$x;
}
echo $cpw."<br>";
hier kommt aber was ganz anderes raus. was ist hier falsch???
am script möchte ich also nichts verändern.
mfg metin