Interface PasswordVerifier


public interface PasswordVerifier
Interface to verify passwords.
Since:
ostermillerutils 1.00.00
Author:
Stephen Ostermiller https://ostermiller.org/contact.pl?regarding=Java+Utilities
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    verify(char[] password)
    Verify that this password is an OK password.
  • Method Details

    • verify

      boolean verify(char[] password)
      Verify that this password is an OK password. If a password is not verified it is thrown out and a new password is tried. Always returning false from this method will cause an infinite loop.
      Parameters:
      password - an array of characters representing a password.
      Returns:
      true iff this password is OK.
      Since:
      ostermillerutils 1.00.00