123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #ifndef _SGX_UTILS_H_
- #define _SGX_UTILS_H_
- #include "sgx.h"
- #include "sgx_defs.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- sgx_status_t SGXAPI sgx_create_report(const sgx_target_info_t *target_info, const sgx_report_data_t *report_data, sgx_report_t *report);
- sgx_status_t SGXAPI sgx_verify_report(const sgx_report_t *report);
- sgx_status_t SGXAPI sgx_get_key(const sgx_key_request_t *key_request, sgx_key_128bit_t *key);
- #ifdef __cplusplus
- }
- #endif
- #endif
|