Skip to content

Commit

Permalink
Add gen-large password generation option
Browse files Browse the repository at this point in the history
  • Loading branch information
Raggaer committed Apr 2, 2019
1 parent 2901b36 commit 0a0baf8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions entry.go
Expand Up @@ -311,6 +311,8 @@ func generateEntryPassword(input string) (string, error) {
return password.Generate(22, 4, 0, false, true)
case "gen-complex":
return password.Generate(22, 5, 6, false, false)
case "gen-large":
return password.Generate(30, 7, 7, false, false)
default:
return input, nil
}
Expand Down

0 comments on commit 0a0baf8

Please sign in to comment.