()
| 86 | return eid,times |
| 87 | |
| 88 | def destroy(): |
| 89 | global eid |
| 90 | sgx_lib = cdll.LoadLibrary(os.path.join(current_path + "/sgx_tf_ops/", "sgx.so")) |
| 91 | sgx_lib.destroy_enclave.argtypes = [c_ulong] |
| 92 | sgx_lib.destroy_enclave(eid) |
| 93 | return 0 |
| 94 | |
| 95 | def e_emb_init(input_dim,output_dim): |
| 96 | global eid |
nothing calls this directly
no outgoing calls
no test coverage detected