03.01.2015, 02:51
Hello guys, i want to figure how to decrypt a password... i have something like this
and i have the example of encrypted password like this
How can i decrypt that password? Thanks
Код:
stock Encrypt(string[])
{
for(new x=0; x < strlen(string); x++)
{
string[x] += (3^x) * (x % 15);
if(string[x] > (0xff))
{
string[x] -= 256;
}
}
return 1;
}
Код:
-484LLURЌазк0IRixҐґГЦ

