Uses of Interface
com.codahale.passpol.BreachDatabase
-
-
Uses of BreachDatabase in com.codahale.passpol
Methods in com.codahale.passpol that return BreachDatabase Modifier and Type Method Description static BreachDatabaseBreachDatabase. anyOf(BreachDatabase... databases)Returns a database which checks the given databases in order.static BreachDatabaseBreachDatabase. haveIBeenPwned()A client for Have I Been Pwned's online password checking.static BreachDatabaseBreachDatabase. haveIBeenPwned(int threshold)A client for Have I Been Pwned's online password checking.static BreachDatabaseBreachDatabase. haveIBeenPwned(java.net.http.HttpClient client, int threshold)A client for Have I Been Pwned's online password checking.static BreachDatabaseBreachDatabase. passwordSet(java.util.Collection<java.lang.String> passwords)Returns an offline database of the given passwords.static BreachDatabaseBreachDatabase. top100K()Returns an offline database of the 100,000 most common passwords.Methods in com.codahale.passpol with parameters of type BreachDatabase Modifier and Type Method Description static BreachDatabaseBreachDatabase. anyOf(BreachDatabase... databases)Returns a database which checks the given databases in order.Constructors in com.codahale.passpol with parameters of type BreachDatabase Constructor Description PasswordPolicy(BreachDatabase breachDatabase, int minLength, int maxLength)Creates aPasswordPolicywith the given password length requirements.
-