-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheps2003cspif.h
85 lines (70 loc) · 2.75 KB
/
eps2003cspif.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*-----------------------------------------------------------------*\
*
* eps2003cspif.h
* eps2003cspif
* eps2003csp11-interface
*
* MIT - see LICENSE at root directory
*
* CREATED: 2022-11-24 06:07 PM
* AUTHORS: Mohammed Elghamry <elghamry.connect[at]outlook[dot]com>
*
\*-----------------------------------------------------------------*/
#ifndef EPS2003CSPIF_H
#define EPS2003CSPIF_H
#include "errcodes.h"
// ====================
// ====== Macros ======
// ====================
#define STRINGIZE(x) #x
#define STRINGIZE_EXPRESSION(x) STRINGIZE(x)
#ifdef EPS2003CSPIF_EXPORTS
#ifdef __cplusplus
#define DllExport extern "C" __declspec(dllexport)
#else
#define DllExport __declspec(dllexport)
#endif // __cpluscplus
#else
#ifdef __cplusplus
#define DllExport extern "C" __declspec(dllimport)
#else
#define DllExport __declspec(dllimport)
#endif // __cpluscplus
#endif // EPS2003CSPIF_EXPORTS
#define DLLENTRY(return_type) DllExport return_type APIENTRY
// ==============================
// ====== Exported Methods ======
// ==============================
// ------------------------------------------------------
// This function is used as an interface for other
// language to free memory allocated by the library.
// ------------------------------------------------------
DLLENTRY(void) FreeMem(void *p);
// ------------------------------------------------------
// Open the library for the first slot with a token.
// ------------------------------------------------------
DLLENTRY(HRESULT) OpenKiLibrary(BSTR pwszLibName, BSTR pwszPin);
// ------------------------------------------------------
// Close the library.
// ------------------------------------------------------
DLLENTRY(HRESULT) CloseKiLibrary();
// ------------------------------------------------------
// Sign with CAdES-BES using the provided root cert.
// ------------------------------------------------------
DLLENTRY(HRESULT) SignWithCadesBes(BSTR pwszRootCert, BSTR pwszData, BSTR *ppwszSignature);
// ------------------------------------------------------
// Create SHA256 Hash.
//
// Free buffer returned in `ppbHash` using FreeMem
// from this library.
// ------------------------------------------------------
DLLENTRY(HRESULT) SHA256(BYTE *pbData, DWORD cbData, BYTE **ppbHash, DWORD *pcbHash);
// ------------------------------------------------------
// Create SHA256 Hash and set the output as BSTR.
// ------------------------------------------------------
DLLENTRY(HRESULT) SHA256_STR(BYTE *pbData, DWORD cbData, BSTR *ppwszHash);
// ------------------------------------------------------
// Create base64 string and set the output as BSTR.
// ------------------------------------------------------
DLLENTRY(HRESULT) BASE64(BYTE *pbData, DWORD cbData, BSTR *ppwszBase64);
#endif //EPS2003CSPIF_H