com.nulabinc.zxcvbn.Matcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zxcvbn Show documentation
Show all versions of zxcvbn Show documentation
This is a java port of zxcvbn, which is a JavaScript password strength generator.
package com.nulabinc.zxcvbn;
import com.nulabinc.zxcvbn.matchers.Match;
import java.util.List;
public interface Matcher {
public List execute(CharSequence password);
}