()
| 81 | |
| 82 | |
| 83 | def create_enclave(): |
| 84 | sgx_lib = cdll.LoadLibrary(os.path.join(new_path + "/sgx_tf_ops/", "sgx.so")) |
| 85 | sgx_lib.initialize_enclave.restype = c_ulong |
| 86 | global eid |
| 87 | eid = sgx_lib.initialize_enclave() |
| 88 | return eid,times |
| 89 | |
| 90 | def destroy(): |
| 91 | global eid |
nothing calls this directly
no outgoing calls
no test coverage detected