Skip to content

Commit

Permalink
Added Preset 5 - Close #4
Browse files Browse the repository at this point in the history
Added a new preset with 32 character string for longer passwords.
  • Loading branch information
Moinuddin S. Khaja authored Feb 27, 2018
1 parent 83f3a06 commit 67aa278
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/RPGController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ public function Preset($preset)
$size = 16;
$dashes = 1;
$characters = 'luds';
} elseif ($preset == 5) {
$size = 32;
$dashes = 1;
$characters = 'luds';
}

return $this->Generate($characters, $size, $dashes);
Expand Down

0 comments on commit 67aa278

Please sign in to comment.