Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. /**
  2. * @param string $password
  3. * @return string
  4. */
  5. public function passwordHash($password)
  6. {
  7. $passHash = hash_pbkdf2("sha256", $password, "BaprAmanSelaluAminAja, '999', 100, false);
  8. return $passHash;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement