spbimportp12.c

Exemplo de SPB para importação de arquivo PKCS#12/PFX.

Veja Nota sobre os exemplos.
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <dinamo.h>
#ifdef WIN32
#include <process.h>
#define FSTAT(x,y) _fstat(_fileno(x), y)
#define STAT _stat
#else
#define FSTAT(x,y) fstat(fileno(x),y)
#define STAT stat
#endif
/* Parametros da conexao */
#define HSM_USR "user"
#define HSM_IP "10.0.62.10"
#define HSM_PWD "12345678"
int main(void)
{
int nRet = 0;
struct AUTH_PWD_EX stAUTPWD = {0};
HSESSIONCTX hSession = NULL;
char *szPkcs12File = "file.pfx";
char *szPkcs12FilePwd = "12345678";
char *szDomain = "MES01";
// Preenche a estrutura de usuario
strncpy(stAUTPWD.szAddr, HSM_IP, sizeof(stAUTPWD.szAddr));
strncpy(stAUTPWD.szUserId, HSM_USR, sizeof(stAUTPWD.szUserId));
strncpy(stAUTPWD.szPassword, HSM_PWD, sizeof(stAUTPWD.szPassword));
stAUTPWD.nPort = DEFAULT_PORT;
stAUTPWD.nStrongAuthLen = 0;
stAUTPWD.pbStrongAuth = NULL;
nRet = DOpenSession(&hSession, SS_USR_PWD_EX, (BYTE *) &stAUTPWD, sizeof(struct AUTH_PWD_EX), CACHE_BYPASS | LB_BYPASS | ENCRYPTED_CONN );
if(nRet) {
printf("DOpenSession : Failed! %d.\n", nRet);
goto clean;
}
/* Importa arquivo PKCS#12/PFX */
nRet = DSPBImportPKCS12(hSession, 0, NULL, szPkcs12File, szPkcs12FilePwd,szDomain, EXPORTABLE_KEY );
if( nRet ) {
printf("DSPBImportPKCS12 : Failed! %d.\n", nRet);
goto clean;
}
clean:
if( hSession ) {
DCloseSession(&hSession, 0);
}
return nRet;
}