Re: [apache/incubator-teaclave] worker含义 (#450)

2021-01-04 Thread Mingshen Sun
@gaojunjie03 多谢你的回答,非常准确。现在文档还不是很完善,阅读代码会更直接一些。 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/apache/incubator-teaclave/issues/450#issuecomment-754297890

Re: [apache/incubator-teaclave] worker含义 (#450)

2020-12-30 Thread gjj
1/2、实际上整个execution-service(enclave端)服务已经在sgx环境上跑了,所以整个execution-service(enclave端)是在可信环境上执行 3、runtime的作用就是用来给你的文件数据进行解密获取,加密写出。比如mesapy的with teaclave_open("label","rb") as f: 最终会调用runtime的open_input获取解密后的数据,with teaclave_open("label","wb") as f: 则最终调用runtime的create_output将要写入的数据进行加密然后写到文件default

Re: [apache/incubator-teaclave] worker含义 (#450)

2020-12-30 Thread gjj
> 提交到gsx是以什么方式提 1/2、实际上整个execution-service(enclave端)服务已经在sgx环境上跑了,所以整个execution-service(enclave端)是在可信环境上执行 3、runtime的作用就是用来给你的文件数据进行解密获取,加密写出。比如mesapy的with teaclave_open("label","rb") as f: 最终会调用runtime的open_input获取解密后的数据,with teaclave_open("label","wb") as f:

[apache/incubator-teaclave] worker含义 (#450)

2020-12-24 Thread xuguoliang
+---+ |Execution Service | | +-+ | | |Worker | | | | +--+ +-+ | | | | | Executor | | Runtime | | | | | +--+