Skip to content

Commit

Permalink
default cli markovchain order = 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Aizen committed Oct 7, 2024
1 parent a1b0571 commit 23717e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/genpw/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func main() {
- 's' symbol, 'd' digit.
`)
passwords := flag.Uint64("n", 6, "number of passwords to generate")
depth := flag.Uint64("d", 3, "markov chain depth, higher values lead to more plausible words but lower entropy")
depth := flag.Uint64("d", 2, "markov chain depth, higher values lead to more plausible words but lower entropy")
flag.Parse()

g := cryptipass.NewCustomInstance(cryptipass.WordListEFF(), int(*depth))
Expand Down

0 comments on commit 23717e3

Please sign in to comment.