register help
#3

Use this to create the password.
pawn Код:
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;
}
Reply


Messages In This Thread
register help - by Corona - 03.04.2013, 18:41
Re: register help - by MarioVPS - 03.04.2013, 18:48
Re: register help - by HurtLocker - 03.04.2013, 19:00

Forum Jump:


Users browsing this thread: 2 Guest(s)