/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/SimplePasswordHasher.php (1680B)
null); /** * Generates password hash. * * @param string $password Plain text password to hash. * @return string Password hash * @link http://book.cakephp.org/2.0/en/core-libraries/components/authentication.html#hashing-passwords */ public function hash($password) { return Security::hash($password, $this->_config['hashType'], true); } /** * Check hash. Generate hash for user provided password and check against existing hash. * * @param string $password Plain text password to hash. * @param string $hashedPassword Existing hashed password. * @return bool True if hashes match else false. */ public function check($password, $hashedPassword) { return $hashedPassword === $this->hash($password); } }