Last active
August 29, 2015 14:07
-
-
Save markandrewj/a2e054b7155a4f084a99 to your computer and use it in GitHub Desktop.
PHP bcrypt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Usage 1: | |
echo password_hash("rasmuslerdorf", PASSWORD_DEFAULT)."\n"; | |
// $2y$10$xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | |
// For example: | |
// $2y$10$.vGA1O9wmRjrwAVXD98HNOgsNpDczlqm3Jq7KnEd1rVAGv3Fykk1a | |
// Usage 2: | |
$options = array('cost' => 11); | |
echo password_hash("rasmuslerdorf", PASSWORD_BCRYPT, $options)."\n"; | |
// $2y$11$6DP.V0nO7YI3iSki4qog6OQI5eiO6Jnjsqg7vdnb.JgGIsxniOn4C | |
To verify a user provided password against an existing hash, you may use the password_verify() as such: | |
<?php | |
// See the password_hash() example to see where this came from. | |
$hash = '$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq'; | |
if (password_verify('rasmuslerdorf', $hash)) { | |
echo 'Password is valid!'; | |
} else { | |
echo 'Invalid password.'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment