Advertisement
Squito

BKKCrypt

Jul 22nd, 2017
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. <?PHP
  2. function BKKCrypt($password)
  3. {
  4.     $options['cost']=12;
  5.     $jelszo=password_hash($password, PASSWORD_BCRYPT, $options);
  6.     return $password;
  7. }
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement