How to uncode MD5 hash?
#5

Код:
stock tohash(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;
}
Reply


Messages In This Thread
How to uncode MD5 hash? - by Moron - 04.07.2011, 08:52
Re: How to uncode MD5 hash? - by RyDeR` - 04.07.2011, 08:53
Re: How to uncode MD5 hash? - by Moron - 04.07.2011, 08:59
Re: How to uncode MD5 hash? - by RyDeR` - 04.07.2011, 09:02
Re: How to uncode MD5 hash? - by Moron - 04.07.2011, 09:04
Re: How to uncode MD5 hash? - by Danny - 04.07.2011, 09:04
Re: How to uncode MD5 hash? - by RyDeR` - 04.07.2011, 09:08
Re: How to uncode MD5 hash? - by Sasino97 - 04.07.2011, 09:22
Re: How to uncode MD5 hash? - by Mean - 04.07.2011, 10:13
Re: How to uncode MD5 hash? - by Moron - 04.07.2011, 10:44

Forum Jump:


Users browsing this thread: 2 Guest(s)