I'm using the branch `v2.0.0-preview-11-17`, creating Rsa3072KeyPair works for
`tcrypto` feature (within enclave) but not with `ucrypto` for non-enclave.
It can be reproduced by:
```
use sgx_crypto::rsa::Rsa3072KeyPair;
fn main() {
let _ = Rsa3072KeyPair::create().unwrap();
}
```
with dep:
```
[dependencies]
sgx_crypto = { git = "https://github.com/apache/incubator-teaclave-sgx-sdk",
branch = "v2.0.0-preview-11-17", default-features = false, features =
["ucrypto"] }
```
--
Reply to this email directly or view it on GitHub:
https://github.com/apache/incubator-teaclave-sgx-sdk/issues/456
You are receiving this because you are subscribed to this thread.
Message ID: <apache/incubator-teaclave-sgx-sdk/issues/[email protected]>