/home/desid573/public_html/family/pdd/lib/Cake/Controller/Component/Auth
NameSizeModeActions
AbstractPasswordHasher.php19770644editdlrm
ActionsAuthorize.php14200644editdlrm
BaseAuthenticate.php74300644editdlrm
BaseAuthorize.php50840644editdlrm
BasicAuthenticate.php40570644editdlrm
BlowfishAuthenticate.php20290644editdlrm
BlowfishPasswordHasher.php16080644editdlrm
ControllerAuthorize.php21540644editdlrm
CrudAuthorize.php34540644editdlrm
DigestAuthenticate.php77730644editdlrm
FormAuthenticate.php29700644editdlrm
SimplePasswordHasher.php16800644editdlrm
Edit: /home/desid573/public_html/family/pdd/lib/Cake/Controller/Component/Auth/AbstractPasswordHasher.php (1977B)
config($config); } /** * Get/Set the config * * @param array $config Sets config, if null returns existing config * @return array Returns configs */ public function config($config = null) { if (is_array($config)) { $this->_config = array_merge($this->_config, $config); } return $this->_config; } /** * Generates password hash. * * @param string|array $password Plain text password to hash or array of data * required to generate password hash. * @return string Password hash */ abstract public function hash($password); /** * Check hash. Generate hash from user provided password string or data array * and check against existing hash. * * @param string|array $password Plain text password to hash or data array. * @param string $hashedPassword Existing hashed password. * @return bool True if hashes match else false. */ abstract public function check($password, $hashedPassword); }