Package com.nulabinc.zxcvbn.matchers
Interface Matcher
-
- All Known Implementing Classes:
BaseMatcher,DateMatcher,DictionaryMatcher,L33tMatcher,OmnibusMatcher,RegexMatcher,RepeatMatcher,ReverseDictionaryMatcher,SequenceMatcher,SpatialMatcher
public interface MatcherRepresents a matcher responsible for identifying patterns within passwords.Implementations of this interface provide specific matching strategies to detect various patterns such as dictionary words, sequences, and spatial patterns.
- See Also:
Match
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<Match>execute(java.lang.CharSequence password)Analyzes the given password and returns a list of detected patterns asMatchobjects.
-