Remove useless line of code

This commit is contained in:
TheArrayser 2023-06-25 23:16:29 +02:00
parent 19de03f0f4
commit 31fe53d3b8

View File

@ -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);