Home Backend Development PHP Tutorial PHP password_hash() usage example_PHP tutorial

PHP password_hash() usage example_PHP tutorial

Jul 13, 2016 am 10:35 AM
hash php

1. Foreword
PHP5.5 provides many new features and API functions, one of which is the Password Hashing API (create and verify hashed passwords).
It contains 4 functions: password_get_info(), password_hash(), password_needs_rehash(), password_verify().
Before PHP5.5, we may use encryption methods such as md5 or sha1 for password encryption (no one saves plain text like CSDN does...), such as:
echo md5("123456 "); //Output: e10adc3949ba59abbe56e057f20f883e
But simple md5 encryption is easy to crack through the dictionary. You can get the original password by just finding a md5 decryption website.
2. Password Hashing API
The Password Hashing API provided by php5.5 can solve these problems very well.
Let’s look at the password_hash() function first:

Copy the code The code is as follows:
string password_hash ( string $password , integer $ algo [, array $options ])

It has three parameters: password, hash algorithm, options. The first two items are required.
Let us simply create a hashed password using password_hash():
Copy the code The code is as follows:
$pwd = " 123456";
$hash = password_hash($pwd, PASSWORD_DEFAULT);
echo $hash;

The output result of the above example is similar: $2y$10$4kAu4FNGuolmRmSSHgKEMe3DbG5pm3diikFkiAKNh.Sf1tPbB4uo2
And refresh the page Hash values ​​are also constantly changing.
After the hash value is created, we can use password_verify() to verify whether the password matches the hash value:
Copy the code The code is as follows:
boolean password_verify ( string $password , string $hash )

It receives 2 parameters: password and hash value, and returns a Boolean value. Check whether the previously generated hash value matches the password:

Copy code The code is as follows:
if (password_verify($pwd,'$2 y$10$4kAu4FNGuolmRmSSHgKEMe3DbG5pm3diikFkiAKNh.Sf1tPbB4uo2')) {

echo "Password is correct";
} else {
echo "Password is wrong";
}

Basically, you can use the above two functions to safely create and verify hash passwords. There are also two other API functions:

Copy code The code is as follows:
password_get_info() //View relevant information about the hash value
password_needs_rehash() //Check whether a hash value was created using a specific algorithm and options

Three , Comments
Although the hashed password created through password_hash() is more secure, it reduces interoperability.
If we use md5 method and use standard MD5 encryption in php, it can be easily verified by other languages, such as node.js:
Copy code The code is as follows:
var hash = crypto.createHash('md5').update("123456").digest('hex');
if(hash == "e10adc3949ba59abbe56e057f20f883e") console .log('Password is correct');

The hash value encrypted using password_hash() can basically only be verified through PHP's password_verify.
These two methods have their own advantages and disadvantages. Whether to use md5 (or sha1, etc.) + salt (interference string) or password_hash() depends on the specific situation.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/742453.htmlTechArticle 1. Introduction PHP5.5 provides many new features and API functions, one of which is the Password Hashing API (create and verify the hashed password). It contains 4 functions: password_get_info(), password...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles