Refactoring Auth / Security::hash()

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6426 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
nate 2008-02-02 04:51:49 +00:00
parent 881cf3fc0a
commit 71bd08b950
3 changed files with 18 additions and 10 deletions

View file

@ -100,7 +100,8 @@ class Component extends Object {
'className' => $this->controller->name,
'component' => $component,
'file' => Inflector::underscore($component) . '.php',
'base' => $this->controller->base)));
'base' => $this->controller->base
)));
exit();
}
}
@ -110,7 +111,8 @@ class Component extends Object {
'className' => $this->controller->name,
'component' => $component,
'file' => Inflector::underscore($component) . '.php',
'base' => $this->controller->base)));
'base' => $this->controller->base
)));
exit();
}
}

View file

@ -791,7 +791,7 @@ class AuthComponent extends Object {
* @access public
*/
function password($password) {
return Security::hash(Configure::read('Security.salt') . $password);
return Security::hash($password, null, true);
}
/**
* Component shutdown. If user is logged in, wipe out redirect.

View file

@ -110,12 +110,18 @@ class Security extends Object {
*
* @param string $string String to hash
* @param string $type Method to use (sha1/sha256/md5)
* @param boolean $salt If true, automatically appends the application's salt
* value to $string (Security.salt)
* @return string Hash
* @access public
* @static
*/
function hash($string, $type = null) {
function hash($string, $type = null, $salt = false) {
$_this =& Security::getInstance();
if ($salt) {
$string = Configure::read('Security.salt') . $string;
}
if (empty($type)) {
$type = $_this->hashType;
}