I am currently using http://www.openwall.com/phpass/ to hash my passwords out.
The hash results in a different hash even if the same password is entered.
I check the password like this:
$verify = $hasher->CheckPassword($password, $info['password']);
$password is the entered value, and $info['password'] is the hash in the database.
Right now, I am setting cookies like this:
setcookie(user, $_POST['username'], $hour, $path);
setcookie(pass, $_POST['password'], $hour, $path);
Which results in my cookie being password without any hashing. How can a make my cookie more secure that stores my password?
If I can't store them in cookies, where would I store them?