예제 #1
0
파일: bcrypt.php 프로젝트: bosoy83/progtest
 public function __construct(array $config = NULL)
 {
     if (!defined('CRYPT_BLOWFISH') or !CRYPT_BLOWFISH) {
         throw new Bonafide_Exception('This server does not support bcrypt hashing');
     }
     parent::__construct($config);
 }