brenzi
brenzi
I fear we will need more to get wss:// into the enclave working. at least jsonrpc-ws-server and its dependencies
Our reference implementation is: https://github.com/paritytech/substrate/tree/master/client/rpc-api We don't necessarily need to support all transport protocols. `wss://` is enough. ``` jsonrpc-core jsonrpc-core-client jsonrpc-pubsub (?) jsonrpc-client-transports (?) jsonrpc-derive jsonrpc-ws-server jsonrpc-server-utils ``` (secure) websockets...
when can we expect the release of 1.1.4?
You're amazingly quick! Thank you So my assumption was wrong that [fake_provisioning](https://github.com/baidu/rust-sgx-sdk/blob/9d4fa0f603e44bb82efae9d913c586a498b7d9da/samplecode/static-data-distribution/enclave/src/lib.rs#L133) writes the key in cleartext? So `std::sgxfs::SgxFile` always writes encrypted data?
this is all very helpful, thanks again.
> `Rsa3072KeyPair` and `Rsa2048KeyPair` has already derived `Serialize` and `Deserialize`. However, it seems `SgxRsaPubKey` can't be serialized. It only implements `Default` and `Drop` ``` let _pubkey_json = serde_json::to_string(&_pubkey).unwrap(); | ^^^^^^^^^^^^^^^^^^^^^...
I've managed to hack my example idea myself: [sealedkey](https://github.com/brenzi/substraTEE/tree/master/sealedkey) However, I couldn't return a SgxRsaPubkey from the enclave, because that object can't be serialized (see above). So I had to...
@dingelish No need to apologize, there's no hurry. Enjoy your vacation!
I've found a bunch of new forks which are not tagged as suggested here: ` log, chrono, base64, yasna, num-bigint` What's the logic behind which ones are tagged and which...
It might be a bit cumbersome, but what about tagging `v0.13.1_sgx1.0.8`. Of course, this only makes sense if the version specified in the crate root toml matches the tag. But...