Guest User

Untitled

a guest
Aug 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. function wp_hash( $data, $scheme = 'auth' ) {
  2. $salt = wp_salt( $scheme );
  3. return hash_hmac( 'md5', $data, $salt );
  4. }
Add Comment
Please, Sign In to add comment