MD5 Hash = ?
#1

is this MD5 hash?
Код:
Encrypt(string[])
{
	for(new x=0; x < strlen(string); x++)
	  {
		  string[x] += (3^x) * (x % 15);
		  if(string[x] > (0xff))
		  {
			  string[x] -= 256;
		  }
	  }
}
Found at
http://pastebin.com/f33ccb645


Thanks!
Reply
#2

Try generating a hash using that, then making another using the same phrase, and comparing the 2.

There are plenty of MD5 hash generators on the internet. ****** search for one.
Reply
#3

I doubt this is a MD5 algorithm. MD5 only returns letters and numbers, but this can might return any kind of ascii signs in the hashed string.
Also this is partially revertible, while MD5 cant be decrypted.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)