Skip to content

Commit

Permalink
remove EPID call for mrenclave of self (#1662)
Browse files Browse the repository at this point in the history
* remove EPID call for mrenclave of self

* bump 0.15.5
  • Loading branch information
brenzi authored Dec 16, 2024
1 parent 495ecd6 commit 60a2e8f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2557,7 +2557,7 @@ dependencies = [

[[package]]
name = "integritee-cli"
version = "0.15.4"
version = "0.15.5"
dependencies = [
"array-bytes 6.1.0",
"base58",
Expand Down Expand Up @@ -2610,7 +2610,7 @@ dependencies = [

[[package]]
name = "integritee-service"
version = "0.15.4"
version = "0.15.5"
dependencies = [
"anyhow",
"async-trait",
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "integritee-cli"
version = "0.15.4"
version = "0.15.5"
authors = ["Integritee AG <hello@integritee.network>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion enclave-runtime/Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ dependencies = [

[[package]]
name = "enclave-runtime"
version = "0.15.4"
version = "0.15.5"
dependencies = [
"array-bytes 6.2.2",
"cid",
Expand Down
2 changes: 1 addition & 1 deletion enclave-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "enclave-runtime"
version = "0.15.4"
version = "0.15.5"
authors = ["Integritee AG <hello@integritee.network>"]
edition = "2021"

Expand Down
5 changes: 1 addition & 4 deletions enclave-runtime/src/ocall/attestation_ocall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,7 @@ trait GetSgxReport {

impl<T: EnclaveAttestationOCallApi> GetSgxReport for T {
fn get_report_of_self(&self) -> SgxResult<sgx_report_body_t> {
// (1) get ti + eg
let init_quote_result = self.sgx_init_quote()?;

let target_info = init_quote_result.0;
let target_info: sgx_target_info_t = sgx_target_info_t::default();
let report_data: sgx_report_data_t = sgx_report_data_t::default();

let rep = match rsgx_create_report(&target_info, &report_data) {
Expand Down
2 changes: 1 addition & 1 deletion service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "integritee-service"
version = "0.15.4"
version = "0.15.5"
authors = ["Integritee AG <hello@integritee.network>"]
build = "build.rs"
edition = "2021"
Expand Down

0 comments on commit 60a2e8f

Please sign in to comment.