Use cipher AES-256-CBC
- Fix #898, resolve #898 - Change cipher from Rinjdael-128 to AES-256-CBC
This commit is contained in:
parent
5f433f2ed9
commit
70db153196
2 changed files with 1 additions and 2 deletions
|
|
@ -1,7 +1,6 @@
|
|||
APP_ENV=production
|
||||
APP_DEBUG=false
|
||||
APP_URL=http://ninja.dev
|
||||
APP_CIPHER=rijndael-128
|
||||
APP_KEY=SomeRandomString
|
||||
|
||||
DB_TYPE=mysql
|
||||
|
|
|
|||
|
|
@ -84,7 +84,7 @@ return [
|
|||
|
||||
'key' => env('APP_KEY', 'SomeRandomString'),
|
||||
|
||||
'cipher' => env('APP_CIPHER', MCRYPT_RIJNDAEL_128),
|
||||
'cipher' => env('APP_CIPHER', 'AES-256-CBC'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue