LocalAttestationTrustedWrapper.cpp 348 B

1234567891011
  1. #include "LocalAttestationCode_t.h"
  2. #include "LocalAttestationTrusted.h"
  3. uint32_t session_request_wrapper(sgx_dh_msg1_t *dh_msg)
  4. {
  5. return LocalAttestationTrusted::session_request(dh_msg1);
  6. }
  7. uint32_t exchange_report_wrapper(sgx_dh_msg2_t *dh_msg2, sgx_dh_msg3_t *dh_msg3)
  8. {
  9. return LocalAttestationTrusted::exchange_report(dh_msg2, dh_msg3);
  10. }