Interface PasswordMatcher

All Known Implementing Classes:
DateMatcher, DictionaryMatcher, RepeatMatcher, SeparatorMatcher, SequenceMatcher, SpacialMatcher, YearMatcher

public interface PasswordMatcher
Interface for different matching methods to implement.
Author:
Adam Brusselback.
  • Method Summary

    Modifier and Type
    Method
    Description
    match(Configuration configuration, String password)
    Creates a List of Match from the password.
  • Method Details

    • match

      List<Match> match(Configuration configuration, String password)
      Creates a List of Match from the password.
      Parameters:
      configuration - configuration for the matcher.
      password - password to match.
      Returns:
      a List of Matches that this matcher found for the given password and configuration.