This is a password manager & password generator for your personal use.
This application is built using Scene Builder, Java, and Intellij. It was built as a part of my own interests in having a safe program where I was the author. I don't really trust large companies to store my personal information. Thus, I made a solution for myself. This app combines a password manager with a password generator. This app will keep your online profile secure. The application uses AES encryption to secure your information. I left the choice up to the user when to encrypt / decrypt info and where to load and save the information on your computer.
The dependencies are JavaFX v21 and the external jars included in the "lib" folder
The runnable jar file is located in the "input" folder
You can make an executable installer from my project using java's jpackage tool and the following commands:
jlink --module-path "Your path to JavaFX-Mods-jars" --add-modules=ALL-MODULE-PATH --output runtime
jpackage -t exe --name Passman --description "Password manager Author: Jeremy Tipton" --app-version 1.0.0 --input input
--dest output --main-jar Passman.jar --win-shortcut --runtime-image runtime --icon src\images\Passman1.ico
If you just want to run the program from the executable jar in the "input" folder, you can use the command:
java -jar --module-path "YOUR PATH TO\javafxsdk21.0.6\lib" --add-modules=ALL-MODULE-PATH Passman.jar
Contributor’s names and contact info
Jeremy Tipton
@tiptonspiderj1
- 1.0.0
- Initial Release
If you have any feedback, please reach out to me at tiptonspiderj1@aol.com
Inspiration, code snippets, etc.