-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Password length #25
Comments
For arbitrary characters, capping the length is as simple as: Where For words, use the following: Where If you need passwords longer than the default length, then concatenate multiple outputs and run |
peteyago, while that is valid, it's a bit hackish, and would waste processor time if you're, say, generating a batch of passwords less than 64 characters long. Imagine I was creating a batch of 1000 8-character-long passwords. In a perfect world, only 12.5% of the output the program's generated has ended up being useful. An option on the command line would be nice. |
Yeah, I think it should be a command line option. A more useful alternative option might be to specify the entropy that you want, e.g.
I think there should be a |
A request: add a flag to set the length of the generated password/amount of words/etc.
The text was updated successfully, but these errors were encountered: