2012-08-15 17:49:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2017-06-10 21:33:55 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2012-08-15 17:49:31 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2012-08-15 17:49:31 +00:00
|
|
|
* Redistributions of the files must retain the above copyright notice.
|
|
|
|
*
|
2017-10-21 19:14:15 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
|
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
2017-06-10 22:23:14 +00:00
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
2012-08-15 17:49:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
App::uses('FormAuthenticate', 'Controller/Component/Auth');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An authentication adapter for AuthComponent. Provides the ability to authenticate using POST data using Blowfish
|
|
|
|
* hashing. Can be used by configuring AuthComponent to use it via the AuthComponent::$authenticate setting.
|
|
|
|
*
|
2015-01-09 12:47:25 +00:00
|
|
|
* ```
|
2012-08-15 17:49:31 +00:00
|
|
|
* $this->Auth->authenticate = array(
|
|
|
|
* 'Blowfish' => array(
|
|
|
|
* 'scope' => array('User.active' => 1)
|
|
|
|
* )
|
|
|
|
* )
|
2015-01-09 12:47:25 +00:00
|
|
|
* ```
|
2012-08-15 17:49:31 +00:00
|
|
|
*
|
2013-07-05 12:36:40 +00:00
|
|
|
* When configuring BlowfishAuthenticate you can pass in settings to which fields, model and additional conditions
|
2012-11-11 21:25:08 +00:00
|
|
|
* are used. See FormAuthenticate::$settings for more information.
|
|
|
|
*
|
2013-03-05 07:05:14 +00:00
|
|
|
* For initial password hashing/creation see Security::hash(). Other than how the password is initially hashed,
|
2012-11-11 21:25:08 +00:00
|
|
|
* BlowfishAuthenticate works exactly the same way as FormAuthenticate.
|
2012-08-15 17:49:31 +00:00
|
|
|
*
|
|
|
|
* @package Cake.Controller.Component.Auth
|
2013-07-05 12:15:18 +00:00
|
|
|
* @since CakePHP(tm) v 2.3
|
2013-07-07 06:52:12 +00:00
|
|
|
* @see AuthComponent::$authenticate
|
2014-09-02 15:03:22 +00:00
|
|
|
* @deprecated 3.0.0 Since 2.4. Just use FormAuthenticate with 'passwordHasher' setting set to 'Blowfish'
|
2012-08-15 17:49:31 +00:00
|
|
|
*/
|
|
|
|
class BlowfishAuthenticate extends FormAuthenticate {
|
|
|
|
|
|
|
|
/**
|
2013-05-20 06:44:35 +00:00
|
|
|
* Constructor. Sets default passwordHasher to Blowfish
|
2012-08-15 17:49:31 +00:00
|
|
|
*
|
2013-05-20 06:44:35 +00:00
|
|
|
* @param ComponentCollection $collection The Component collection used on this request.
|
|
|
|
* @param array $settings Array of settings to use.
|
2012-08-15 17:49:31 +00:00
|
|
|
*/
|
2013-05-20 06:44:35 +00:00
|
|
|
public function __construct(ComponentCollection $collection, $settings) {
|
|
|
|
$this->settings['passwordHasher'] = 'Blowfish';
|
|
|
|
parent::__construct($collection, $settings);
|
2012-08-15 17:49:31 +00:00
|
|
|
}
|
2013-05-20 06:44:35 +00:00
|
|
|
|
2012-08-15 17:49:31 +00:00
|
|
|
}
|