spbactivatecert.c

Exemplo de SPB para ativação de certificado.

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 *szDomain = "MES01";
char *szIdCert = "01@00abcdef0101";
// 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;
}
/* Ativa o certificado */
nRet = DSPBActivateCertificate ( hSession, szIdCert, szDomain, 0 );
if( nRet )
{
printf("DSPBActivateCertificate : Failed! %d.\n", nRet);
goto clean;
}
clean:
if( hSession ) {
DCloseSession(&hSession, 0);
}
return nRet;
}