SA-MP Forums Archive
Need help with decrypting password - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Need help with decrypting password (/showthread.php?tid=122878)



Need help with decrypting password - KuHS - 23.01.2010

Hello, i want to decrypt adler32 hash, is there any ideas how to do that, or it's not impossible?

Код:
stock adler32_hash(buf[]) {
	new length=strlen(buf);
  new s1 = 1;
  new s2 = 0;
  new n;
  for (n=0; n<length; n++)
  {
    s1 = (s1 + buf[n]) % 65521;
    s2 = (s2 + s1)   % 65521;
  }
  return (s2 << 16) + s1;
}



Re: Need help with decrypting password - LuxurioN™ - 23.01.2010

You can't decrypt MD5. It is virtually impossible to decrypt!
I believe it is possible, not in the pawn. More I never seen anyone get a perfect MD5 decrypter!