<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Read ECC Curvelist fails when SCP03 enabled in Secure Authentication</title>
    <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1663077#M1266</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150525"&gt;@deang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you referring to the case when only PlatformSCP is enabled?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Kan&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;BR /&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;</description>
    <pubDate>Mon, 05 Jun 2023 02:21:13 GMT</pubDate>
    <dc:creator>Kan_Li</dc:creator>
    <dc:date>2023-06-05T02:21:13Z</dc:date>
    <item>
      <title>Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1652550#M1256</link>
      <description>&lt;P&gt;Using&amp;nbsp;Se05x_API_ReadECCurveList().&amp;nbsp; Fails when SCP03 is enabled, when SCP03 is not enabled does not fail.&amp;nbsp; Is this expected behavior?&lt;/P&gt;&lt;P&gt;Dean&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 May 2023 21:58:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1652550#M1256</guid>
      <dc:creator>deang</dc:creator>
      <dc:date>2023-05-17T21:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1652803#M1257</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150525"&gt;@deang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It should work with SCP03 enabled, may I have your test code as well as the log for a review? I may try to reproduce it here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your patience!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Kan&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;BR /&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;</description>
      <pubDate>Thu, 18 May 2023 05:58:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1652803#M1257</guid>
      <dc:creator>Kan_Li</dc:creator>
      <dc:date>2023-05-18T05:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1654054#M1259</link>
      <description>&lt;P&gt;Test code,&amp;nbsp;kSE050_ECCurve_MAX_id == 0x43&lt;/P&gt;&lt;P&gt;static smStatus_t _create_curve_if_necessary(SE05x_ECCurve_t curve_id)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; &amp;nbsp; smStatus_t status = SM_NOT_OK;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; uint8_t curveList[kSE050_ECCurve_MAX_id] = { 0 };&lt;BR /&gt;&amp;nbsp; &amp;nbsp; size_t curveListLen = sizeof(curveList);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; // TODO: Fails when SCP03 is enabled. 5/17/2023 DAG.&lt;BR /&gt;&amp;nbsp; &amp;nbsp; status = Se05x_API_ReadECCurveList(&amp;amp;_se050_session_ctx, curveList, &amp;amp;curveListLen);&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; if (status != SM_OK) {&amp;nbsp; &amp;nbsp;&amp;lt;-- Fails here with SM_NOT_OK&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return status&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;.... rest of function not show&amp;nbsp;&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 21:57:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1654054#M1259</guid>
      <dc:creator>deang</dc:creator>
      <dc:date>2023-05-19T21:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1654339#M1261</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150525"&gt;@deang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried your code in the se05x_minial demo, it works just well, maybe the cause is due to the&amp;nbsp;&lt;SPAN&gt;_se050_session_ctx was not referred correctly?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kan_Li_0-1684729472872.png" style="width: 691px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/224104i464417916799C705/image-dimensions/691x304?v=v2" width="691" height="304" role="button" title="Kan_Li_0-1684729472872.png" alt="Kan_Li_0-1684729472872.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a great day,&lt;BR /&gt;Kan&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;BR /&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 04:25:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1654339#M1261</guid>
      <dc:creator>Kan_Li</dc:creator>
      <dc:date>2023-05-22T04:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1662851#M1264</link>
      <description>&lt;P&gt;Thanks Kan.&lt;/P&gt;&lt;P&gt;I'm using the Nano package.&amp;nbsp; Digging further it looks like response isn't decrypted correctly, but the MAC check passes.&amp;nbsp; Head-scratcher.&amp;nbsp; I'll do some more digging.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 19:40:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1662851#M1264</guid>
      <dc:creator>deang</dc:creator>
      <dc:date>2023-06-02T19:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1663077#M1266</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150525"&gt;@deang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you referring to the case when only PlatformSCP is enabled?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Kan&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;BR /&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 02:21:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1663077#M1266</guid>
      <dc:creator>Kan_Li</dc:creator>
      <dc:date>2023-06-05T02:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1663510#M1269</link>
      <description>&lt;P&gt;Yes. When using PlatformSCP the call fails.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 13:19:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1663510#M1269</guid>
      <dc:creator>deang</dc:creator>
      <dc:date>2023-06-05T13:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1664082#M1270</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150525"&gt;@deang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the information! Actually I just found&amp;nbsp;Se05x_API_ReadECCurveList() is not included in the nano package, so how did you put this function there? maybe it is software integration issue indeed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a great day,&lt;BR /&gt;Kan&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;BR /&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2023 07:59:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1664082#M1270</guid>
      <dc:creator>Kan_Li</dc:creator>
      <dc:date>2023-06-06T07:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1664562#M1271</link>
      <description>&lt;P&gt;We ported&amp;nbsp;&lt;SPAN&gt;Se05x_API_ReadECCurveList()&amp;nbsp; from the full Plug&amp;amp;Trust stack.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2023 18:55:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1664562#M1271</guid>
      <dc:creator>deang</dc:creator>
      <dc:date>2023-06-06T18:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1664751#M1273</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150525"&gt;@deang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the clarification! Actually there is slight difference in the SE05X API implementation&amp;nbsp;between the Nano and Full MW, how did you port it? Maybe you can sent me the code snippets for a review?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a great day,&lt;BR /&gt;Kan&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;BR /&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 03:09:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1664751#M1273</guid>
      <dc:creator>Kan_Li</dc:creator>
      <dc:date>2023-06-07T03:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1665246#M1274</link>
      <description>&lt;P&gt;I did compare the two versions of Se05X_API_ReadCurveList(), one in Nano package and the other in full MW stack.&amp;nbsp; The only difference was calling DoAPDUTxRx() in Nano vs. DoAPDUTxRx_s_Case4() in full MW.&amp;nbsp; The main difference seems to be setting the LE byte in the request.&amp;nbsp; I tried forcing this byte on-off without any luck.&amp;nbsp; In the Nano package, the actual call is successful (DoAPDUTxRx() return SM_OK), but when the response buffer is parsed, tlvGet_u8Buf() returns 1, an error.&amp;nbsp; The response buffer looks incorrect.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the response buffer (23 bytes) when the call fails (starting address 0x20001A4D):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="deang_0-1686147170067.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/226652i419F990CC50700CA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="deang_0-1686147170067.png" alt="deang_0-1686147170067.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;On success here the response buffer (23 bytes):&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="deang_1-1686147326507.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/226653i6C97D295E056361E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="deang_1-1686147326507.png" alt="deang_1-1686147326507.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code itself:&lt;/P&gt;&lt;P&gt;smStatus_t Se05x_API_ReadECCurveList(pSe05xSession_t session_ctx, uint8_t *data, size_t *pdataLen)&lt;BR /&gt;{&lt;BR /&gt;smStatus_t retStatus = SM_NOT_OK;&lt;BR /&gt;tlvHeader_t hdr = {{kSE05x_CLA, kSE05x_INS_READ, kSE05x_P1_CURVE, kSE05x_P2_LIST}};&lt;BR /&gt;size_t cmdbufLen = 0;&lt;BR /&gt;uint8_t *pCmdbuf = NULL;&lt;BR /&gt;int tlvRet = 0;&lt;BR /&gt;uint8_t *pRspbuf = NULL;&lt;BR /&gt;size_t rspbufLen = 0;&lt;/P&gt;&lt;P&gt;ENSURE_OR_GO_CLEANUP(session_ctx != NULL);&lt;/P&gt;&lt;P&gt;memset(session_ctx-&amp;gt;apdu_buffer, 0, sizeof(session_ctx-&amp;gt;apdu_buffer));&lt;/P&gt;&lt;P&gt;pCmdbuf = &amp;amp;session_ctx-&amp;gt;apdu_buffer[0];&lt;BR /&gt;pRspbuf = &amp;amp;session_ctx-&amp;gt;apdu_buffer[0];&lt;BR /&gt;rspbufLen = sizeof(session_ctx-&amp;gt;apdu_buffer);&lt;/P&gt;&lt;P&gt;SMLOG_D("APDU - Se05x_API_ReadECCurveList [] \n");&lt;/P&gt;&lt;P&gt;retStatus = DoAPDUTxRx(session_ctx, &amp;amp;hdr, session_ctx-&amp;gt;apdu_buffer, cmdbufLen, pRspbuf, &amp;amp;rspbufLen, 1);&lt;BR /&gt;if (retStatus == SM_OK) {&lt;BR /&gt;retStatus = SM_NOT_OK;&lt;BR /&gt;size_t rspIndex = 0;&lt;BR /&gt;tlvRet = tlvGet_u8buf(pRspbuf, &amp;amp;rspIndex, rspbufLen, kSE05x_TAG_1, data, pdataLen); /* */&lt;BR /&gt;if (0 != tlvRet) {&lt;BR /&gt;goto cleanup;&lt;BR /&gt;}&lt;BR /&gt;if ((rspIndex + 2) == rspbufLen) {&lt;BR /&gt;retStatus = (pRspbuf[rspIndex] &amp;lt;&amp;lt; &lt;LI-EMOJI id="lia_smiling-face-with-sunglasses" title=":smiling_face_with_sunglasses:"&gt;&lt;/LI-EMOJI&gt; | (pRspbuf[rspIndex + 1]);&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;if (retStatus == SM_ERR_ACCESS_DENIED_BASED_ON_POLICY) {&lt;BR /&gt;SMLOG_I("Denied to ReadECCurveList");&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;cleanup:&lt;BR /&gt;return retStatus;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 14:16:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1665246#M1274</guid>
      <dc:creator>deang</dc:creator>
      <dc:date>2023-06-07T14:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1665921#M1275</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150525"&gt;@deang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the sharing ! I tried your code with the example of&amp;nbsp;ex_se05x_crypto, and found a code issue as shown below, and it works well after fixing.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kan_Li_0-1686208078232.png" style="width: 633px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/226773i95CC7787C9DE486C/image-dimensions/633x276?v=v2" width="633" height="276" role="button" title="Kan_Li_0-1686208078232.png" alt="Kan_Li_0-1686208078232.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kan_Li_1-1686208117922.png" style="width: 651px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/226774i6BE19F978FCE6EBC/image-dimensions/651x284?v=v2" width="651" height="284" role="button" title="Kan_Li_1-1686208117922.png" alt="Kan_Li_1-1686208117922.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kan_Li_2-1686208162603.png" style="width: 674px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/226775i41E38E3B5F9F02E1/image-dimensions/674x414?v=v2" width="674" height="414" role="button" title="Kan_Li_2-1686208162603.png" alt="Kan_Li_2-1686208162603.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have a great day,&lt;BR /&gt;Kan&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;BR /&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 07:09:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1665921#M1275</guid>
      <dc:creator>Kan_Li</dc:creator>
      <dc:date>2023-06-08T07:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1666256#M1276</link>
      <description>&lt;P&gt;That's not where the code is failing. tlvGet_u8buf() returns 1 vs. 0.&amp;nbsp; Digging further, inside tlvGet_u8buf(), the line of code failing is:&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (got_tag != tag) { goto cleanup; }&lt;/P&gt;&lt;P&gt;The tag's incorrect b/c the response from the se050 seems garbled.&amp;nbsp; You can see the good and bad response in my previous post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 14:11:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1666256#M1276</guid>
      <dc:creator>deang</dc:creator>
      <dc:date>2023-06-08T14:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: Read ECC Curvelist fails when SCP03 enabled</title>
      <link>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1666607#M1277</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/150525"&gt;@deang&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Actually I could not reproduce your issue here, in your code, if&amp;nbsp;&lt;SPAN&gt;tlvGet_u8buf() returns 1,&amp;nbsp;Se05x_API_ReadECCurveList returns&amp;nbsp;SM_NOT_OK, and&amp;nbsp;"Error in Se05x_API_ReadECCurveList \n" will be printed, but in my test, this debug info doesn't come out. Maybe you can try it again with this little fix?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Kan&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;BR /&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt;Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 03:54:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Secure-Authentication/Read-ECC-Curvelist-fails-when-SCP03-enabled/m-p/1666607#M1277</guid>
      <dc:creator>Kan_Li</dc:creator>
      <dc:date>2023-06-09T03:54:41Z</dc:date>
    </item>
  </channel>
</rss>

