Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.06 KB

README.md

File metadata and controls

49 lines (32 loc) · 1.06 KB

GauPass

Secure password generator written in Java programs screenshot

Features

Password generation

 ☒ Toggle to use upper case letters
 ☒ Toggle to use Numbers
 ☒ Toggle to use special characters
 ☒ Generate password of any length
 ☒ Quick copy to clipboard
 ☐ TBA

Password Strength checker

 ☒ Evaluate passwords strength with score up to 100
 ☒ Check if password contains letters
 ☒ Check if password contains numbers
 ☒ Check if password contains special characters
 ☒ Check if password is enough length
 ☒ Easter egg (check password "unix" strength)
 ☐ TBA

Dependencies

  • Jar
  • Java
  • Java Swing

Instalation

Move to src directory

cd src

Compile program into .class files

javac Main.java

Create a Jar file using .class files and Manifest.txt

jar cfm GauPass.jar Manifest.txt ./*

Run the generated Jar file

java -jar GauPass.jar