Example of M of N.
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#define HOST_ADDR "127.0.0.1"
int main()
{
int nRet = 0;
if (nRet){
printf("Falha na funcao: DInitialize \nCodigo de erro: %d\n", nRet);
goto clean;
}
printf("Bibliotecas inicializadas.\n");
if (nRet){
printf("Falha na funcao: DOpenSession \nCodigo de erro: %d\n", nRet);
goto clean;
}
printf("Sessao com o Dinamo estabelecida.\n");
nRet =
DMofNSplit(hSession, 2, 6, NULL, 0, &stSplitInfo, 0);
if (nRet)
{
printf("\nFalha na funcao: DMofNSplit\nCodigo de erro: %d\n\n", nRet);
goto clean;
}
printf("Segredo do M de N dividido com sucesso.\n");
if (nRet)
{
printf("\nFalha na funcao: DMofNRecover\nCodigo de erro: %d\n\n", nRet);
goto clean;
}
printf("Segredo do M de N recuperado com sucesso.\n");
clean:
if (hSession) {
printf("Sessao encerrada.\n");
}
printf("Bibliotecas finalizada.\n");
return nRet;
}
Application Programming Interface (API) do HSM Dinamo.
void * HSESSIONCTX
Definição dinamo.h:68
#define DEFAULT_PORT
Definição dinamo.h:1949
unsigned char BYTE
Definição dinamo.h:45
#define SS_ANONYMOUS
Definição dinamo.h:575
#define DN_M_OF_N_S_LEN
Definição dinamo.h:3537
#define ENCRYPTED_CONN
Definição dinamo.h:585
int AAP_API DMofNRecover(HSESSIONCTX hSession, DN_M_OF_N_PART *pstParts, DWORD dwPartsCount, BYTE *pbSecret, DWORD dwReserved)
int AAP_API DMofNSplit(HSESSIONCTX hSession, BYTE bM, BYTE bN, BYTE *pbSecret, DWORD dwSecretLen, DN_M_OF_N_SPLIT_INFO *pstSplitInfo, DWORD dwReserved)
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 nPort
Definição dinamo.h:3092
char szAddr[MAX_ADDR_LEN]
Definição dinamo.h:3091
DWORD dwPartCount
Definição dinamo.h:3570
DN_M_OF_N_PART pstParts[DN_M_OF_N_S_MAX]
Definição dinamo.h:3569