Searched defs:totpStepsInWindow (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam-v13/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DOATH.java108 private int totpStepsInWindow = 0; field in class:OATH
189 this.totpStepsInWindow = Integer.parseInt(CollectionHelper.getMapAttr(options, TOTP_STEPS_IN_WINDOW));
491 if (lastLoginTimeStep >= (currentTimeStep - totpStepsInWindow)
492 && lastLoginTimeStep <= (currentTimeStep + totpStepsInWindow)) {
513 for (int curTimeStepOffSet = 1; curTimeStepOffSet <= totpStepsInWindow; curTimeStepOffSet++) {
750 if (totpStepsInWindow < 0) {
751 errorMessages.append("Invalid TOTP steps in window value: " + totpStepsInWindow);
/forgerock/openam/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DOATH.java110 private int totpStepsInWindow = 0; field in class:OATH
192 this.totpStepsInWindow = Integer.parseInt(CollectionHelper.getMapAttr(options, TOTP_STEPS_IN_WINDOW));
497 if (lastLoginTimeStep >= (currentTimeStep - totpStepsInWindow)
498 && lastLoginTimeStep <= (currentTimeStep + totpStepsInWindow)) {
519 for (int curTimeStepOffSet = 1; curTimeStepOffSet <= totpStepsInWindow; curTimeStepOffSet++) {
756 if (totpStepsInWindow < 0) {
757 errorMessages.append("Invalid TOTP steps in window value: " + totpStepsInWindow);
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java112 private int totpStepsInWindow = 0; field in class:AuthenticatorOATH
214 this.totpStepsInWindow = CollectionHelper.getIntMapAttr(options, TOTP_STEPS_IN_WINDOW, 1, debug);
662 if (totpStepsInWindow < 0) {
679 if (lastLoginTimeStep >= (localTime - totpStepsInWindow) &&
680 lastLoginTimeStep <= (localTime + totpStepsInWindow)) {
695 for (int i = 1; i <= totpStepsInWindow; i++) {
/forgerock/openam/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java120 private int totpStepsInWindow = 0; field in class:AuthenticatorOATH
238 this.totpStepsInWindow = CollectionHelper.getIntMapAttr(options, TOTP_STEPS_IN_WINDOW, 1, debug);
693 if (totpStepsInWindow < 0) {
710 if (lastLoginTimeStep >= (localTime - totpStepsInWindow) &&
711 lastLoginTimeStep <= (localTime + totpStepsInWindow)) {
725 for (int i = 1; i <= totpStepsInWindow; i++) {

Completed in 41 milliseconds