About 211,000 results
Open links in new tab
  1. php - How to create a laravel hashed password - Stack Overflow

    Hashing A Password Using Bcrypt in Laravel: $password = Hash::make('yourpassword'); This will create a hashed password. You may use it in your controller or even in a model, for example, if a user submits a password using a form to your controller using POST method then you may hash it using something like this:

  2. mysql - Laravel Encription - Stack Overflow

    Mar 28, 2022 · Laravel provides standard data encryption/decryption methods, see Encrypt/Decrypt DB fields in laravel. However, the APP_KEY attribute stored in the .env file is used as the shared key for encryption, see https://simonkollross.de/posts/encrypting-laravel-eloquent-attributes-using-a-custom-cast.

  3. Encrypt Database Values in Laravel with DB Encrypter

    Jan 31, 2020 · Laravel DB Encrypter is a package by Daniel Częstki that automatically encrypts and decrypts values stored in database fields. It uses Laravel’s standard Encryption via a trait: use betterapp\LaravelDbEncrypter\Traits\EncryptableDbAttribute ;

  4. Laravel authentication with encrypt password - Stack Overflow

    Jan 1, 2018 · Use the bcrypt() helper to encrypt a password: @JimL Laravel uses bcrypt() by default to encrypt passwords. bcrypt() is just a shourtcut for Hash::make(). Yes but when they change their mind and update to use a new hash algo then I assume the Hash facade will offer the same portability as the standard password lib.

  5. Securing Sensitive Data with Laravel’s Built-in Encryption

    Aug 30, 2024 · Laravel provides built-in encryption features that make it easy to secure critical information in your database. Let’s explore how to implement and use Laravel’s encryption capabilities...

  6. How to Encrypt and Decrypt Database Fields in Laravel 10

    Oct 25, 2023 · In this step-by-step guide, I will explore how to encrypt and decrypt database fields in Laravel 10, ensuring that my sensitive data is shielded from prying eyes and unauthorized access. By employing encryption, I can fortify my application against potential breaches, data leaks, and privacy violations.

  7. Encryption - Laravel 12.x - The PHP Framework For Web Artisans

    Laravel's encryption services provide a simple, convenient interface for encrypting and decrypting text via OpenSSL using AES-256 and AES-128 encryption. All of Laravel's encrypted values are signed using a message authentication code (MAC) so that their underlying value cannot be modified or tampered with once encrypted.

  8. How to Encrypt Data in Laravel: Tutorial & Examples

    Jan 16, 2024 · In this tutorial, we have discussed several ways to encrypt and decrypt data within a Laravel application. We’ve covered basic usage, routing, controller implementation, database field encryption, cookie protection, and even how to define custom encryption drivers.

  9. Laravel 10 How To Encrypt Decrypt Values in Database - Online …

    Oct 15, 2023 · Enhance your Laravel 10 skills with our tutorial on encrypting and decrypting values in your database. Learn the ins and outs of data security and privacy with practical examples.

  10. Encrypting and Decrypting Data in Laravel | by Iqbal Ramadhani

    Dec 9, 2023 · Laravel provides a straightforward way to encrypt data using the encrypt function. This function uses the OpenSSL library to perform the encryption, ensuring a high level of security....

  11. Some results have been removed
Refresh