<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[wolfSSL - Embedded SSL Library — [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
		<link>https://www.wolfssl.com/forums/topic1565-solved-getting-188-while-connecting-using-wolfsslconnect.html</link>
		<atom:link href="https://www.wolfssl.com/forums/feed-rss-topic1565.xml" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in [SOLVED] Getting -188 while connecting using wolfsslconnect.]]></description>
		<lastBuildDate>Mon, 10 Aug 2020 09:56:41 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5387.html#p5387</link>
			<description><![CDATA[<p>Hi Kaleb and David,<br />I resolved this issue. I put it on hold and tried after a few days. <br />Actually, the issue was because of external fragmentation. Even though I was having enough heap, the size of 5kb approx was not free, which was asking during the handshaking. <br />I had t increase the heap by approx 20kb and now it&#039;s working all fine. Though I will test a few more things in this, but, for now, it is working all fine. </p><p>Thanks for your support and follow up.</p>]]></description>
			<author><![CDATA[null@example.com (akhi_gangwar)]]></author>
			<pubDate>Mon, 10 Aug 2020 09:56:41 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5387.html#p5387</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5346.html#p5346</link>
			<description><![CDATA[<p>Hi Kaleb,<br />This si the setting I am using by default in settings.h <br /></p><div class="codebox"><pre><code>#ifdef WOLFSSL_TIRTOS
    #define SIZEOF_LONG_LONG 8
    #define NO_WRITEV
    #define NO_WOLFSSL_DIR
    #define USE_FAST_MATH
    #define TFM_TIMING_RESISTANT
    #define NO_DEV_RANDOM
    #define NO_FILESYSTEM
    #define USE_CERT_BUFFERS_2048
    #define NO_ERROR_STRINGS
    #define USER_TIME
    #define HAVE_ECC

    #ifdef __IAR_SYSTEMS_ICC__
        #pragma diag_suppress=Pa089
    #elif !defined(__GNUC__)
        /* Suppress the sslpro warning */
        #pragma diag_suppress=11
    #endif

    #include &lt;ti/sysbios/hal/Seconds.h&gt;
#endif</code></pre></div><p>I made user_setings.h and put the <br />#define WOLFSSL_TI_CRYPT <br />//#define DEBUG_WOLFSSL.</p><p>setting wise I think settings.h is already included in every step as https is working. I tried to comment USE_FAST_MATH also. Still no improvement, https is working and mqtt resets. <br />How much stack and heap on an average it needed? I have 32KB of stack for this task and 90KB of heap for the system. Out of 30KB of stack, peak of stack before handshake was 13KB which means we have still 17KB of stack left just before the handshaking in mqtt. For heap, I have 47KB of left before handshake.</p>]]></description>
			<author><![CDATA[null@example.com (akhi_gangwar)]]></author>
			<pubDate>Mon, 06 Jul 2020 19:34:40 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5346.html#p5346</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5342.html#p5342</link>
			<description><![CDATA[<p>akhi_gangwar,</p><p>We have checked the following so far:</p><p>1) Crypto tests are all passing (crypto operating normally)<br />2) cert/key work in another test (assuming they are in fact being used in mutual auth in that test)<br />3) you are confirming they are a pair just to be sure.</p><p>The next things that could lead to a reset are:</p><p>1) A collision between heap and stack, double check the device has sufficient memory allocated for the task expecially if using USE_FAST_MATH which requires more stack than heap or change to using integer.c instead of tfm.c and remove the USE_FAST_MATH settings.</p><p>2) A mismatch in settings between app and library can lead to undefined behavior. When using user_settings.h make sure the pre-processor macros at the project level include the define WOLFSSL_USER_SETTINGS and that your application includes the header &lt;wolfssl/wolfcrypt/settings.h&gt; BEFORE ALL OTHER wolfSSL headers and is pulling in user_settings.h.</p><p>Warm Regards,</p><p>K</p>]]></description>
			<author><![CDATA[null@example.com (Kaleb J. Himes)]]></author>
			<pubDate>Mon, 06 Jul 2020 17:06:51 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5342.html#p5342</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5331.html#p5331</link>
			<description><![CDATA[<p>Hi Kaleb,<br />Already the same certificate and key I am using and it&#039;s working on cc3100, not using wolfssl there. <br />I have 3 buffers-<br />1. root ca<br />2. certificate client<br />3. client private key</p><p>Which key pair you are talking about? buffer 2 and 3?<br />I&#039;ll try though this and will let you know. </p><p>Thanks</p>]]></description>
			<author><![CDATA[null@example.com (akhi_gangwar)]]></author>
			<pubDate>Fri, 03 Jul 2020 20:20:40 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5331.html#p5331</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5330.html#p5330</link>
			<description><![CDATA[<p>Akhi,</p><p>Can you double check that the certificate and key you are using for the server are a pair? If you are unsure how to check it I provide an example here awhile back that hasn&#039;t yet been merged or reviewed but you can&nbsp; copy/paste the app to test your cert and key are in fact a pair or not:</p><p><a href="https://github.com/wolfSSL/wolfssl-examples/pull/206/files">https://github.com/wolfSSL/wolfssl-exam … /206/files</a></p><p>Warm Regards,</p><p>K</p>]]></description>
			<author><![CDATA[null@example.com (Kaleb J. Himes)]]></author>
			<pubDate>Fri, 03 Jul 2020 14:45:52 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5330.html#p5330</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5329.html#p5329</link>
			<description><![CDATA[<p>Hi Kaleb and David,<br />I am now able to pass all the tests but still getting the reset. I included the WOLFSSL_TI_CRYPT in the user_settings.h. <br />I freed up memory also. Same logs are there in wolfssl. <br />MD5&nbsp; &nbsp; &nbsp; test passed!<br />MD4&nbsp; &nbsp; &nbsp; test passed!<br />SHA&nbsp; &nbsp; &nbsp; test passed!<br />SHA-256&nbsp; test passed!<br />HMAC-MD5 test passed!<br />HMAC-SHA test passed!<br />HMAC-SHA256 test passed!<br />ARC4&nbsp; &nbsp; &nbsp;test passed!<br />HC-128&nbsp; &nbsp;test passed!<br />Rabbit&nbsp; &nbsp;test passed!<br />DES&nbsp; &nbsp; &nbsp; test passed!<br />DES3&nbsp; &nbsp; &nbsp;test passed!<br />AES&nbsp; &nbsp; &nbsp; test passed!<br />RANDOM&nbsp; &nbsp;test passed!<br />RSA&nbsp; &nbsp; &nbsp; test passed!<br />DH&nbsp; &nbsp; &nbsp; &nbsp;test passed!<br />DSA&nbsp; &nbsp; &nbsp; test passed!<br />PWDBASED test passed!<br />ECC&nbsp; &nbsp; &nbsp; test passed!</p><p>Thanks <br />Akhi</p>]]></description>
			<author><![CDATA[null@example.com (akhi_gangwar)]]></author>
			<pubDate>Fri, 03 Jul 2020 11:25:03 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5329.html#p5329</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5328.html#p5328</link>
			<description><![CDATA[<p>Hi Kaleb and David,,<br />It&#039;s not memory related issue. I tested on some test project where I have 83% usage and there also I am getting reset and https is working fine as usual.</p><p>Thanks<br />Akhi</p>]]></description>
			<author><![CDATA[null@example.com (akhi_gangwar)]]></author>
			<pubDate>Fri, 03 Jul 2020 10:29:41 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5328.html#p5328</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5322.html#p5322</link>
			<description><![CDATA[<p>Hi Kaleb and David,<br />WOLFSSL_TI_CRYPT&nbsp; is not defined in my settings. Also, I am using wolfssl_tm4c_hw.aem4f file. <br />In https, everything is working fine. In mqtt, this issue arises. <br />There is one difference between both-</p><p>In https, I am using the only root ca, hence doing only server verification.</p><p>In mqtt, I am using client private key, client certificate and root ca also, hence server as well as client verification. </p><p>I never faced the reset in the HTTPS handshake. </p><p>Is this something related to it? Because, in https, I don&#039;t get any reset.</p><p>Can it be a memory issue? Though I can&#039;t see anything printing on console. My memory consumption of ram is about 98% after compiling the project which included 90KB of the heap and enough stack for all tasks. <br />I am creating tls for https, then using it, then deleting it every time for now to avoid any memory issue. Then I am using mqtt. </p><br /><p>Thanks,</p><p>Akhi</p>]]></description>
			<author><![CDATA[null@example.com (akhi_gangwar)]]></author>
			<pubDate>Wed, 01 Jul 2020 17:23:11 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5322.html#p5322</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5314.html#p5314</link>
			<description><![CDATA[<p>akhi_gangwar,</p><p>I can confirm we have only tested WOLFSSL_TI_CRYPT on TM4C1294NCPDT, we have not tested the hardware acceleration works correctly on the TM4C129ENCPDT. There are likely some subtle changes that would be required to make it work. Can you confirm that you linked the correct library also to be sure? The build instructions for wolfSSL with TIRTOS will output two separate libraries, wolfssl.aem4f and wolfssl_tm4c_hw.aem4f. If you have the setting WOLFSSL_TI_CRYPT and accidentally link wolfssl.aem4f that can cause issues. Also double check that your application is including &lt;wolfssl/wolfcrypt/settings.h&gt; BEFORE all other wolfSSL headers. If the settings are not included first that can lead to undefined behavior.</p><p>Warm Regards,</p><p>Kaleb</p>]]></description>
			<author><![CDATA[null@example.com (Kaleb J. Himes)]]></author>
			<pubDate>Tue, 30 Jun 2020 21:02:21 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5314.html#p5314</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5313.html#p5313</link>
			<description><![CDATA[<p>Hi akhi_gangwar,</p><p>I see now that you are using the TI hardware acceleration in ti-aes.c. Have you tried running without the hardware acceleration? For that you&#039;d just not define `WOLFSSL_TI_CRYPT`.</p><p>I will have another engineer who&#039;s worked on the TI parts review this report. It could be there is a new issue with tm4c129encpdt&nbsp; and `AesAlign16`.</p><p>Also I cannot see where -1014 would be generated from the ecc_test, is it possible to share the stack information for the error or enable logging with DEBUG_WOLFSSL and wolfSSL_Debugging_ON()?</p><p>Thanks,<br />David Garske, wolfSSL</p>]]></description>
			<author><![CDATA[null@example.com (dgarske)]]></author>
			<pubDate>Tue, 30 Jun 2020 20:26:56 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5313.html#p5313</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5312.html#p5312</link>
			<description><![CDATA[<p>Hi David,</p><p>wolfcrypt_test(&amp;args) -&gt; aes_test() -&gt; wc_AesCbcEncrypt -&gt; AesAlign16 -&gt; ROM_AESDataProcess</p><p>AES is not working. It goes into some hard loop when it calls ROM_AESDataProcess.<br />This is the logs after I commented the AES</p><p>Running wolfcrypt tests...<br /></p><div class="codebox"><pre><code>MD5      test passed!
MD4      test passed!
SHA      test passed!
SHA-256  test passed!
HMAC-MD5 test passed!
HMAC-SHA test passed!
HMAC-SHA256 test passed!
ARC4     test passed!
HC-128   test passed!
Rabbit   test passed!
DES      test passed!
DES3     test passed!
RANDOM   test passed!
RSA      test passed!
DH       test passed!
DSA      test passed!
PWDBASED test passed!
ECC      test failed!
 error = -1014</code></pre></div><p>Do you have any idea why it is not working??</p><p>Thanks</p>]]></description>
			<author><![CDATA[null@example.com (akhi_gangwar)]]></author>
			<pubDate>Tue, 30 Jun 2020 19:22:09 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5312.html#p5312</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5311.html#p5311</link>
			<description><![CDATA[<p>Hi akhi_gangwar,</p><p>Make sure you don&#039;t have `NO_CRYPT_TEST` defined in your user_settings.h. This will make sure the wolfCrypt test code is available. Usually a reset like that is caused by a hard-fault or a watchdog. Is there anyway to determine cause of reset on your platform? Most have a reset reason register. Micros like ARM have a hard fault interrupt handler, which shows the PC instruction where the fault occurred.</p><p>Thanks,<br />David Garske, wolfSSL</p>]]></description>
			<author><![CDATA[null@example.com (dgarske)]]></author>
			<pubDate>Mon, 29 Jun 2020 13:52:44 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5311.html#p5311</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5310.html#p5310</link>
			<description><![CDATA[<p>Hi David,<br />while trying this, I am getting linking error even though I have included everything. <br />unresolved symbol wolfcrypt_test, first referenced in ./modules/httpTask/httpsProcessor.obj<br />I included this path #include &lt;wolfcrypt/test/test.h&gt; and tried to extern too, still, I am getting this error while building. </p><p>Also, I increased the stack size and got nothing. The reset is still there.</p><p>Thanks<br />Akhilesh Gangwar</p>]]></description>
			<author><![CDATA[null@example.com (akhi_gangwar)]]></author>
			<pubDate>Mon, 29 Jun 2020 08:34:20 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5310.html#p5310</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5308.html#p5308</link>
			<description><![CDATA[<p>Hi akhi_gangwar,</p><p>The next operation is the &quot;processing server hello done&quot;, which uses decryption. Have you run the wolfCrypt test yet to validate your platform&#039;s individual algorithms?</p><p>Here is an example for calling wolfcrypt/test/test.c:<br /><a href="https://github.com/wolfSSL/wolfssl/blob/master/IDE/GCC-ARM/Source/test_main.c">https://github.com/wolfSSL/wolfssl/blob … est_main.c</a></p><p>Have you made sure your thread has enough stack space? Depending on the build options and cipher suite you may need up to 30KB in of stack space. You can reduce the stack requirement using build options like `WOLFSSL_SMALL_STACK` and `ALT_ECC_SIZE`. Here is a useful list I put together:<br /><a href="https://github.com/wolfSSL/wolfssl/tree/master/IDE/GCC-ARM#performance-tuning-options">https://github.com/wolfSSL/wolfssl/tree … ng-options</a></p><p>Thanks,<br />David Garske, wolfSSL</p><p>Thanks,<br />David Garske, wolfSSL</p>]]></description>
			<author><![CDATA[null@example.com (dgarske)]]></author>
			<pubDate>Fri, 26 Jun 2020 14:18:36 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5308.html#p5308</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Getting -188 while connecting using wolfsslconnect]]></title>
			<link>https://www.wolfssl.com/forums/post5307.html#p5307</link>
			<description><![CDATA[<p>Hi David,<br />I found the correct root ca. It is the starfield class 2 root ca. This certificate is working fine cc3100 wifi chip. With cc3100, I am using SL apis which is provided by TI for TLS. <br />Now with wolfssl, I am getting reset while handshaking. My device resets every time. I don&#039;t know why. Wolfssl is used with ethernet here. <br />I am pasting the logs-</p><div class="codebox"><pre><code>wolfSSL Entering WOLFSSL_CTX_new
wolfSSL Entering wolfSSL_Init
wolfSSL Entering wolfSSL_CertManagerNew
wolfSSL Leaving WOLFSSL_CTX_new, return 0
wolfSSL Entering wolfSSL_CTX_load_verify_buffer
Adding a CA
wolfSSL Entering GetExplicitVersion
wolfSSL Entering GetMyVersion
Got Cert Header
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Algo ID
Getting Cert Name
Getting Cert Name
Got Subject Name
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Key
Parsed Past Key
wolfSSL Entering DecodeCertExtensions
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeSubjKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeBasicCaConstraint
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
    Parsed new CA
    Freeing Parsed CA
    Freeing der CA
        OK Freeing der CA
wolfSSL Leaving AddCA, return 0
wolfSSL Entering wolfSSL_CTX_use_certificate_buffer
Checking cert signature type
wolfSSL Entering GetExplicitVersion
wolfSSL Entering GetMyVersion
Got Cert Header
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Algo ID
Getting Cert Name
Getting Cert Name
Got Subject Name
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Key
Not ECDSA cert signature
wolfSSL Entering wolfSSL_CTX_use_PrivateKey_buffer
wolfSSL Entering GetMyVersion
wolfSSL Entering SSL_new
wolfSSL Leaving SSL_new, return 0
wolfSSL Entering SSL_set_fd
wolfSSL Leaving SSL_set_fd, return 1
wolfSSL Entering wolfSSL_send()
wolfSSL Entering SSL_write()
handshake not complete, trying to finish
wolfSSL Entering wolfSSL_negotiate
wolfSSL Entering SSL_connect()
growing output buffer

Shrinking output buffer

connect state: CLIENT_HELLO_SENT
growing input buffer

received record layer msg
wolfSSL Entering DoHandShakeMsg()
wolfSSL Entering DoHandShakeMsgType
processing server hello
wolfSSL Entering VerifyClientSuite
wolfSSL Leaving DoHandShakeMsgType(), return 0
wolfSSL Leaving DoHandShakeMsg(), return 0
More messages in record
received record layer msg
wolfSSL Entering DoHandShakeMsg()
wolfSSL Entering DoHandShakeMsgType
processing certificate
Loading peer&#039;s cert chain
    Put another cert into chain
    Put another cert into chain
    Put another cert into chain
    Put another cert into chain
wolfSSL Entering GetExplicitVersion
wolfSSL Entering GetMyVersion
Got Cert Header
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Algo ID
Getting Cert Name
Getting Cert Name
Got Subject Name
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Key
Parsed Past Key
wolfSSL Entering DecodeCertExtensions
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeBasicCaConstraint
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeKeyUsage
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeSubjKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthInfo
wolfSSL Entering GetObjectId()
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeCrlDist
wolfSSL Entering GetObjectId()
Certificate Policy extension not supported yet.
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
About to verify certificate signature
Adding CA from chain
Adding a CA
wolfSSL Entering GetExplicitVersion
wolfSSL Entering GetMyVersion
Got Cert Header
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Algo ID
Getting Cert Name
Getting Cert Name
Got Subject Name
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Key
Parsed Past Key
wolfSSL Entering DecodeCertExtensions
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeBasicCaConstraint
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeKeyUsage
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeSubjKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthInfo
wolfSSL Entering GetObjectId()
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeCrlDist
wolfSSL Entering GetObjectId()
Certificate Policy extension not supported yet.
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
    Parsed new CA
    Freeing Parsed CA
    Freeing der CA
        OK Freeing der CA
wolfSSL Leaving AddCA, return 0
wolfSSL Entering GetExplicitVersion
wolfSSL Entering GetMyVersion
Got Cert Header
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Algo ID
Getting Cert Name
Getting Cert Name
Got Subject Name
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Key
Parsed Past Key
wolfSSL Entering DecodeCertExtensions
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeBasicCaConstraint
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeKeyUsage
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeSubjKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthInfo
wolfSSL Entering GetObjectId()
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeCrlDist
wolfSSL Entering GetObjectId()
Certificate Policy extension not supported yet.
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
About to verify certificate signature
Adding CA from chain
Adding a CA
wolfSSL Entering GetExplicitVersion
wolfSSL Entering GetMyVersion
Got Cert Header
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Algo ID
Getting Cert Name
Getting Cert Name
Got Subject Name
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Key
Parsed Past Key
wolfSSL Entering DecodeCertExtensions
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeBasicCaConstraint
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeKeyUsage
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeSubjKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthInfo
wolfSSL Entering GetObjectId()
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeCrlDist
wolfSSL Entering GetObjectId()
Certificate Policy extension not supported yet.
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
    Parsed new CA
    Freeing Parsed CA
    Freeing der CA
        OK Freeing der CA
wolfSSL Leaving AddCA, return 0
wolfSSL Entering GetExplicitVersion
wolfSSL Entering GetMyVersion
Got Cert Header
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Algo ID
Getting Cert Name
Getting Cert Name
Got Subject Name
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Key
Parsed Past Key
wolfSSL Entering DecodeCertExtensions
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeBasicCaConstraint
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeKeyUsage
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeSubjKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthInfo
wolfSSL Entering GetObjectId()
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeCrlDist
wolfSSL Entering GetObjectId()
Certificate Policy extension not supported yet.
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
About to verify certificate signature
Adding CA from chain
Adding a CA
wolfSSL Entering GetExplicitVersion
wolfSSL Entering GetMyVersion
Got Cert Header
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Algo ID
Getting Cert Name
Getting Cert Name
Got Subject Name
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Key
Parsed Past Key
wolfSSL Entering DecodeCertExtensions
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeBasicCaConstraint
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeKeyUsage
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeSubjKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthInfo
wolfSSL Entering GetObjectId()
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeCrlDist
wolfSSL Entering GetObjectId()
Certificate Policy extension not supported yet.
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
    Parsed new CA
    Freeing Parsed CA
    Freeing der CA
        OK Freeing der CA
wolfSSL Leaving AddCA, return 0
Verifying Peer&#039;s cert
wolfSSL Entering GetExplicitVersion
wolfSSL Entering GetMyVersion
Got Cert Header
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Algo ID
Getting Cert Name
Getting Cert Name
Got Subject Name
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
Got Key
Parsed Past Key
wolfSSL Entering DecodeCertExtensions
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeSubjKeyId
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAltNames
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeKeyUsage
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeExtKeyUsage
wolfSSL Entering GetObjectId()
wolfSSL Entering GetObjectId()
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeCrlDist
wolfSSL Entering GetObjectId()
Certificate Policy extension not supported yet.
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeAuthInfo
wolfSSL Entering GetObjectId()
wolfSSL Entering GetObjectId()
wolfSSL Entering DecodeBasicCaConstraint
wolfSSL Entering GetObjectId()
wolfSSL Entering GetAlgoId
wolfSSL Entering GetObjectId()
About to verify certificate signature
Verified Peer&#039;s cert
wolfSSL Leaving DoHandShakeMsgType(), return 0
wolfSSL Leaving DoHandShakeMsg(), return 0
More messages in record
received record layer msg
wolfSSL Entering DoHandShakeMsg()
wolfSSL Entering DoHandShakeMsgType
processing server key exchange
wolfSSL Leaving DoHandShakeMsgType(), return 0
wolfSSL Leaving DoHandShakeMsg(), return 0
More messages in record
received record layer msg
wolfSSL Entering DoHandShakeMsg()
wolfSSL Entering DoHandShakeMsgType
processing certificate request
wolfSSL Leaving DoHandShakeMsgType(), return 0
wolfSSL Leaving DoHandShakeMsg(), return 0
More messages in record
received record layer msg
wolfSSL Entering DoHandShakeMsg()
wolfSSL Entering DoHandShakeMsgType

381396:Starting Main // device resets</code></pre></div><p>Let me know. <br />Thanks</p>]]></description>
			<author><![CDATA[null@example.com (akhi_gangwar)]]></author>
			<pubDate>Fri, 26 Jun 2020 10:07:07 +0000</pubDate>
			<guid>https://www.wolfssl.com/forums/post5307.html#p5307</guid>
		</item>
	</channel>
</rss>
