Enum Class PasswordGenerator.PasswordStrength

java.lang.Object
java.lang.Enum<PasswordGenerator.PasswordStrength>
page.codeberg.friedolyn.crypto.PasswordGenerator.PasswordStrength
All Implemented Interfaces:
Serializable, Comparable<PasswordGenerator.PasswordStrength>, Constable
Enclosing class:
PasswordGenerator

public static enum PasswordGenerator.PasswordStrength extends Enum<PasswordGenerator.PasswordStrength>
Indicates how hard it is to guess a specific password.
  • UNKNOWN - The strength of the password could not be estimated.
  • WEAK - The password is easy to guess.
  • FAIR - The password is not too hard to guess.
  • GOOD - The password is hard to guess.
  • STRONG - The password is very hard to guess.
  • VERY_STRONG - The password is almost impossible to guess.