MD5 & MD5 SALT
#3

Solved it, found a useful function.
pawn Код:
stock HashMyBBPassword(string[], salt[])
{
    new string2[96];
 format(string2, sizeof(string2), "%s%s", MD5_Hash(salt), MD5_Hash(string));
 for (new i; i < sizeof(string2); i++) string2[i] = tolower(string2[i]);
    format(string2, sizeof(string2), "%s", MD5_Hash(string2));
    SendClientMessageToAll( -1, string2);
    return string2;

}
Reply


Messages In This Thread
MD5 & MD5 SALT - by AA9 - 09.04.2014, 15:14
Re: MD5 & MD5 SALT - by AA9 - 09.04.2014, 15:48
Re: MD5 & MD5 SALT - by AA9 - 09.04.2014, 15:56
Re: MD5 & MD5 SALT - by Micheal123 - 09.04.2014, 15:59

Forum Jump:


Users browsing this thread: 1 Guest(s)