How to decrypt a password?
#1

Hello guys, i want to figure how to decrypt a password... i have something like this

Код:
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;
}
and i have the example of encrypted password like this

Код:
-484LLURŠ“Ќ‘азк0IRixҐґГЦ
How can i decrypt that password? Thanks
Reply


Messages In This Thread
How to decrypt a password? - by 0B3Y - 03.01.2015, 02:51
Re: How to decrypt a password? - by Ryan_Bowe - 03.01.2015, 02:55
Re: How to decrypt a password? - by Mauzen - 03.01.2015, 03:03
Re: How to decrypt a password? - by Arxalan - 03.01.2015, 04:02
Re: How to decrypt a password? - by 0B3Y - 03.01.2015, 04:18
Re: How to decrypt a password? - by ATGOggy - 03.01.2015, 05:20

Forum Jump:


Users browsing this thread: 1 Guest(s)