What is meant by Laravel - Hashing ?
Answer / sunil kumar
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 the Hash facade which provides a secure way for storing passwords in a hashed manner.
The hashed passwords are stored using make method.
This method allows managing the work factor of the bcrypt hashing algorithm, which is popularly used in Laravel.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to clear cache in laravel?
What is ajax in laravel?
How to configure route cache in laravel?
What is database migration in laravel?
List the requirements to install valet?
How to distroy cookies in laravel?
Please explain what are the main differences between laravel 4 and laravel 5.x?
Can you explain about serialization?
What is current stable version of laravel?
Do you know what is method spoofing in laravel?
What is blueprint in laravel?
Explain the concept of events in laravel.