Searched defs:truncationOffset (Results 1 - 10 of 10) sorted by relevance

/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/test/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DJsonConversionUtilsTest.java63 int truncationOffset) {
66 oathDeviceSettings.setTruncationOffset(truncationOffset);
61 getOathDeviceSettingsObject(String sharedSecret, String deviceName, long lastLogin, int counter, boolean checksumDigit, int truncationOffset) argument
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/devices/
H A DDeviceJsonUtilsTest.java65 int truncationOffset) {
68 oathDeviceSettings.setTruncationOffset(truncationOffset);
63 getDeviceSettingsObject(String sharedSecret, String deviceName, long lastLogin, int counter, boolean checksumDigit, int truncationOffset) argument
/forgerock/openam-v13/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DHOTPAlgorithm.java138 * @param truncationOffset the offset into the MAC result to
158 int truncationOffset)
174 if ((0 <= truncationOffset) &&
175 (truncationOffset < (hash.length - 4))) {
176 offset = truncationOffset;
154 generateOTP(byte[] secret, long movingFactor, int codeDigits, boolean addChecksum, int truncationOffset) argument
/forgerock/openam/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DHOTPAlgorithm.java138 * @param truncationOffset the offset into the MAC result to
158 int truncationOffset)
174 if ((0 <= truncationOffset) &&
175 (truncationOffset < (hash.length - 4))) {
176 offset = truncationOffset;
154 generateOTP(byte[] secret, long movingFactor, int codeDigits, boolean addChecksum, int truncationOffset) argument
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/oath/
H A DOathDeviceSettings.java37 private int truncationOffset = 0; field in class:OathDeviceSettings
106 * @param truncationOffset The truncation offset.
108 public void setTruncationOffset(int truncationOffset) { argument
109 this.truncationOffset = truncationOffset;
170 * @return truncationOffset The truncation offset.
173 return truncationOffset;
223 if (truncationOffset != that.truncationOffset) {
242 checksumDigit, truncationOffset, recoveryCode
[all...]
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/
H A DOathDeviceSettings.java37 private int truncationOffset = 0; field in class:OathDeviceSettings
127 * @param truncationOffset The truncation offset.
129 public void setTruncationOffset(int truncationOffset) { argument
130 this.truncationOffset = truncationOffset;
201 * @return truncationOffset The truncation offset.
204 return truncationOffset;
264 if (truncationOffset != that.truncationOffset) {
280 checksumDigit, truncationOffset, recoveryCode
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DOATH.java105 private int truncationOffset = -1; field in class:OATH
187 this.truncationOffset = Integer.parseInt(CollectionHelper.getMapAttr(options, TRUNCATION_OFFSET));
422 truncationOffset);
/forgerock/openam/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DOATH.java107 private int truncationOffset = -1; field in class:OATH
190 this.truncationOffset = Integer.parseInt(CollectionHelper.getMapAttr(options, TRUNCATION_OFFSET));
428 truncationOffset);
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java109 private int truncationOffset = -1; field in class:AuthenticatorOATH
211 this.truncationOffset = CollectionHelper.getIntMapAttr(options, TRUNCATION_OFFSET, -1, debug);
635 truncationOffset);
/forgerock/openam/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorOATH.java117 private int truncationOffset = -1; field in class:AuthenticatorOATH
235 this.truncationOffset = CollectionHelper.getIntMapAttr(options, TRUNCATION_OFFSET, -1, debug);
666 truncationOffset);

Completed in 50 milliseconds