API C/C++
HSM Dinamo
Carregando...
Procurando...
Nenhuma entrada encontrado
import_export_bchain.c

Exemplo de exportação e importação de chave privada blockchain.

Veja Nota sobre os exemplos.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "dinamo.h" /* header do Dinamo */
#define HOST_ADDR "127.0.0.1"
#define USER_ID "master"
#define USER_PWD "12345678"
int main()
{
int nRet = 0;
struct AUTH_PWD authPwd;
HSESSIONCTX hSession = NULL;
char szId[] = "Chave_Teste";
char szIdImp[] = "Chave_Teste_Imp";
BYTE *pbKey = NULL;
DWORD dwKeyLen = 0;
//Inicializa as bibliotecas do Dinamo
nRet = DInitialize(0);
if (nRet)
{
printf("Falha na funcao: DInitialize \nCodigo de erro: %d\n", nRet);
goto clean;
}
printf("Bibliotecas inicializadas.\n");
//Inicializa a estrutura para conexao com o HSM
strncpy(authPwd.szAddr, HOST_ADDR, sizeof(authPwd.szAddr));
authPwd.nPort = DEFAULT_PORT;
strncpy(authPwd.szUserId, USER_ID, sizeof(authPwd.szUserId));
strncpy(authPwd.szPassword, USER_PWD, sizeof(authPwd.szPassword));
nRet = DOpenSession(&hSession, SS_USER_PWD, (BYTE *)&authPwd, sizeof(authPwd), ENCRYPTED_CONN);
if (nRet)
{
printf("Falha na funcao: DOpenSession \nCodigo de erro: %d\n", nRet);
goto clean;
}
printf("Sessao com o Dinamo estabelecida.\n");
//Cria chave de testes
nRet = DBchainCreateXPrv(hSession,
szId,
&ver,
sizeof(ver),
0);
if(nRet)
{
printf("Falha na funcao: DBchainCreateXPrv \nCodigo de erro: %d\n", nRet);
goto clean;
}
printf("Chave Bip 32 criada com sucesso.\n");
/*
Exporta a chave privada.
O ponteiro apontado por pbKey deve ser liberado com DFree() após o uso.
*/
nRet = DBchainPkExport(hSession,
ver,
0,
szId,
&pbKey,
&dwKeyLen,
0);
if (nRet)
{
printf("Falha na funcao: DBchainPkExport \nCodigo de erro: %d\n", nRet);
goto clean;
}
printf("Chave Bip 32 exportada com sucesso.\n");
//Importa chave privada
nRet = DBchainPkImport(hSession,
szIdImp,
pbKey,
dwKeyLen,
0);
if (nRet)
{
printf("Falha na funcao: DBchainPkImport \nCodigo de erro: %d\n", nRet);
goto clean;
}
printf("Chave Bip 32 importada com sucesso.\n");
clean:
//Libera ponteiro da chave exportada
DFree(pbKey);
//Remove objetos
nRet = DRemoveObj(hSession, szId);
if (nRet)
{
printf("Falha na funcao: DRemoveObj \nCodigo de erro: %d\n", nRet);
goto clean;
}
printf("Chave Bchain removida do HSM.\n");
nRet = DRemoveObj(hSession, szIdImp);
if (nRet)
{
printf("Falha na funcao: DRemoveObj \nCodigo de erro: %d\n", nRet);
goto clean;
}
printf("Chave Bchain importada, removida do HSM.\n");
if (hSession) {
DCloseSession(&hSession, 0);
printf("Sessao encerrada.\n");
}
printf("Bibliotecas finalizadas.\n");
return nRet;
}
Application Programming Interface (API) do HSM Dinamo.
void * HSESSIONCTX
Definição dinamo.h:68
#define DEFAULT_PORT
Definição dinamo.h:1948
unsigned char BYTE
Definição dinamo.h:45
#define DN_BCHAIN_VER_WIF_MAIN_NET
Definição dinamo.h:2213
unsigned int DWORD
Definição dinamo.h:46
#define ENCRYPTED_CONN
Definição dinamo.h:585
#define SS_USER_PWD
Definição dinamo.h:576
#define DN_BCHAIN_BIP32_XPRV
Definição dinamo.h:3469
#define DN_BCHAIN_KEY_XPRIV
Definição dinamo.h:2208
#define EXPORTABLE_KEY
Definição dinamo.h:1422
int AAP_API DBchainCreateXPrv(HSESSIONCTX hSession, BYTE bType, DWORD dwAttributes, const char *szId, const BYTE *pcbData, DWORD dwDataLen, DWORD dwReserved)
int AAP_API DBchainPkExport(HSESSIONCTX hSession, BYTE bFormat, BYTE bVersion, BYTE bCompressed, const char *cszId, BYTE **ppbData, DWORD *pdwDataLen, DWORD dwReserved)
int AAP_API DBchainPkImport(HSESSIONCTX hSession, BYTE bFormat, DWORD dwAttributes, const char *cszId, const BYTE *pcbData, DWORD dwDataLen, DWORD dwReserved)
int AAP_API DRemoveObj(HSESSIONCTX hSession, char *szObjId)
void AAP_API DFree(void *p)
int AAP_API DOpenSession(HSESSIONCTX *phSession, DWORD dwParam, BYTE *pbData, DWORD dwDataLen, DWORD dwFlags)
int AAP_API DCloseSession(HSESSIONCTX *phSession, DWORD dwFlags)
int AAP_API DInitialize(DWORD dwReserved)
int AAP_API DFinalize()
Definição dinamo.h:3089
int nPort
Definição dinamo.h:3091
char szUserId[MAX_USR_LEN]
Definição dinamo.h:3092
char szAddr[MAX_ADDR_LEN]
Definição dinamo.h:3090
char szPassword[MAX_USR_PWD]
Definição dinamo.h:3093