From 6d5f69f4fa7eeba1d79ac34f6e9dfbd8069da56d Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Wed, 27 Jul 2016 12:21:42 +0300 Subject: [PATCH] Changed default keys to be 32 length --- .env.example | 2 +- config/app.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 4fa45a2e5d..de63021933 100644 --- a/.env.example +++ b/.env.example @@ -1,7 +1,7 @@ APP_ENV=production APP_DEBUG=false APP_URL=http://ninja.dev -APP_KEY=SomeRandomString +APP_KEY=SomeRandomStringSomeRandomString APP_CIPHER=AES-256-CBC DB_TYPE=mysql diff --git a/config/app.php b/config/app.php index 4068375778..30df9f6caf 100644 --- a/config/app.php +++ b/config/app.php @@ -82,7 +82,7 @@ return [ | */ - 'key' => env('APP_KEY', 'SomeRandomString'), + 'key' => env('APP_KEY', 'SomeRandomStringSomeRandomString'), 'cipher' => env('APP_CIPHER', 'AES-256-CBC'),