-
Classes in me.gosimple.nbvcxz.matching that implement PasswordMatcher
| Modifier and Type |
Class |
Description |
class |
DateMatcher |
Extract all the possible dates from a password.
|
class |
DictionaryMatcher |
Look for every part of the password that match an entry in our dictionaries
|
class |
RepeatMatcher |
Look for every part of the password that is a repeat of the previous character.
|
class |
SeparatorMatcher |
Extract any likely separator within the password.
|
class |
SequenceMatcher |
Look for every part of the password that is a sequence (abc, 123)
|
class |
SpacialMatcher |
Look for every part of the password that is spacial pattern
This will only return matches where there are at least two consecutive characters.
|
class |
YearMatcher |
Look for every part of the password that matches the year pattern.
|
-
Constructor parameters in me.gosimple.nbvcxz.resources with type arguments of type PasswordMatcher
| Constructor |
Description |
Configuration(java.util.List<PasswordMatcher> passwordMatchers,
java.util.Map<java.lang.String,java.lang.Long> guessTypes,
java.util.List<Dictionary> dictionaries,
java.util.List<AdjacencyGraph> adjacencyGraphs,
java.util.Map<java.lang.Character,java.lang.Character[]> leetTable,
java.util.regex.Pattern yearPattern,
java.lang.Double minimumEntropy,
java.util.Locale locale,
boolean distanceCalc,
long combinationAlgorithmTimeout) |
|