// Define os parâmetros de conexão com o HSM constoptions = { host:"127.0.0.1", authUsernamePassword: { username:"master", password:"12345678", }, };
asyncfunctionocraGen() { // 1. Connecta ao HSM constconn = awaithsm.connect(options);
// 2. Nome da chave constkeyName = "myHmacSha1Key";
// 2.1 Cria uma chave simétrica HMAC SHA1 constcreated = awaitconn.key.create( keyName, // Nome da chave hsm.enums.HMAC_KEYS.ALG_HMAC_SHA1, // Algoritmo da chave true, // Se é exportável true// Se é temporária );
constdataToChallenger = "Dados do meu negócio"; constq = stringToHex(dataToChallenger);
// 3.2. Recuperando timestamp em timestep de segundos (ts) constts = BigInt(Math.floor(Date.now() / 1000).toString());
// 4. Executando a função OCRA constotp = awaitconn.ocra.ocraGen( keyName, // Id da chave q, // Challenger (q) "OCRA-1:HOTP-SHA1-6:QA08-T1S", // Suite: Ocra versão 1 com a função HMAC-SHA1 truncado em 6 dígitos usando um challenger superior a 8 caracteres e timestamp em número de segundos 6, // Tamanho do OTP undefined, // contador: não obrigatório undefined, // pin hash: não obrigatório undefined, // session: Não obrigatório ts// Timestamp (ts): não obrigatório );