Intel® Software Guard Extensions (Intel® SGX)
Discussion board focused on hardware-based isolation and memory encryption to provide extended code protection in solutions.

SGX Application Deployment

Rad_A_
Beginner
1,008 Views

Hi,

I just wrote a simple console application to test if the machine has SGX feature (by calling sgx_is_capable function), and if so, to try to enable it programmatically (by calling sgx_enable_device function). Note that the application is not an enclave and does not use an enclave either. It works perfectly on my machine (which has SGX feature, as well as both VS2012 and SGX SDK installed). Now my question is how to deploy it on client's machine. What dependencies does the application need to execute? I cannot get it running by just copy and paste (error 0xc00007b). Thanks in advance.

Regards

0 Kudos
1 Solution
Francisco_C_Intel
1,008 Views

sgx_enable_device() requires the platform software installed on the device.

sgx_cap_enable_device() does not have this requirement, but does require the sgx_capable.dll to be present as well as admin privileges.

View solution in original post

0 Kudos
2 Replies
Francisco_C_Intel
1,009 Views

sgx_enable_device() requires the platform software installed on the device.

sgx_cap_enable_device() does not have this requirement, but does require the sgx_capable.dll to be present as well as admin privileges.

0 Kudos
Rad_A_
Beginner
1,008 Views

Got it. Thanks Francisco.

0 Kudos
Reply