Skip to content

Commit 1ce080b

Browse files
committed
use default cipher
1 parent 6b49753 commit 1ce080b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Illuminate/Foundation/Console/EnvironmentDecryptCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function handle()
7878
return Command::FAILURE;
7979
}
8080

81-
$cipher = $this->option('cipher') ?: 'aes-128-cbc';
81+
$cipher = $this->option('cipher') ?: 'AES-256-CBC';
8282

8383
$key = $this->parseKey($key);
8484

src/Illuminate/Foundation/Console/EnvironmentEncryptCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function __construct(Filesystem $files)
6767
*/
6868
public function handle()
6969
{
70-
$cipher = $this->option('cipher') ?: 'aes-128-cbc';
70+
$cipher = $this->option('cipher') ?: 'AES-256-CBC';
7171

7272
$key = $this->option('key');
7373

0 commit comments

Comments
 (0)