文件名称:rust-sgx:Fortanix Rust Enclave开发平台
文件大小:420KB
文件格式:ZIP
更新时间:2024-06-02 10:04:56
Rust
Fortanix Rust Enclave开发平台 是从头开始编写Intel SGX安全区的首选方法。 # Install EDP components rustup target add x86_64-fortanix-unknown-sgx --toolchain nightly cargo install fortanix-sgx-tools sgxs-tools echo >> ~ /.cargo/config -e ' [target.x86_64-fortanix-unknown-sgx]\nrunner = "ftxsgx-runner-cargo" ' # Check your SGX setup sgx-detect # Run your enclave! cargo new --bin hello-world cd hello-world cargo run --t