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