Systemsicherheit/Assignment 7 - SGX Hands-on/SGX101_sample_code-master/Sealing/Enclave/Enclave.edl

14 lines
272 B
Text
Raw Normal View History

enclave {
from "Sealing/Sealing.edl" import *;
trusted {
/* define ECALLs here. */
public int generate_random_number(void);
};
untrusted {
/* define OCALLs here. */
void ocall_print([in, string]const char* str);
};
};