SA-MP Forums Archive
(Help) Remove encryption on login verification - 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)
+--- Thread: (Help) Remove encryption on login verification (/showthread.php?tid=590268)



(Help) Remove encryption on login verification - extractor304 - 27.09.2015

Hello , i need help for remove the udb_hash from de login verification , i have to do this for check one thing

The code is this :

Код:
if(udb_hash(inputtext) == Info[playerid][pKey])
Please help me for change this code in a code without encryption.

Thanks


Re: (Help) Remove encryption on login verification - ZBits - 27.09.2015

Код:
if(inputtext == Info[playerid][pKey])



Re: (Help) Remove encryption on login verification - Vince - 27.09.2015

That "encryption" is there for a reason and in the interest of protecting players' privacy I'm not going to answer your inquiry. Even though udb_hash (also known as adler32) is an extremely weak checksum algorithm.


Re: (Help) Remove encryption on login verification - Sellize - 27.09.2015

PHP код:
if(inputtext == Info[playerid][pKey]) 
there you go sir, im very scripter btw!