1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

Use cipher AES-256-CBC

- Fix #898, resolve #898
- Change cipher from Rinjdael-128 to AES-256-CBC
This commit is contained in:
Holger Lösken 2016-07-02 22:08:07 +02:00
parent 5f433f2ed9
commit 70db153196
2 changed files with 1 additions and 2 deletions

View File

@ -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

View File

@ -84,7 +84,7 @@ return [
'key' => env('APP_KEY', 'SomeRandomString'),
'cipher' => env('APP_CIPHER', MCRYPT_RIJNDAEL_128),
'cipher' => env('APP_CIPHER', 'AES-256-CBC'),
/*
|--------------------------------------------------------------------------