AnthonyGates

hash

Jun 14th, 2015
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.26 KB | None | 0 0
  1. stock AG_Hash(input[128], salt[32]){
  2.     new process[161], r_input[128], r_salt[32], output[34];
  3.     reverse(input, r_input), reverse(salt, r_salt);
  4.     format(process, sizeof(process), "%s%s",r_input, r_salt);
  5.     output = MD5_Hash(MD5_Hash(process));
  6.     return output;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment