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
#2

The point of an encrypted password is that it isn't supposed to be decrypted..
Reply
#3

Thats a rather simple encryption as it doesnt use a key, and is not a self-referencing hash.
It can simply be decrypted. But im not going to explain how to do that, as I cant know what youre using this for. Whatever, just respect the privacy of your users.
Reply
#4

****** , i think he needs it in case of player lost/forgot his/her password . So he can recover the player's password.
Reply
#5

Ok guys... I appreciate you answer... Thanks.
Reply
#6

Hashes are oneway and cannot be decrypted.

If you want it to recover passwords, make a command /changepassword.

Get the code of the new password and paste it there.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)