Skip to content

Commit

Permalink
Added SGX endorsement library's envelope function stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
amendelzon committed Nov 22, 2024
1 parent d57d434 commit 94086fb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions firmware/src/hal/sgx/src/trusted/endorsement.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,16 @@ bool endorsement_init() {
return true;
}

// TODO: Implement
uint8_t* endorsement_get_envelope() {
return NULL;
}

// TODO: Implement
size_t endorsement_get_envelope_length() {
return 0;
}

bool endorsement_sign(uint8_t* msg,
size_t msg_size,
uint8_t* signature_out,
Expand Down

0 comments on commit 94086fb

Please sign in to comment.