All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.praegus.fitnesse.slim.fixtures.totp.TotpUtils Maven / Gradle / Ivy

There is a newer version: 1.38.1
Show newest version
package nl.praegus.fitnesse.slim.fixtures.totp;

public class TotpUtils {

    public static String padCodeWithZerosToNumberOfDigits(int code, int numberOfDigits) {
        String formatSpec = "%0" + numberOfDigits + "d";
        return String.format(formatSpec, code);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy