PHP password_hash() usage example_PHP tutorial
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:
It has three parameters: password, hash algorithm, options. The first two items are required.
Let us simply create a hashed password using password_hash():
$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:
It receives 2 parameters: password and hash value, and returns a Boolean value. Check whether the previously generated hash value matches the password:
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:
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:
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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

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