Teaclave execution service 使用的 secure file system 基于 `protected_fs`, (https://github.com/apache/incubator-teaclave/blob/master/common/protected_fs_rs/src/sgx_tprotected_fs.rs) 提供了 POSIX compatible 的 file I/O 接口。
对于加密方式,不是“逐行写入,逐行加密”,而是按照 block 进行,提供了 LRU cache。 如果想了解更多,可以参考 protected fs 的代码:https://github.com/apache/incubator-teaclave/tree/master/common/protected_fs_rs/protected_fs_c/sgx_tprotected_fs -- 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/368#issuecomment-647861215
