You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@teaclave.apache.org by di...@apache.org on 2020/05/09 17:14:15 UTC

[incubator-teaclave-sgx-sdk] branch master updated: fix(sgx_types): add the missing 'latest_issue_date' and 'earliest_expiration_date' to sgx_ql_qv_supplemental_t

This is an automated email from the ASF dual-hosted git repository.

dingyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave-sgx-sdk.git


The following commit(s) were added to refs/heads/master by this push:
     new 186bdac  fix(sgx_types): add the missing 'latest_issue_date' and 'earliest_expiration_date' to sgx_ql_qv_supplemental_t
     new 253b3ac  Merge pull request #236 from sammyne/sgx-types-fix
186bdac is described below

commit 186bdac2d2d2dd4b908787899b19f078462b6e96
Author: sammyne <li...@baidu.com>
AuthorDate: Sat May 9 11:00:58 2020 +0000

    fix(sgx_types): add the missing 'latest_issue_date' and 'earliest_expiration_date' to sgx_ql_qv_supplemental_t
---
 sgx_types/src/types.rs | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/sgx_types/src/types.rs b/sgx_types/src/types.rs
index 4f19136..e09195e 100644
--- a/sgx_types/src/types.rs
+++ b/sgx_types/src/types.rs
@@ -1386,11 +1386,16 @@ impl_enum! {
 //
 // qve_header.h
 //
+// latest_issue_date and earliest_expiration_date is as of DCAP_1.5
 impl_copy_clone! {
     pub struct sgx_ql_qv_supplemental_t {
         pub version: uint32_t,
+
         pub earliest_issue_date: time_t,
+        pub latest_issue_date: time_t,
+        pub earliest_expiration_date: time_t,
         pub tcb_level_date_tag: time_t,
+
         pub pck_crl_num: uint32_t,
         pub root_ca_crl_num: uint32_t,
         pub tcb_eval_ref_num: uint32_t,
@@ -1403,7 +1408,7 @@ impl_copy_clone! {
 }
 
 impl_struct_default! {
-    sgx_ql_qv_supplemental_t; //120
+    sgx_ql_qv_supplemental_t; //104
 }
 
 impl_struct_ContiguousMemory! {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@teaclave.apache.org
For additional commands, e-mail: commits-help@teaclave.apache.org