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

Merge pull request #945 from codedge/#898-Support-AES-Cipher

Use cipher AES-256-CBC
This commit is contained in:
Hillel Coren 2016-07-02 23:17:17 +03:00 committed by GitHub
commit 3c9059940c
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'),
/*
|--------------------------------------------------------------------------