Class SimplePasswordHasher

Simple password hashing class.

AbstractPasswordHasher
Extended by SimplePasswordHasher
Package: Cake\Controller\Component\Auth
Copyright: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
License: MIT License
Location: Cake/Controller/Component/Auth/SimplePasswordHasher.php

Properties summary

  • $_config protected
    array
    Config for this object.

Method Summary

  • check() public
    Check hash. Generate hash for user provided password and check against existing hash.
  • hash() public
    Generates password hash.

Method Detail

check()source public

check( string $password , string $hashedPassword )

Check hash. Generate hash for user provided password and check against existing hash.

Parameters

string $password
Plain text password to hash.
string $hashedPassword
Existing hashed password.

Returns

boolean
True if hashes match else false.

hash()source public

hash( string $password )

Generates password hash.

Parameters

string $password
Plain text password to hash.

Returns

string
Password hash

Link

http://book.cakephp.org/2.0/en/core-libraries/components/authentication.html#hashing-passwords

Methods inherited from AbstractPasswordHasher

__construct()source public

__construct( array $config array() )

Constructor

Parameters

array $config optional array()
Array of config.

config()source public

config( array $config null )

Get/Set the config

Parameters

array $config optional null
Sets config, if null returns existing config

Returns

array
Returns configs

Properties detail

$_configsource

protected array

Config for this object.

array('hashType' => null)

© 2005–2016 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/2.9/class-SimplePasswordHasher.html