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
    java.util.List<Match> match​(Configuration configuration, java.lang.String password)
    Creates a List of Match from the password.
  • Method Details

    • match

      java.util.List<Match> match​(Configuration configuration, java.lang.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.