Skip to content

Commit

Permalink
Added enduserIp to validatePassword (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
mschaab-SA committed Mar 7, 2024
1 parent d84fa1a commit 465ca37
Show file tree
Hide file tree
Showing 6 changed files with 126 additions and 72 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
currentVersion=1.1.0.11
currentVersion=1.1.0.12
15 changes: 14 additions & 1 deletion src/main/java/org/secureauth/sarestapi/ISAAccess.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,13 +212,26 @@ StatefulResponseObject sendPushBiometricReqStateful(String biometricType, String
* <p>
* Checks the users password against SecureAuth Datastore
* </p>
*
*
* @param userId the userid of the identity
* @param password The password of the user to validate
* @return {@link ResponseObject}
*/
BaseResponse validateUserPassword(String userId, String password) throws SARestAPIException;

/**
* <p>
* Checks the users password against SecureAuth Datastore
* </p>
*
* @param userId the userid of the identity
* @param password The password of the user to validate
* @param enduserIp the enduser's ip address
* @return {@link ResponseObject}
*/
BaseResponse validateUserPassword(String userId, String password, String enduserIp) throws SARestAPIException;


/**
* <p>
* Checks the users pin against SecureAuth Datastore
Expand Down
Loading

0 comments on commit 465ca37

Please sign in to comment.