CakePHP - How do I implement blowfish hashing for passwords?
Struggling to find answers to a few basic questions about using Blowfish in Cake 2.4. AppController.php public $components = array( 'Auth' => array( 'authenticate' => array( 'Form' => array( 'fields' => array( 'username' => 'email' ), 'passwordHasher' => 'Blowfish' ) ) ), 'Cookie', 'Session' ); What now? How do I log in? UsersController.php public function login() { if (!empty($this->request->data)) { if ($this->Auth->login()) { $this->redirect($this->Auth->redirectUrl()); } } } What do I need to add to this? I'm getting the following error if I try to log in: Warning (512): Invalid salt: for