Interface ComparePasswordFunction
public interface ComparePasswordFunction
To match Password against Stored Hashed Password and Salt
-
Method Summary
Modifier and TypeMethodDescriptionbooleanmatchPasswordFunction(String passwordValue, String passwordHashValue, String salt) To Match Password.
-
Method Details
-
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
-