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 |
What is the default session timeout duration?
What is blueprint in laravel?
What are the difference between latest() and oldest() in laravel?
What is uri in laravel?
What is laravel best for?
What are the advantages of using laravel?
What is dd () in laravel?
Explain validation concept in laravel.
Explain the concept of encryption and decryption in laravel.
What is laravel artisan?
How to do 301 redirects in laravel?
What is the use of Laravel - Sending Email ?