MD5 Hash = ? - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: MD5 Hash = ? (
/showthread.php?tid=267741)
MD5 Hash = ? -
Micheal_ - 09.07.2011
is this MD5 hash?
Код:
Encrypt(string[])
{
for(new x=0; x < strlen(string); x++)
{
string[x] += (3^x) * (x % 15);
if(string[x] > (0xff))
{
string[x] -= 256;
}
}
}
Found at
http://pastebin.com/f33ccb645
Thanks!
Re: MD5 Hash = ? -
Pghpunkid - 09.07.2011
Try generating a hash using that, then making another using the same phrase, and comparing the 2.
There are plenty of MD5 hash generators on the internet. ****** search for one.
Re: MD5 Hash = ? -
Mauzen - 09.07.2011
I doubt this is a MD5 algorithm. MD5 only returns letters and numbers, but this can might return any kind of ascii signs in the hashed string.
Also this is partially revertible, while MD5 cant be decrypted.