IssueHOTPBlob.java

Exemplo de geração, verificação e re-sincronização de blob HOTP OATH utilizando o HSM. Com semente gerada dentro do HSM.

Veja Nota sobre os exemplos.
package doxy.examples;
public class IssueHOTPBlob {
private static String strAddr = "10.0.62.16";
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("--> Login HSM");
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[] hotpImpBlob = api.generateOATHHotpBlob(masterKeyName);
//This call simulates the client application
String nextOtp = api.getNextOATHOTP(masterKeyName,
TacNDJavaLib.ISSUE_OATH_MIN_OTP_LEN,
hotpImpBlob);
System.out.println("--> check OTP value for know seed and sequence");
hotpImpBlob = api.checkOATHBlobOTP( masterKeyName,
nextOtp,
hotpImpBlob);
System.out.println("--> Two consecutive OTPs are passed for HSM to adjust the event window in the case of need to syncronized (event token)");
//These 2 OTPs must be generated by the client application
hotpImpBlob = api.resyncOATHBlobOTP( masterKeyName,
"758993",
"864532",
hotpImpBlob);
api.closeSession();
System.out.println("The process ended sucessfully");
}
}