123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #include "sgx_tcrypto.h"
- #include "ippcore.h"
- #include "ippcp.h"
- #include "se_cpu_feature.h"
- #include "se_cdefs.h"
- SGX_ACCESS_VERSION(tcrypto, 1)
- extern "C" sgx_status_t sgx_init_crypto_lib(uint64_t cpu_feature_indicator)
- {
- (void) cpu_feature_indicator;
- return SGX_SUCCESS;
- }
|