14.07.2011, 06:03
The size of "Password" which is 20+1 (21) has to be enlargened to 129... Therefore the length of the password is bigger to fit the hashed pw
Change it to this:
Instead of
Change it to this:
pawn Код:
new Password[129];
pawn Код:
new Password[20 + 1];