Eneboo - Documentación para desarrolladores
|
00001 #ifndef DigiCryptH 00002 #define DigiCryptH 00003 00004 00005 #ifdef __cplusplus 00006 extern "C" { 00007 #endif 00008 00009 00010 #include <windows.h> 00011 #include <wincrypt.h> 00012 00013 #define dDigiCrypt_Okey 0 00014 #define dDigiCrypt_Error_NotFoundCSP 1 00015 #define dDigiCrypt_Error_UserCancel 2 00016 #define dDigiCrypt_Error_NoDefaultKey 3 00017 #define dDIgiCrypt_Error_NotFoundCert 4 00018 00019 PCCERT_CONTEXT DigiCrypt_FindContext(BOOL fByKeyContainer, DWORD *dwResult); 00020 char *DigiCrypt_FindContext_GetCSPName(void); 00021 char *DigiCrypt_FindContext_GetKeyName(void); 00022 DWORD DigiCrypt_FindContext_GetCSPType(char *psCSPName); 00023 void LOG(char *psMsgFmt, ...); 00024 00025 #ifdef __cplusplus 00026 } 00027 #endif 00028 #endif