Java console application designed as a proof of concept for another project. (Created and tested on windows 10. Needs java-19 installed)
Users can generate passwords from a list of available options.
It is possible to create a list of excluded characters which will not be selected when the password is created. For example, the user might exclude the characters " ilL1| " or "0Oo" because they look similar to each other. Only 1 group of characters can be excluded up to as many as you want. If you don't want to exclude any character then siply, press "enter" when the program asks you to
Available options
- Digits
- All characters
- Lowercase characters
- Uppercase characters
- Symbols
- All of the above
Updates will be done in the near future. The program does not support two or more options at this time
There is a .bat file called "start_application.bat" at out/artifacts/Password_Generator_jar.
It launches the .jar file containing the program. You may rename it however you want. In case you delete the file you can easily recreate it
How to recreate the file
- Find the directory of "Password_Generator.jar"
- Create a new document with the extension of .bat. You may name it however you want
- Edit the .bat file and type -> java -jar Password_Generator.jar
- Click on the .bat file and launch the application
You may also launch the application through windows cmd.
- Find the directory of "Password_Generator.jar"
- Open cmd at the same directory
- Type java -jar Password_Generator.jar and it will launch the application
I recommend following option 1 for easier access.