[GitHub] [incubator-teaclave-trustzone-sdk] mssun commented on issue #58: The third-party lib questions

2022-01-19 Thread GitBox
mssun commented on issue #58: URL: https://github.com/apache/incubator-teaclave-trustzone-sdk/issues/58#issuecomment-1017194433 > I know that TA can execute a third-party lib(crate), and the third-party lib must be a static link lib, right? I believe OP-TEE supports TA dynamic

[GitHub] [incubator-teaclave-trustzone-sdk] StephQAZ opened a new issue #58: The third-party lib questions

2022-01-19 Thread GitBox
StephQAZ opened a new issue #58: URL: https://github.com/apache/incubator-teaclave-trustzone-sdk/issues/58 Hello team, I am new to Rust OP-TEE. I use C/C++, and I haven't learned Rust. I know that TA can execute a third-party lib(`crate`), and the third-party lib must be a static link

[GitHub] [incubator-teaclave-trustzone-sdk] mssun commented on issue #57: 动态库三方依赖需求

2022-01-19 Thread GitBox
mssun commented on issue #57: URL: https://github.com/apache/incubator-teaclave-trustzone-sdk/issues/57#issuecomment-1017138240 CA 是 host 操作系统环境(也就是 Linux),TA 运行在 TEE OS 中(也就是 OP-TEE OS)。不是“虚拟出来的两个 Linux 系统”。 -- This is an automated message from the Apache Git Service. To respond to

[GitHub] [incubator-teaclave-trustzone-sdk] gaojunjie03 commented on issue #57: 动态库三方依赖需求

2022-01-19 Thread GitBox
gaojunjie03 commented on issue #57: URL: https://github.com/apache/incubator-teaclave-trustzone-sdk/issues/57#issuecomment-1017094554 我想问,其实ca和ta是不是宿主机虚拟出来的两个linux系统?如果我再宿主机装了python环境,其实ca和ta是不知道且用不了宿主机的python对吧? -- This is an automated message from the Apache Git Service. To respond

Re: [apache/incubator-teaclave] Add watchdog functionalities (PR #600)

2022-01-19 Thread Mingshen Sun
Merged #600 into master. -- Reply to this email directly or view it on GitHub: https://github.com/apache/incubator-teaclave/pull/600#event-5921162065 You are receiving this because you are subscribed to this thread. Message ID:

[GitHub] [incubator-teaclave-trustzone-sdk] DemesneGH edited a comment on issue #56: 关于ta程序使用第三方库

2022-01-19 Thread GitBox
DemesneGH edited a comment on issue #56: URL: https://github.com/apache/incubator-teaclave-trustzone-sdk/issues/56#issuecomment-1012722948 @gaojunjie03 > 调用第三方动态链接库呢?

[GitHub] [incubator-teaclave-trustzone-sdk] DemesneGH commented on issue #57: 动态库三方依赖需求

2022-01-19 Thread GitBox
DemesneGH commented on issue #57: URL: https://github.com/apache/incubator-teaclave-trustzone-sdk/issues/57#issuecomment-1016349008 @gaojunjie03 在normal world (CA) 中用Rust调动态库没有问题。 在secure world (TA) 理论上应该不能调用动态库(但我没有试过,你也可以试一下)。可以链接静态库至TA中。 -- This is an automated message from

[GitHub] [incubator-teaclave-trustzone-sdk] gaojunjie03 opened a new issue #57: 动态库三方依赖需求

2022-01-19 Thread GitBox
gaojunjie03 opened a new issue #57: URL: https://github.com/apache/incubator-teaclave-trustzone-sdk/issues/57 您好!是这样的,我们这边用了python写了一堆的算法,引入了各种第三方的依赖库。现在我们想把这个python代码放到tee环境下运行,想法是:将这些python代码打包成动态库.so,然后rust那边链接该动态库执行里面的python代码,然后编译rust项目再normarl world上执行,由于是动态库,(normarlworld?secure