C/C++ API
HSM Dinamo
Loading...
Looking for...
No entries found
create_hash.c

Example of generating a hash.

See Note on examples.
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <dinamo.h> /* header do Dinamo */
#define HOST_ADDR "127.0.0.1"
#define USER_ID "master"
#define USER_PWD "12345678"
#define HASH_ID ALG_SHA1
int main()
{
int nRet;
struct AUTH_PWD authPwd;
HSESSIONCTX hSession = NULL;
HHASHCTX hHash = NULL;
BYTE pbData[256], pbHash[20];
DWORD cbData, dwAlgId, dwHashSize;
int i;
//Inicializa as bibliotecas do Dinamo
nRet = DInitialize(0);
if (nRet){
printf("Function failure: DInitialize \nError code: %d\n",nRet);
goto clean;
}
printf("Libraries initialized.\n");
//Inicializa a estrutura para conexão 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("Function failure: DOpenSession \nError code: %d\n",nRet);
goto clean;
}
printf("Session with Dinamo established.\n");
//Cria um contexto de hash
nRet = DCreateHash(hSession, HASH_ID, 0, 0, &hHash);
if (nRet){
printf("Function failure: DCreateHash \nError code: %d\n",nRet);
goto clean;
}
printf("Hash context created.\n");
//Preenche o buffer com dados quaisquer
cbData = sizeof(pbData);
memset(pbData, 'A', cbData);
//Adiciona dados ao hash
nRet = DHashData(hHash, pbData, cbData, 0);
if (nRet){
printf("Function failure: DHashData \nError code: %d\n",nRet);
goto clean;
}
printf("Data added to hash.\n");
cbData = sizeof(dwAlgId);
nRet = DGetHashParam(hHash, DHP_ALGID,(BYTE *)&dwAlgId, &cbData, 0);
if (nRet){
printf("Function failed: DGetHashParam \nError code: %d\n",nRet);
goto clean;
}
printf("Hash algorithm used: "DWORD_PRINT"\n", dwAlgId);
cbData = sizeof(dwHashSize);
nRet = DGetHashParam(hHash, DHP_HASH_SIZE,(BYTE *)&dwHashSize, &cbData, 0);
if (nRet){
printf("Function failed: DGetHashParam \nError code: %d\n",nRet);
goto clean;
}
printf("Hash Size: "DWORD_PRINT"\n", dwHashSize);
cbData = sizeof(pbHash);
nRet = DGetHashParam(hHash, DHP_HASH_VALUE, pbHash, &cbData, 0);
if (nRet){
printf("Function failed: DGetHashParam \nError code: %d\n",nRet);
goto clean;
}
printf("Hash result: ");
for (i = 0; i < (int)cbData; i++)
printf("%02X ", pbHash[i]);
printf("\n");
clean:
if (hHash){
DDestroyHash(&hHash);
printf("Hash context released.\n");
}
if (hSession){
DCloseSession(&hSession, 0);
printf("Session closed.\n");
}
printf("Libraries finished.\n");
return nRet;
}
HSM Application Programming Interface (API) Dinamo.
void * HSESSIONCTX
Definition dinamo.h:68
#define DEFAULT_PORT
Definition dinamo.h:1948
#define DHP_ALGID
Definition dinamo.h:1494
#define DWORD_PRINT
Definition dinamo.h:55
#define DHP_HASH_SIZE
Definition dinamo.h:1496
#define DHP_HASH_VALUE
Definition dinamo.h:1495
unsigned char BYTE
Definition dinamo.h:45
unsigned int DWORD
Definition dinamo.h:46
void * HHASHCTX
Definition dinamo.h:69
#define ENCRYPTED_CONN
Definition dinamo.h:585
#define SS_USER_PWD
Definition dinamo.h:576
int AAP_API DCreateHash(HSESSIONCTX hSession, int nAlgId, HKEYCTX hKey, DWORD dwFlags, HHASHCTX *hHash)
int AAP_API DDestroyHash(HHASHCTX *phHash)
int AAP_API DHashData(HHASHCTX hHash, BYTE *pbData, DWORD dwDataLen, DWORD dwFlags)
int AAP_API DGetHashParam(HHASHCTX hHash, DWORD dwParam, BYTE *pbData, DWORD *pdwDataLen, DWORD dwFlags)
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()
Definition dinamo.h:3089
int nPort
Definition dinamo.h:3091
char szUserId[MAX_USR_LEN]
Definition dinamo.h:3092
char szAddr[MAX_ADDR_LEN]
Definition dinamo.h:3090
char szPassword[MAX_USR_PWD]
Definition dinamo.h:3093