Merge pull request #945 from codedge/#898-Support-AES-Cipher
Use cipher AES-256-CBC
This commit is contained in:
commit
3c9059940c
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