Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gianniosapostolos/password-generator
Java password generator console application designed as a proof of concept for another project
https://github.com/gianniosapostolos/password-generator
console console-application easy easy-to-use generator intellij intellij-idea java java-19 password password-generator proof-of-concept windows windows-10
Last synced: 27 days ago
JSON representation
Java password generator console application designed as a proof of concept for another project
- Host: GitHub
- URL: https://github.com/gianniosapostolos/password-generator
- Owner: GianniosApostolos
- License: gpl-3.0
- Created: 2022-12-19T10:40:21.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-28T13:06:27.000Z (almost 2 years ago)
- Last Synced: 2023-07-15T11:38:21.422Z (over 1 year ago)
- Topics: console, console-application, easy, easy-to-use, generator, intellij, intellij-idea, java, java-19, password, password-generator, proof-of-concept, windows, windows-10
- Language: Java
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Password-Generator
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
#### 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
### How to use
#### Option 1:
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 itHow to recreate the file
##### Steps
1. Find the directory of "Password_Generator.jar"
2. Create a new document with the extension of **_.bat_**. You may name it however you want
3. Edit the **_.bat_** file and type -> java -jar Password_Generator.jar
4. Click on the **_.bat_** file and launch the application#### Option 2:
You may also launch the application through windows cmd.1. Find the directory of "Password_Generator.jar"
2. Open cmd at the same directory
3. Type java -jar Password_Generator.jar and it will launch the applicationI recommend following option 1 for easier access.