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

/forgerock/openam-v13/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DHOTPAlgorithm.java132 * @param movingFactor the counter, time, or other value that
155 long movingFactor,
160 // put movingFactor value into text byte array
165 text[i] = (byte) (movingFactor & 0xff);
166 movingFactor >>= 8;
154 generateOTP(byte[] secret, long movingFactor, int codeDigits, boolean addChecksum, int truncationOffset) argument
H A DHOTPService.java63 private static int movingFactor = 0; field in class:HOTPService
140 return movingFactor++;
/forgerock/openam/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DHOTPAlgorithm.java132 * @param movingFactor the counter, time, or other value that
155 long movingFactor,
160 // put movingFactor value into text byte array
165 text[i] = (byte) (movingFactor & 0xff);
166 movingFactor >>= 8;
154 generateOTP(byte[] secret, long movingFactor, int codeDigits, boolean addChecksum, int truncationOffset) argument
H A DHOTPService.java65 private static int movingFactor = 0; field in class:HOTPService
142 return movingFactor++;

Completed in 48 milliseconds