Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- stock AG_Hash(input[128], salt[32]){
- new process[161], r_input[128], r_salt[32], output[34];
- reverse(input, r_input), reverse(salt, r_salt);
- format(process, sizeof(process), "%s%s",r_input, r_salt);
- output = MD5_Hash(MD5_Hash(process));
- return output;
- }
Advertisement
Add Comment
Please, Sign In to add comment