Suggestion safety
#1

My friend sent me a code and he said that I should put the following code in my script.

stock udb_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;
}

I just want to know what it is, what it will do, and will this be safe for my server.
Reply
#2

It's a password hashing code. In the userfiles, it won't save the exact password user chosen, It'll hash in udb and save it.

#include <dudb>
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)