Advertisement
Guest User

Untitled

a guest
Aug 13th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $secret = 'DeMxxxxxxxxxw';
  2. $timestamped = $_SERVER['REQUEST_TIME'];
  3. $signature = md5($key + $secret + $timestamped);
  4.    
  5. $signature = md5($key . $secret . $timestamped);
  6.    
  7. // Adding
  8. $signature = md5($key + $secret + $timestamped);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement