hash php function code example
Example 1: hash a password php
// To hash the password, use
password_hash("MySuperSafePassword!", PASSWORD_DEFAULT)
// To compare hash with plain text, use
password_verify("MySuperSafePassword!", $hashed_password)
Example 2: php hash
$password = 'test123';
/*
Always use salt for security reasons.
I'm using the BCRYPT algorithm use any valid one you like.
*/
$options['salt'] = 'usesomesillystringforsalt';
$options['cost'] = 3;
echo password_hash($password, PASSWORD_BCRYPT, $options)
Example 3: php hash
<?php
echo hash('ripemd160', 'The quick brown fox jumped over the lazy dog.');
?>
Example 4: php password_hash
<?php
/**
* We just want to hash our password using the current DEFAULT algorithm.
* This is presently BCRYPT, and will produce a 60 character result.
*
* Beware that DEFAULT may change over time, so you would want to prepare
* By allowing your storage to expand past 60 characters (255 would be good)
* Other algorithms such as PASSWORD_BCRYPT and PASSWORD_ARGON2ID may be used
* instead of PASSWORD_DEFAULT
*/
echo password_hash("rasmuslerdorf", PASSWORD_DEFAULT);
?>