2

我正在尝试使用 bcrypt 实现登录系统。我在用户模型的 beforeSave() 方法上有这段代码:

public function beforeSave($options = array()) {



    if (!$this->id && !isset($this->data[$this->alias][$this->primaryKey])) { // insert
        /*Hash the password*/
        $this->data['User']['password'] = Security::hash($this->data[$this->alias]['password'], 'blowfish');

        /*Set the username the same as the email*/
        $this->data['User']['username'] = $this->data['User']['email'];

    }
    parent::beforeSave($options);
}

此代码在将密码存储到数据库之前成功地对密码进行哈希处理。

对于登录过程,我在视图中有这个表单:

echo $this->Form->create('User', array('action' => 'login'));

    echo $this->Form->input('username', array(
        'class' => 'login-input',
        'placeholder' => $input_username_default_text,
        'id' => 'username',
        'label' => false,
        'div' => false,
        'type' => 'text'
    ));
    echo $this->Form->input('password', array(
        'class' => 'login-input',
        'placeholder' => $input_password_default_text,
        'id' => 'password',
        'label' => false,
        'div' => false,
        'type' => 'text'
    ));
    echo $this->Form->submit(__('SIGN IN'), array(
        'class' => 'login-input',
        'type' => 'submit'
    ));

...然后在 UsersController login() 方法中:

public function login() {
    $this->set('body_class', 'login-page');
    if ($this->request->is('post')) {
        if ($this->Auth->login()) { //Always fails...

            debug('HELLO '.$this->session->read('Auth.User'));
        } else {

        }
    }
}

我的 AppController.php

class AppController extends Controller {

public $components = array(
    'Auth' => array(
        'authenticate' => array(
            'Form' => array(
                'passwordHasher' => 'Blowfish'
            )
        )
    )
);

}

使用此代码登录总是失败。猜猜我做错了什么?

编辑1:

好的,我一直在研究框架,试图了解程序失败的地方。在这种方法中:

// class BlowfishPasswordHasher
public function check($password, $hashedPassword) {
        return $hashedPassword === Security::hash($password, 'blowfish', $hashedPassword);
    }

... $hashedPassword(存储在数据库中的内容)与从 Security::hash($password, 'blowfish', $hashedPassword) 返回的内容不同。所以基本上登录在这里失败。但是我不知道为什么会这样。

在我的调试中,检索到了这个结果:

$hashedPassword - $2a$10$f39m7NJBx3fIBrqq/9TZEueNJICJiO1dq1LZKlneF7Y(匹配用户表的密码列中存储的内容)

Security::hash() 方法的结果: $2a$10$f39m7NJBx3fIBrqq/9TZEueNJICJiO1dq1LZKlneF7Ykvm35emcPm

如果您注意到它们是相同的,只是方法的结果有 10 个额外的字符。

4

1 回答 1

5

如果您注意到它们是相同的,只是方法的结果有 10 个额外的字符。

听起来您没有在 db 中设置足够长的密码字段长度来存储完整的哈希值。

于 2013-09-19T04:57:33.027 回答