Skip to content

Commit

Permalink
Sync with 3d2279d4377045e756b3c4cd171e1c35ee533579
Browse files Browse the repository at this point in the history
  • Loading branch information
KalyanCManukonda committed Apr 5, 2021
1 parent bcb5b4d commit 4751006
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ For ease of understanding follow the below sequence
3. Run the usecase examples provided both in Notebook and Embedded projects

## Release Notes
- 20210405
- Corrected Expire years for device and signer

- 20210324
- Bug fixes in C def files and TNG default policy
- Added Thing Type while registering to AWS using MAR
Expand Down
2 changes: 1 addition & 1 deletion assets/html/usecase_configurator/assets/js/VERSION
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var TPDS_VERSION = "20210324"
var TPDS_VERSION = "20210405"

var TPDS_VERSION_STRING = "<p>Trust Platform Design Suite version: "+TPDS_VERSION+"</p>"
var TPDS_CUSTOM_VERSION_STRING = "<p>TrustCUSTOM Tool version: "+TPDS_VERSION+"</p>"
Expand Down
4 changes: 2 additions & 2 deletions assets/html/usecase_configurator/assets/js/flexParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ function processXML(xmlObj) {
document.getElementById('tflxtls_cust_cert_def_device_c_hex').innerHTML +
document.getElementById('tflxtls_cust_cert_def_device_c_p2').innerHTML +
document.getElementById('tflxtls_cust_cert_def_device_c_p3').innerHTML +
' .expire_years = 31,' +
' .expire_years = 28,' +
document.getElementById('tflxtls_cust_cert_def_device_c_p3a').innerHTML +
document.getElementById('tflxtls_cust_cert_def_device_c_p5').innerHTML;
jsZipAddFile("tflxtls_cust_cert_def_device.c", deviceCertC);
Expand All @@ -278,7 +278,7 @@ function processXML(xmlObj) {
document.getElementById('tflxtls_cust_cert_def_signer_c_p2').innerHTML +
convertHextoChex(ca_pub_key, 32) +
document.getElementById('tflxtls_cust_cert_def_signer_c_p3').innerHTML +
' .expire_years = 28,' +
' .expire_years = 31,' +
document.getElementById('tflxtls_cust_cert_def_signer_c_p3a').innerHTML;
jsZipAddFile("tflxtls_cust_cert_def_signer.c", signerCertC);
}
Expand Down

0 comments on commit 4751006

Please sign in to comment.