String Encryption and Decryption
#1

Hello,

My script is apperently having different commands where you need to fill in a password that is encrypted. Once you do that you will be able to "hack" the server. So I was wondering if there is any possibility to get to know this password and change it. Or is the only way by removing it.

It is currently using:
Код:
public 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;
}
So how do I decrypt a string like this, and is it even possible?
Reply


Messages In This Thread
String Encryption and Decryption - by Aron_Johnson - 09.06.2011, 07:45
Re: String Encryption and Decryption - by Aron_Johnson - 09.06.2011, 08:20
Re: String Encryption and Decryption - by Aron_Johnson - 09.06.2011, 21:04
Re: String Encryption and Decryption - by Scenario - 09.06.2011, 21:27
Re: String Encryption and Decryption - by Aron_Johnson - 11.06.2011, 11:15

Forum Jump:


Users browsing this thread: 3 Guest(s)