In this example we will see how to encrypt and decrypt string in laravel 8 using crypt helper, As we all know laravel framework provide more security to user and that's why laravel provide encrypt of password or string to user, here we will see how to encrypt or decrypt string in laravel.
You need to use Crypt class to start encryptString and decryptString or some data.
use Crypt;
use App\Model\User;
$user = new User();
$user->password = Crypt::encrypt($data['password']);
$user->save();
public function encrypt()
{
$encrypted = Crypt::encryptString('websolutionstuff');
print_r($encrypted);
}
public function decrypt()
{
$decrypt= Crypt::decryptString('your_encrypted_string');
print_r($decrypt);
}
$data = Request::all();
$user = new User();
$user->password = Crypt::encrypt($data['password']);
$user->save();
foreach ($user as $row)
{
Crypt::decrypt($row->password);
}
In this article, how to send email in laravel 9 using mailgun. we will learn laravel 9 to send emails using mailgun...
Jul-29-2022
In this article, we will see how to install angular in ubuntu. Angular is a framework, library, assets, a...
May-09-2022
Hello, laravel web developers! In this article, we'll see how to use Quill rich text editor in laravel 11. Here, we&...
Sep-04-2024
In this tutorial I will give you information about Introduction of Node.js Modules. Node.js modules provide a way t...
Sep-10-2021