|
◆ ert_copy_strings_from_host_to_enclave()
void ert_copy_strings_from_host_to_enclave |
( |
const char *const * |
host_array, |
|
|
char *** |
enclave_array, |
|
|
size_t |
count |
|
) |
| |
Securely deep-copy an array of strings from the host to the enclave.
- Parameters
-
| host_array | An array in host memory. |
[out] | enclave_array | An array that will be allocated on the enclave heap. The array will include an additional terminating nullptr element. Free with free(). |
| count | Number of elements to copy. |
|