com.Ostermiller.util
Interface PasswordVerifier


public interface PasswordVerifier

Interface to verify passwords.

Since:
ostermillerutils 1.00.00

Method Summary
 boolean verify(char[] password)
          Verify that this password is an ok password.
 

Method Detail

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