Interface ComparePasswordFunction
-
public interface ComparePasswordFunctionTo match Password against Stored Hashed Password and Salt
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatchPasswordFunction(String passwordValue, String passwordHashValue, String salt)To Match Password.
-
-
-
Method Detail
-
matchPasswordFunction
boolean matchPasswordFunction(String passwordValue, String passwordHashValue, String salt) throws IdAuthenticationBusinessException
To Match Password.- Parameters:
passwordValue- the password valuepasswordHashValue- the stored password hash valuesalt- the stored salt value- Returns:
- true, if successful
- Throws:
IdAuthenticationBusinessException- the id authentication business exception
-
-