From 2ee557d44a351988e3cb095733964a999a42b1d0 Mon Sep 17 00:00:00 2001 From: Ironside Date: Sat, 16 Jun 2018 10:44:15 +0300 Subject: [PATCH] avoiding RuntimeException while upgrading to 5.5 changed to AES-128-CBC `The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key lengths.` --- config/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/app.php b/config/app.php index 9ee6efe..784c391 100755 --- a/config/app.php +++ b/config/app.php @@ -80,7 +80,7 @@ 'key' => env('APP_KEY', 'SomeRandomString'), - 'cipher' => 'AES-256-CBC', + 'cipher' => 'AES-128-CBC', /* |--------------------------------------------------------------------------