12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef _PCE_CERT_H_
- #define _PCE_CERT_H_
- #include "se_types.h"
- #include "sgx_tcrypto.h"
- #include "epid_pve_type.h"
- const uint16_t CUR_PCE_ID = 0;
- #define ALG_RSA_OAEP_2048 0
- #define ALG_RSA_OAEP_3072 1
- #define NIST_P256_ECDSA_SHA256 0
- typedef struct _pce_info_t{
- sgx_isv_svn_t pce_isvn;
- uint16_t pce_id;
- }pce_info_t;
- #endif
|