-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Import third-party Lua libs usable in LuaSGX #4
Comments
LuaCSV has been imported in LuaSGX by rafael |
It is not possible to dynamically add machine code to enclaves after they were created. Only by statically linking the additional code into the signed shared library that is loaded as enclave. |
@rafaelppires you're able to do it, you just have done it, so it is possible |
I thought you meant by 'import' the usual '.so' way of doing it. |
I know that we cannot import a lib into an enclave on-the-fly |
It is rather manual. It depends on the code. For the cjson I did a static library and linked it to the enclave. The csv was simpler, so I just added it as source file. Each approach requires a different manipulation of the Makefile. The enclave code also changes to add the initialization call for the new packages. |
so I wait for your documentation about that to see how we can deal with that |
Yes, no hurry :-)
On Sun, 26 Feb 2017 at 18:21, Aurelien HAVET ***@***.***> wrote:
so I wait for your documentation about that to see how we can deal with
that
but like I said, there is not any hurry for that
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#4 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAHRqAawcU8aG6JT8RsAP0CqvlDwKSQVks5rgbSogaJpZM4MMHWR>
.
--
--
Valerio
|
rafaelpp [5:51 PM] aurelien [5:53 PM] rafaelpp [5:53 PM] aurelien [5:55 PM] rafaelpp [6:04 PM] aurelien [6:14 PM] rafaelpp [6:15 PM] aurelien [6:17 PM] rafaelpp [6:17 PM] aurelien [6:18 PM] rafaelpp [6:19 PM] |
Particularly, we'd like to use LuaCSV(C library) inside an enclave
The text was updated successfully, but these errors were encountered: