Malfist
Malfist

Reputation: 31785

Using cakephp's Auth component with salted password hashes

How can I make the Auth component of cakephp create, use and store a random salt with the password?

Upvotes: 3

Views: 3144

Answers (3)

codegy
codegy

Reputation: 2339

You can start here http://book.cakephp.org/view/566/Change-Hash-Function , and set the $authenticate variable to your user model:

class User extends AppModel {
    function hashPasswords($data) {
        if (isset($data['User']['password'])) {
            //Get the user to get the salt
            $user = $this->findByUsername($data['User']['username']);
            //Let's say you have a "salt" field in your db 
            $data['User']['password'] = md5($data['User']['password'].$user['User']['salt']);
            return $data;
        }
        return $data;
    }
}

Upvotes: 4

deceze
deceze

Reputation: 521995

Look into overriding the hash function used by the Auth component as described here.

Upvotes: 0

bancer
bancer

Reputation: 7525

There is no such functionality in Auth component. Take a look at Random String generator CakePHP component.

Upvotes: 0

Related Questions