Skip to content

Commit

Permalink
increase secret key length to 64
Browse files Browse the repository at this point in the history
  • Loading branch information
tymondesigns committed Mar 5, 2019
1 parent 5f42ad9 commit f72b8eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/JWTGenerateSecretCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class JWTGenerateSecretCommand extends Command
*/
public function handle()
{
$key = Str::random(32);
$key = Str::random(64);

if ($this->option('show')) {
$this->comment($key);
Expand Down

0 comments on commit f72b8eb

Please sign in to comment.