12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
-
- #ifndef _ECC_H
- #define _ECC_H
- #include "pse_inc.h"
- #include "pse_types.h"
- #include "stdlib.h"
- #include "aeerror.h"
- #include "ae_ipp.h"
- #ifndef BREAK_ON_ERROR
- #define BREAK_ON_ERROR(x) if(SGX_SUCCESS != x){break;}
- #endif
- bool verify_hmac_sha256(
- const uint8_t* mac_key,
- uint32_t key_len,
- const uint8_t* data_buf,
- uint32_t buf_size,
- const uint8_t* mac_buf);
- ae_error_t error_reinterpret(pse_op_error_t op_error);
- #endif
|