decrypting udb_hash?
#1

Does anyone have a stock for it?

pawn Код:
stock udb_hash(buf[]) { //Credits to Dracoblue
    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
decrypting udb_hash? - by 2KY - 12.02.2012, 18:07
Re: decrypting udb_hash? - by iTorran - 12.02.2012, 18:10
Re: decrypting udb_hash? - by Madd Kat - 12.02.2012, 18:10
Re: decrypting udb_hash? - by 2KY - 12.02.2012, 18:12
Re: decrypting udb_hash? - by iTorran - 12.02.2012, 18:12
Re: decrypting udb_hash? - by 2KY - 12.02.2012, 18:14
Re: decrypting udb_hash? - by Vince - 12.02.2012, 18:15
Re: decrypting udb_hash? - by Madd Kat - 12.02.2012, 18:16
Re: decrypting udb_hash? - by 2KY - 12.02.2012, 18:17

Forum Jump:


Users browsing this thread: 1 Guest(s)