Java API
HSM Dinamo
Loading...
Looking for...
No entries found
IssueTOTPBlob.java

Example of generating, checking and re-synchronizing a TOTP blob OATH using HSM. With seed generated within HSM.

See Note on examples.
package doxy.examples;
import com.dinamonetworks.Dinamo;
import br.com.trueaccess.TacException;
import br.com.trueaccess.TacNDJavaLib;
public class IssueTOTPBlob {
private static String strAddr = "127.0.0.1";
private static String strUsrId = "master";
private static String strPwd = "12345678" ;
private static String masterKeyName = "master_key";
public static void main(String[] args) throws TacException {
Dinamo api = new Dinamo();
System.out.println("--> HSM Login");
api.openSession(strAddr, strUsrId, strPwd);
System.out.println("--> Create a master key");
api.createKey(masterKeyName, TacNDJavaLib.ALG_AES_256, TacNDJavaLib.NONEXPORTABLE_KEY);
System.out.println("--> Generate BLOB for the seed");
byte[] totpGenBlob = api.generateOATHTotpBlob(masterKeyName);
//This call simulates the client application
String nextOtp = api.getNextOATHOTP(masterKeyName,
TacNDJavaLib.ISSUE_OATH_MIN_OTP_LEN,
totpGenBlob);
System.out.println("--> check OTP value for know seed and sequence");
totpGenBlob = api.checkOATHBlobOTP(masterKeyName, nextOtp, totpGenBlob);
System.out.println("--> Delete the master key");
api.deleteKey(masterKeyName);
api.closeSession();
System.out.println("The process ended successfully");
}
}