diff --git a/src/main/java/com/cringe_studios/cringe_authenticator_library/impl/HOTP.java b/src/main/java/com/cringe_studios/cringe_authenticator_library/impl/HOTP.java index 340591a..3d94cc6 100644 --- a/src/main/java/com/cringe_studios/cringe_authenticator_library/impl/HOTP.java +++ b/src/main/java/com/cringe_studios/cringe_authenticator_library/impl/HOTP.java @@ -15,9 +15,9 @@ import com.cringe_studios.cringe_authenticator_library.OTPType; //https://datatracker.ietf.org/doc/html/rfc4226 public class HOTP extends OTP { - protected static final int[] DIGITS_POWER + //protected static final int[] DIGITS_POWER // 0 1 2 3 4 5 6 7 8 - = { 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000 }; + // = { 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000 }; public HOTP(String secret, OTPAlgorithm algorithm, int digits, long counter, long periodInSeconds, boolean checksum) { super(OTPType.HOTP, secret, algorithm, digits, counter, periodInSeconds, checksum);