Searched defs:otp (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.java338 * @param otp The OTP to verify
343 private boolean checkOTP(String otp) throws AuthLoginException { argument
423 if (isEqual(otpGen, otp)) {
508 if (isEqual(otpGen, otp)) {
519 if (isEqual(otpGen, otp)) {
526 if (isEqual(otpGen, otp) && sameWindow) {
530 } else if (isEqual(otpGen, otp) && !sameWindow) {
/forgerock/openam/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DOATH.java344 * @param otp The OTP to verify
349 private boolean checkOTP(String otp) throws AuthLoginException { argument
429 if (isEqual(otpGen, otp)) {
514 if (isEqual(otpGen, otp)) {
525 if (isEqual(otpGen, otp)) {
532 if (isEqual(otpGen, otp) && sameWindow) {
536 } else if (isEqual(otpGen, otp) && !sameWindow) {
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java439 private boolean isRecoveryCode(String otp, OathDeviceSettings settings, AMIdentity id) argument
448 if (recoveryCodes.contains(otp)) {
449 recoveryCodes.remove(otp);
577 * @param otp The OTP to verify.
584 private boolean checkOTP(String otp, AMIdentity id, OathDeviceSettings settings) throws AuthLoginException { argument
636 if (isEqual(otpGen, otp)) {
690 if (isEqual(otpGen, otp)) {
702 if (isEqual(otpGen, otp)) {
710 if (isEqual(otpGen, otp) && sameWindow) {
714 } else if (isEqual(otpGen, otp)
[all...]
/forgerock/openam/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java471 private boolean isRecoveryCode(String otp, OathDeviceSettings settings, AMIdentity id) argument
480 if (recoveryCodes.contains(otp)) {
481 recoveryCodes.remove(otp);
608 * @param otp The OTP to verify.
615 private boolean checkOTP(String otp, AMIdentity id, OathDeviceSettings settings) throws AuthLoginException { argument
667 if (isEqual(otpGen, otp)) {
721 if (isEqual(otpGen, otp)) {
732 if (isEqual(otpGen, otp)) {
739 if (isEqual(otpGen, otp) && sameWindow) {
743 } else if (isEqual(otpGen, otp)
[all...]

Completed in 47 milliseconds