I have a MySQL Server which is inside SGX and serves the Clients which submits sql queries to the server to run the queries inside the intel SGX. My question is that which protocol should be used for connection of these two machines (sql server(with sgx) and sql client)?
Asked
Active
Viewed 41 times
1 Answers
1
You should use TLS to create a secure channel between your server and your client. If data are transmitted in clear, then SGX becomes useless.

X99
- 905
- 10
- 24
-
Thanks for you answer rather than TLS is there any other opportunities? – sama Aug 23 '22 at 13:51
-
See MySQL's documentation. But why not use TLS, as it is the de-facto standard? – X99 Aug 23 '22 at 14:02