Home> PHP Framework> Laravel> body text

Laravel - Hashing

PHPz
Release: 2024-08-27 11:56:54
Original
1018 people have browsed it

Hashing is the process of transforming a string of characters into a shorter fixed value or a key that represents the original string. Laravel uses theHashfacade which provides a secure way for storing passwords in a hashed manner.

Basic Usage

The following screenshot shows how to create a controller namedpasswordControllerwhich is used for storing and updating passwords −

Laravel - Hashing

The following lines of code explain the functionality and usage of thepasswordController

user()->fill([ 'password' => Hash::make($request->newLaravel - Hashing) // Hashing passwords ])->save(); } }
Copy after login

The hashed passwords are stored usingmakemethod. This method allows managing the work factor of thebcrypthashing algorithm, which is popularly used in Laravel.

Verification of Laravel - Hashing against Hash

You should verify the password against hash to check the string which was used for conversion. For this you can use thecheckmethod. This is shown in the code given below −

if (Hash::check('plain-text', $hashedLaravel - Hashing)) { // The passwords match... }
Copy after login

Note that thecheckmethod compares the plain-text with thehashedLaravel - Hashingvariable and if the result is true, it returns a true value.

The above is the detailed content of Laravel - Hashing. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!