npwg - Secure Password Generator
npwg is a secure password generator written in Rust. With npwg, you can easily generate strong and random passwords or passphrases to protect your online accounts.
Features
- Generate passwords with custom length
- Support various predefined character sets
- Generate multiple passwords at once
- Generate diceware passphrases
- Avoid repeating characters in passwords
- Display statistics about the generated passwords
Installation
Using Cargo
If you have Rust and Cargo installed, you can install npwg using the following command:
This will download and compile the latest version of npwg and install it in your Cargo binary directory.
Manual Installation
- Make sure you have Rust installed on your system. If not, you can download it from the official Rust website: https://www.rust-lang.org/tools/install
- Clone this repository:
- Navigate to the project directory:
- Build the project:
- The executable can be found at
target/release/npwg.
Usage
Options
-l, --length <LENGTH>: Sets the length of the password (or number of words for passphrases) [default: 16]-c, --count <COUNT>: Sets the number of passwords to generate [default: 1]--avoid-repeating: Avoid repeating characters in the password--stats: Show statistics about the generated passwords-a, --allowed <CHARS>: Sets the allowed characters (comma-separated list of predefined sets) [default: allprint]--use-words: Use words instead of characters (generate diceware passphrases)-h, --help: Print help-V, --version: Print version
Predefined Character Sets
symbol1,symbol2,symbol3: Different sets of symbolsdigit: Numeric digitslowerletter: Lowercase lettersupperletter: Uppercase lettersshell: Shell-safe charactershomoglyph1tohomoglyph8: Various homoglyph setsslashes,brackets,punctuation: Specific character typesall,allprint,allprintnoquote, etc.: Various combinations of character types
Examples
Generate a password with the default length (16 characters):
Generate a password with a specific length:
Generate multiple passwords:
Generate a password using only uppercase and lowercase letters:
Generate a diceware passphrase:
Generate a password and display statistics:
Generate a password using the Diceware method. If no diceware wordlist is in ~/.npwg, it will be automatically downloaded from the EFF website:
Generate a password using the Diceware method with a custom number of words. The default number of words is 6. The wordlist will be downloaded if it is not found in ~/.npwg:
Contributing
Contributions are welcome! If you find a bug or have a suggestion for improvement, please open an issue or submit a pull request.
License
This project is licensed under the MIT License.