forked from intel/sgx-ra-sample
-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.h
34 lines (28 loc) · 1.13 KB
/
settings.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
#ifndef __SETTINGS__H
#define __SETTINGS__H
/*----------------------------------------------------------------------
* IAS API version
*----------------------------------------------------------------------
* Default API version to use when querying IAS.
*
* This can be overriden by the -r option to sp.
*/
#define IAS_API_DEF_VERSION 3
/*----------------------------------------------------------------------
* CA Certificate Bundles
*----------------------------------------------------------------------
* The root CA bundle used to validate the IAS server certificate. The
* default should be correct for Linux.
*
* Windows does not use a bundle file natively, but libcurl for Windows
* does. If you installed libcurl somewhere other than the default
* path then you will need to change this.
*
* These settings are overridden by the -B option to sp
*/
/* Default CA bundle file on Linux (auto-detected by default, comes from
* config.h) */
#define DEFAULT_CA_BUNDLE_LINUX DEFAULT_CA_BUNDLE_AUTO
/* Default CA bundle file on Windows */
#define DEFAULT_CA_BUNDLE_WIN32 "C:\\Program Files\\cURL\\bin\\curl-ca-bundle.crt"
#endif