09.07.2011, 18:44
is this MD5 hash?
Found at
http://pastebin.com/f33ccb645
Thanks!
Код:
Encrypt(string[]) { for(new x=0; x < strlen(string); x++) { string[x] += (3^x) * (x % 15); if(string[x] > (0xff)) { string[x] -= 256; } } }
http://pastebin.com/f33ccb645
Thanks!