This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Decode in Python a string encoded in Laravel 6.x | |
String ENCODED in Laravel 6.x with default pakage | |
Illuminate\Support\Facades\Crypt | |
and command like: | |
$encrypted = Crypt::encrypt('Hello world.'); | |
Test in | |
php artisan tinker | |
>>use Illuminate\Support\Facades\Crypt; |