Advertisement
fabi0

Untitled

Nov 7th, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Models;
  4.  
  5. class Hash {
  6.  
  7.     private function __construct() {
  8.        
  9.     }
  10.  
  11.     public static function generateHash($string, $cost = 12) {
  12.  
  13.         return password_hash($string, PASSWORD_BCRYPT, array('cost' => $cost));
  14.     }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement