Enabling the TLS layer to get a HTTPS connection going.

7343.nrf7002dk_nrf5340_cpuapp_ns.conf3124.prj.confHello everyone.

WE're trying to make a https connection with google.com and execute a GET request.

Wifi connection is working; DHCP seems to be working (my personal assumption given the log message we get: "Resolved: [(1, 1, 6, '', ('142.250.201.206', 443))]" which indicates that getaddrinfo() works); but when trying to initiate the socket via TLS, something strange happens: we get the error "OSError: 109".

Inserting some debug prints inside subsys/net/lib/sockets/, we found the culprit to be the function "int zsock_setsockopt_ctx(struct net_context *ctx, int level, int optnameconst void *optval, socklen_t optlen)".

The function call that triggers error 109 is:  res = setsockopt(socket->ctx, SOL_TLS, TLS_PEER_VERIFY, &verify, sizeof(verify));

No matter what other option we try to set via setsockopt(), it will fail with the 109 error since the implementation for setsockopt() is somehow set to sockets_inet.c (whose implementation does not recognise SOL_TLS as a valid in its switches) instead of sockets_tls.c (which has handling for SOL_TLS in its switches). My personal hunch is that the config options set in the project are somehow wrong. Can someone please take a look over our .conf files? Maybe we can find the culprit. :)

We can provide any extra code snippets that are necessary for debugging and/ or run any tests. Have a great day and hope to hear from you soon!

Parents
  • Hi,

     

    I used net/https_client for this exercise.

    You need to download r1.pem from here: https://pki.goog/repository/

     

    Place this in certs/ folder, and make sure that you change the file in CMakeLists.txt, change the domain in kconfig, and add the required configurations in the board .conf file:

    diff --git a/samples/net/https_client/CMakeLists.txt b/samples/net/https_client/CMakeLists.txt
    index 2a937786ed..39276fd2e2 100644
    --- a/samples/net/https_client/CMakeLists.txt
    +++ b/samples/net/https_client/CMakeLists.txt
    @@ -14,7 +14,7 @@ set(gen_dir ${CMAKE_CURRENT_BINARY_DIR}/certs)
     zephyr_include_directories(${gen_dir})
     generate_inc_file_for_target(
         app
    -    cert/DigiCertGlobalG2.pem
    +    cert/r1.pem
         ${gen_dir}/DigiCertGlobalG2.pem.inc
         )
     
    diff --git a/samples/net/https_client/Kconfig b/samples/net/https_client/Kconfig
    index 90ad33f42e..bb22e82794 100644
    --- a/samples/net/https_client/Kconfig
    +++ b/samples/net/https_client/Kconfig
    @@ -15,7 +15,7 @@ config SAMPLE_TFM_MBEDTLS
     
     config HTTPS_HOSTNAME
            string "HTTPS hostname"
    -       default "example.com"
    +       default "google.com"
     
     endmenu
     
    diff --git a/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf b/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
    index 9eb362cb16..8366313af8 100644
    --- a/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
    +++ b/samples/net/https_client/boards/nrf7002dk_nrf5340_cpuapp_ns.conf
    @@ -69,3 +69,20 @@ CONFIG_MBEDTLS_TLS_LIBRARY=y
     CONFIG_TFM_PROFILE_TYPE_SMALL=y
     CONFIG_PM_PARTITION_SIZE_TFM_SRAM=0xc000
     CONFIG_PM_PARTITION_SIZE_TFM=0x20000
    +
    +CONFIG_MBEDTLS_SSL_SERVER_NAME_INDICATION=y
    +CONFIG_MBEDTLS_SSL_RENEGOTIATION=y
    +CONFIG_MBEDTLS_SSL_MAX_FRAGMENT_LENGTH=y
    +CONFIG_MBEDTLS_SSL_SESSION_TICKETS=y
    +CONFIG_PSA_WANT_RSA_KEY_SIZE_4096=y
    +CONFIG_MBEDTLS_MPI_MAX_SIZE=512
    +
    +CONFIG_LOG=y
    +CONFIG_MBEDTLS_DEBUG=y
    +CONFIG_MBEDTLS_SSL_DEBUG_ALL=y
    +CONFIG_MBEDTLS_LOG_LEVEL_DBG=y
    +CONFIG_MBEDTLS_DEBUG_C=y
    +CONFIG_MBEDTLS_DEBUG_LEVEL=4
    +# Handle the large influx of prints
    +CONFIG_LOG_BUFFER_SIZE=16384
    +CONFIG_LOG_BACKEND_UART=y
    

    I also need to add CONFIG_NET_IPV6=n due to a local network issue at my end.

     

    Kind regards,

    Håkon

  • There are many options and suboptions in the link you sent me. Which one is the correct one?

    When attempting to get it working, I got r1.der and then created r1.der.inc. But I'm not sure which option I chose.

  • Hi,

     

    Glad that you figured out the cert issue.

    Could you share your newest config now? Both the .conf files and your compiled down .config file?

    The reason why I ask for this is because you have two issue in your former log:

    [00:01:15.195,953] <err> net_sock_tls: TLS handshake error: -0x2700

    This is the error for the certificate, ie. this return code from mbedtls:

    https://github.com/nrfconnect/sdk-mbedtls/blob/v3.5.2-ncs2-branch/include/mbedtls/x509.h#L70-L71

     

    But, you are also seeing this error:

    [00:01:15.273,406] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000b0e8, pkt=(nil), st=-104, user_data=(nil)
    [00:01:15.284,393] <dbg> net_sock: zsock_received_cb: (rx_q[0]): Set EOF flag on pkt 0x2005f0e0
    [00:01:16.216,979] <wrn> net_tcp: net_pkt alloc failure
    [00:01:17.026,123] <err> net_tcp: TCP failed to allocate buffer in retransmission

    This is a net buf based error issue, indicating that the network stack is out of memory.

    Tudor B. said:
    I think Google wants a newer and safer one. Will continue the investigation.

    These are the ciphers that is listed in the client hello:

    [00:02:43.698,425] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c024, TLS-ECDHE-ECDSA-WITH-AES-256-CBC-SHA384
    [00:02:43.714,385] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c028, TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384
    [00:02:43.730,133] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c00a, TLS-ECDHE-ECDSA-WITH-AES-256-CBC-SHA
    [00:02:43.745,819] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c014, TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA
    [00:02:43.761,322] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c023, TLS-ECDHE-ECDSA-WITH-AES-128-CBC-SHA256
    [00:02:43.777,252] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c027, TLS-ECDHE-RSA-WITH-AES-128-CBC-SHA256
    [00:02:43.793,029] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c009, TLS-ECDHE-ECDSA-WITH-AES-128-CBC-SHA
    [00:02:43.808,715] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c013, TLS-ECDHE-RSA-WITH-AES-128-CBC-SHA
    [00:02:43.824,249] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 003d, TLS-RSA-WITH-AES-256-CBC-SHA256
    [00:02:43.839,477] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 0035, TLS-RSA-WITH-AES-256-CBC-SHA
    [00:02:43.854,461] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c02a, TLS-ECDH-RSA-WITH-AES-256-CBC-SHA384
    [00:02:43.870,147] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c00f, TLS-ECDH-RSA-WITH-AES-256-CBC-SHA
    [00:02:43.885,589] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c026, TLS-ECDH-ECDSA-WITH-AES-256-CBC-SHA384
    [00:02:43.901,428] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c005, TLS-ECDH-ECDSA-WITH-AES-256-CBC-SHA
    [00:02:43.917,053] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 003c, TLS-RSA-WITH-AES-128-CBC-SHA256
    [00:02:43.932,281] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 002f, TLS-RSA-WITH-AES-128-CBC-SHA
    [00:02:43.947,265] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c029, TLS-ECDH-RSA-WITH-AES-128-CBC-SHA256
    [00:02:43.962,951] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c00e, TLS-ECDH-RSA-WITH-AES-128-CBC-SHA
    [00:02:43.978,363] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c025, TLS-ECDH-ECDSA-WITH-AES-128-CBC-SHA256
    [00:02:43.994,232] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c004, TLS-ECDH-ECDSA-WITH-AES-128-CBC-SHA
     

    We can check what your computer uses via. openssl:

    openssl s_client -showcerts -servername google.com -connect google.com:443 --tls1_2 </dev/null

    Which will show the full CA chain, and some details related to the link:

    ...
    New, TLSv1.2, Cipher is ECDHE-ECDSA-CHACHA20-POLY1305
    Server public key is 256 bit
    Secure Renegotiation IS supported
    Compression: NONE
    Expansion: NONE
    No ALPN negotiated
    SSL-Session:
    ...

    And here's the debug log from https_client when connecting to google.com:

    https_client_google_mbedtls_debuglog.txt

    LOG and shell seems to print things twice in this debug output, but filtering on the ciphers in the client hello shows >50 ciphers supported by the client:

    [00:00:19.557,220] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4520: client state: MBEDTLS_SSL_CLIENT_HELLO
    [00:00:19.557,312] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0919: => write client hello
    [00:00:19.557,617] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0486: dumping 'client hello, random bytes' (32 bytes)
    [00:00:19.557,922] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0486: 0000:  2f 0a 46 64 8f 33 a9 c3 29 c3 fc 5d de 2b 12 58  /.Fd.3..)..].+.X
    [00:00:19.558,258] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0486: 0010:  f5 cf 87 0d 27 a9 ca c3 0a 6a 3e 68 ad bc 9c 9e  ....'....j>h....
    [00:00:19.558,349] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0511: dumping 'session id' (0 bytes)
    [00:00:19.558,471] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: cca8, TLS-ECDHE-RSA-WITH-CHACHA20-POLY1305-S6
    [00:00:19.559,173] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 009f, TLS-DHE-RSA-WITH-AES-256-GCM-SHA384
    [00:00:19.558,624] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: cca9, TLS-ECDHE-ECDSA-WITH-CHACHA20-POLY13056
    [00:00:19.558,776] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: ccaa, TLS-DHE-RSA-WITH-CHACHA20-POLY1305-SHA6
    [00:00:19.558,898] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c02c, TLS-ECDHE-ECDSA-WITH-AES-256-GCM-SHA384
    [00:00:19.559,051] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c030, TLS-ECDHE-RSA-WITH-AES-256-GCM-SHA384
    [00:00:19.559,326] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c0ad, TLS-ECDHE-ECDSA-WITH-AES-256-CCM
    [00:00:19.559,448] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c09f, TLS-DHE-RSA-WITH-AES-256-CCM
    [00:00:19.559,600] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c024, TLS-ECDHE-ECDSA-WITH-AES-256-CBC-SHA384
    [00:00:19.560,272] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 0039, TLS-DHE-RSA-WITH-AES-256-CBC-SHA
    [00:00:19.559,722] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c028, TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384
    [00:00:19.559,875] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 006b, TLS-DHE-RSA-WITH-AES-256-CBC-SHA256
    [00:00:19.559,997] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c00a, TLS-ECDHE-ECDSA-WITH-AES-256-CBC-SHA
    [00:00:19.560,150] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c014, TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA
    [00:00:19.560,424] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c0af, TLS-ECDHE-ECDSA-WITH-AES-256-CCM-8
    [00:00:19.560,546] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c0a3, TLS-DHE-RSA-WITH-AES-256-CCM-8
    [00:00:19.560,699] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c02b, TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
    [00:00:19.560,821] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c02f, TLS-ECDHE-RSA-WITH-AES-128-GCM-SHA256
    [00:00:19.560,974] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 009e, TLS-DHE-RSA-WITH-AES-128-GCM-SHA256
    [00:00:19.561,096] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c0ac, TLS-ECDHE-ECDSA-WITH-AES-128-CCM
    [00:00:19.561,218] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c09e, TLS-DHE-RSA-WITH-AES-128-CCM
    [00:00:19.561,370] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c023, TLS-ECDHE-ECDSA-WITH-AES-128-CBC-SHA256
    [00:00:19.561,523] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c027, TLS-ECDHE-RSA-WITH-AES-128-CBC-SHA256
    [00:00:19.561,645] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 0067, TLS-DHE-RSA-WITH-AES-128-CBC-SHA256
    [00:00:19.561,798] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c009, TLS-ECDHE-ECDSA-WITH-AES-128-CBC-SHA
    [00:00:19.561,920] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c013, TLS-ECDHE-RSA-WITH-AES-128-CBC-SHA
    [00:00:19.562,042] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 0033, TLS-DHE-RSA-WITH-AES-128-CBC-SHA
    [00:00:19.562,194] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c0ae, TLS-ECDHE-ECDSA-WITH-AES-128-CCM-8
    [00:00:19.562,316] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c0a2, TLS-DHE-RSA-WITH-AES-128-CCM-8
    [00:00:19.562,622] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c0ff, TLS-ECJPAKE-WITH-AES-128-CCM-8
    [00:00:19.562,744] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 009d, TLS-RSA-WITH-AES-256-GCM-SHA384
    [00:00:19.562,866] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c09d, TLS-RSA-WITH-AES-256-CCM
    [00:00:19.563,018] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 003d, TLS-RSA-WITH-AES-256-CBC-SHA256
    [00:00:19.563,140] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 0035, TLS-RSA-WITH-AES-256-CBC-SHA
    [00:00:19.563,293] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c032, TLS-ECDH-RSA-WITH-AES-256-GCM-SHA384
    [00:00:19.563,446] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c02a, TLS-ECDH-RSA-WITH-AES-256-CBC-SH4
    [00:00:19.563,568] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c00f, TLS-ECDH-RSA-WITH-AES-256-CBC-SHA
    [00:00:19.564,147] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c0a1, TLS-RSA-WITH-AES-256-CCM-8
    [00:00:19.563,720] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c02e, TLS-ECDH-ECDSA-WITH-AES-256-GCM-S4
    [00:00:19.563,873] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c026, TLS-ECDH-ECDSA-WITH-AES-256-CBC-SHA384
    [00:00:19.564,025] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c005, TLS-ECDH-ECDSA-WITH-AES-256-CBC-SHA
    [00:00:19.564,270] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 009c, TLS-RSA-WITH-AES-128-GCM-SHA256
    [00:00:19.564,422] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c09c, TLS-RSA-WITH-AES-128-CCM
    [00:00:19.564,544] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 003c, TLS-RSA-WITH-AES-128-CBC-SHA256
    [00:00:19.564,666] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: 002f, TLS-RSA-WITH-AES-128-CBC-SHA
    [00:00:19.564,819] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c031, TLS-ECDH-RSA-WITH-AES-128-GCM-SHA256
    [00:00:19.564,971] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c029, TLS-ECDH-RSA-WITH-AES-128-CBC-SHA256
    [00:00:19.565,093] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c00e, TLS-ECDH-RSA-WITH-AES-128-CBC-SHA
    [00:00:19.565,246] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c02d, TLS-ECDH-ECDSA-WITH-AES-128-GCM-SHA256
    [00:00:19.565,399] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c025, TLS-ECDH-ECDSA-WITH-AES-128-CBC-SHA256
    [00:00:19.565,551] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0369: client hello, add ciphersuite: c004, TLS-ECDH-ECDSA-WITH-AES-128-CBC-SHA

     

    I think this issue is more related to the buffering than the amount of ciphers available when renegotiation is sent.

    If you share your full .config file, it should be possible to check your buffering in both the zephyr network subsys, as well as the overall system heap size.

     

    Kind regards,

    Håkon

  • The lack of memory isn't such a big issue. Note that I mentioned that that error happens when I retry opening the socket in the same session. So, if I try once, it fails, then I try again and run out of memory. Most likely cause is that I do no freeing of the socket upon failure. But that's a small issue (for now) since the connection doesn't work in the first place.

    Regarding the cyphers: it's interesting that in our project Mbedtls decides to expose only 9 cyphers, and even so, google.com selects the weakest of them all and ultimately drops the connection.

    6724.prj.conf2514.nrf7002dk_nrf5340_cpuapp_ns.conf4670.configs.c

    I've attached all config files to this message. The Kconfig I'll paste here as a code section since the site doesn't allow uploading this type of file directly:

    # This file is part of the MicroPython project, http://micropython.org/
    #
    # The MIT License (MIT)
    #
    # Copyright 2020 NXP
    #
    # Permission is hereby granted, free of charge, to any person obtaining a copy
    # of this software and associated documentation files (the "Software"), to deal
    # in the Software without restriction, including without limitation the rights
    # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    # copies of the Software, and to permit persons to whom the Software is
    # furnished to do so, subject to the following conditions:
    #
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    #
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    # THE SOFTWARE.
    
    menu "MicroPython Options"
    
    config MICROPY_CONFIGFILE
    	string "Configuration file"
    	default "mpconfigport_minimal.h"
    
    config MICROPY_HEAP_SIZE
    	int "Heap size"
    	default 49152
    
    config MICROPY_VFS_FAT
    	bool "FatFS file system"
    
    config MICROPY_VFS_LFS1
    	bool "LittleFs version 1 file system"
    
    config MICROPY_VFS_LFS2
    	bool "LittleFs version 2 file system"
    config CONNECTION_IDLE_TIMEOUT
    	int "Time to be waited for a station to connect"
    	default 30
    
    # choice WIFI_NM_WPA_SUPPLICANT_LOG_LEVEL_CHOICE
    #     default WIFI_NM_WPA_SUPPLICANT_LOG_LEVEL_DBG
    # endchoice
    
    config NRF70_QSPI_ENCRYPTION_KEY
    	string "16 bytes QSPI encryption key, only for testing purposes"
    	depends on BOARD_NRF7002DK_NRF5340_CPUAPP
    	help
    	  Specify the QSPI encryption key
    
    config SOFTAP_SAMPLE_DHCPV4_POOL_START
    	string "Start address of DHCPv4 pool"
    	default "192.168.1.2"
    	help
    	  Set the start IP address of DHCPv4 pool.
    	  
    config STA_CONN_TIMEOUT_SEC
    	int "Overall Connection timeout i.e., time to be waited for a station to connect and get an IP address"
    	# Zephyr DHCP retry is 1 minute, so set the default to 70 seconds
    	default 70
    	# 512 has no special meaning, just a reasonable upper limit
    	range 0 512
    	help
    	  Specify the connection timeout, in seconds. This is the overall timeout i.e., time to be waited for
    	  a station to connect and get an IP address. DHCP retries should be taken into account when setting
    	  this value. If the timeout is set to 0, the connection will not timeout.
    
    config STA_SAMPLE_START_WIFI_THREAD_STACK_SIZE
    	int "Stack size for Wi-Fi start thread"
    	default 4096
    	help
    	  Set the stack size for the Wi-Fi start thread.
    
    config SAMPLE_TFM_MBEDTLS
    	bool "Use TF-M and MbedTLS"
    	depends on NRF_MODEM_LIB
    	help
    	  Use TF-M and MbedTLS in this sample instead of using
    	  the offloaded TLS stack in the modem.
    
    config HTTPS_HOSTNAME
    	string "HTTPS hostname"
    	default "google.com"
    
    endmenu # MicroPython Options
    
    
    source "Kconfig.zephyr"
    

    Also, please see my latest run, which was in my last comment (before this one). The most recent error that I got is -104:

    [00:02:15.651,733] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:02:15.662,322] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2368: message length: 69, out_left: 69
    [00:02:15.674,468] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2375: ssl->f_send() returned 69 (-0xffffffbb)
    [00:02:15.687,103] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2402: <= flush output
    [00:02:15.697,692] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3081: <= write record
    [00:02:15.708,251] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2905: <= write handshake message
    [00:02:15.719,787] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8541: <= write finished
    [00:02:15.730,560] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:02:15.741,119] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:02:15.751,739] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC
    [00:02:15.765,441] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:3386: => parse new session ticket
    [00:02:15.777,832] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4298: => read record
    [00:02:15.788,330] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:02:15.798,828] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 0, nb_want: 5
    [00:02:15.810,028] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 0, nb_want: 5
    [00:02:15.821,197] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4672: <= handshake
    [00:02:15.892,517] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000ab88, pkt=(nil), st=-104, user_data=(nil)
    [00:02:15.903,533] <dbg> net_sock: zsock_received_cb: (rx_q[0]): Marked socket 0x2000ab88 as peer-closed
    [00:02:15.913,879] <err> net_sock_tls: TLS underlying socket poll error -104

  • Also worth mentioning: when I compare my logs to the ones you provided, I noticed that google send a lot of "DOWNGRD" messages to our board. Example:

    [00:01:12.319,671] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8843: dumping 'random bytes' (64 bytes)
    [00:01:12.333,709] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8843: 0000:  68 3d 72 b9 5c 14 a5 f7 55 d2 34 72 87 9f 35 1f  h=r.\...U.4r..5.
    [00:01:12.351,165] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8843: 0010:  95 36 4b 51 48 2f c1 95 44 4f 57 4e 47 52 44 01  .6KQH/..DOWNGRD.

    While your logs show no such message.

    Edit: I'm still hoping that you'll agree to a call so we can solve this faster. Slight smile

  • Hi,

     

    Edit: I'm still hoping that you'll agree to a call so we can solve this faster.

    A call will not help, as I need to be able to recreate the scenario on my end. The issue is that it works in a contained sample, ie. https_client, but not in your sample. To be able to pinpoint this, I will need to run both scenarios, and then start trickling down to how they two differ.

    You will need to be able to provide a way for me to run your system at my end, and this is still not possible, because I am still lacking deps in your micropy port. Please use "git" (git diff / git status) to your advantage, which is a great tool to ensure that sources are sync'ed.

    At this time, I am one step further, but blocked by a new dep, which is modnetwork_globals.h:

    ../../lib/littlefs/lfs2_util.c /opt/repos/micropython/ports/zephyr/main.c /opt/repos/micropython/ports/zephyr/help.c /opt/repos/micropython/ports/zephyr/machine_i2c.c /opt/repos/micropython/ports/zephyr/machine_spi.c /opt/repos/micropython/ports/zephyr/machine_pin.c /opt/repos/micropython/ports/zephyr/machine_timer.c /opt/repos/micropython/ports/zephyr/modbluetooth_zephyr.c /opt/repos/micropython/ports/zephyr/modsocket.c /opt/repos/micropython/ports/zephyr/modzephyr.c /opt/repos/micropython/ports/zephyr/modzsensor.c /opt/repos/micropython/ports/zephyr/mphalport.c /opt/repos/micropython/ports/zephyr/uart_core.c /opt/repos/micropython/ports/zephyr/zephyr_device.c /opt/repos/micropython/ports/zephyr/zephyr_storage.c /opt/repos/micropython/ports/zephyr/mpthreadport.c
    /opt/repos/micropython/ports/zephyr/modsocket.c:51: warning: "DEBUG_printf" redefined
       51 |  #define DEBUG_printf printf
          | 
    In file included from /opt/repos/micropython/ports/zephyr/modsocket.c:33:
    /opt/repos/micropython/ports/zephyr/mpthreadport.c:38: note: this is the location of the previous definition
       38 | #define DEBUG_printf(...) // printk("_thread: " __VA_ARGS__)
          | 
    In file included from /opt/repos/micropython/ports/zephyr/../../py/mpconfig.h:89,
                     from /opt/repos/micropython/ports/zephyr/../../py/obj.h:31,
                     from /opt/repos/micropython/ports/zephyr/../../py/objlist.h:29,
                     from /opt/repos/micropython/ports/zephyr/../../extmod/modnetwork.c:31:
    /opt/repos/micropython/ports/zephyr/mpconfigport_full.h:135:55: fatal error: ports/zephyr/modnetwork_globals.h: No such file or directory
      135 | #define MICROPY_PY_NETWORK_MODULE_GLOBALS_INCLUDEFILE "ports/zephyr/modnetwork_globals.h"
          |                                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    compilation terminated.
    In file included from /opt/repos/micropython/build/zephyr/tfm/api_ns/interface/include/psa/crypto.h:16,
                     from /opt/repos/micropython/ports/zephyr/../../ports/zephyr/modos.c:39,
                     from /opt/repos/micropython/ports/zephyr/../../extmod/modos.c:64:
    /opt/repos/micropython/build/zephyr/tfm/api_ns/interface/include/psa/crypto_platform.h:23:10: fatal error: mbedtls/private_access.h: No such file or directory
       23 | #include "mbedtls/private_access.h"
          |          ^~~~~~~~~~~~~~~~~~~~~~~~~~
    compilation terminated.
    

    Thanks for sharing the .c file, but:

    You need to locate the ".config" file, as this also holds what is not selected/configured, and I can use this directly to run your configuration.

     

    You mention using macos earlier. Here's how to do this on mac/*nix based system.

    1. open your terminal, cd into the application folder

    2. use "find" to locate the .config file: find -name ".config" .

    3. You will see two hits:

    find . -name ".config"
    ./zephyr/.config
    ./https_client/zephyr/.config

    Since my application is named "https_client", this is where my .config file will be located.

    4. Open the file:

    open path/to/build/application/zephyr/.config

    This should open the file in vi on macos (or whichever editor you have chosen).

    You can open it in vscode by replacing "open" with "code"

     

    Did some checks towards my local https_client sample, by diffing and found that you lack these two settings in mbedtls:

    CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED=y
    CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED=y
    CONFIG_PSA_WANT_ALG_CHACHA20=y

     

    Also, adjust this to a higher value to avoid any potential restriction due to heap allocation failure:

    CONFIG_HEAP_MEM_POOL_SIZE # currently 64k, should be 80k

    Also the CONFIG_NET_PKT* configurations are low in your configuration. Try these values:

    CONFIG_NET_PKT_RX_COUNT=14
    CONFIG_NET_PKT_TX_COUNT=14
    CONFIG_NET_BUF_RX_COUNT=36
    CONFIG_NET_BUF_TX_COUNT=36

     

    Kind regards,

    Håkon

  • Hey Håkon,

    Let's start with the .config file. You were absolutely right when you said that it has to be there. Using your command:

    root@Tudors-MacBook zephyr # find . -name ".config"
    ./build/zephyr/.config
    ./build/zephyr/zephyr/.config
    root@Tudors-MacBook zephyr # 

    So, digging a bit deeper, I found that macOS considers files that start with . as hidden -> that's why I didn't see them. I'm terribly sorry for this mishap. -.-

    That aside, based on the two files indicated by your command, here are the two .config files:

    SB_CONFIG_BOARD="nrf7002dk"
    SB_CONFIG_BOARD_REVISION=""
    SB_CONFIG_BOARD_NRF7002DK=y
    SB_CONFIG_BOARD_NRF7002DK_NRF5340_CPUAPP_NS=y
    SB_CONFIG_BOARD_QUALIFIERS="nrf5340/cpuapp/ns"
    SB_CONFIG_SOC="nrf5340"
    SB_CONFIG_SOC_SERIES="nrf53"
    SB_CONFIG_SOC_FAMILY="nordic_nrf"
    SB_CONFIG_SOC_TOOLCHAIN_NAME="amd_acp_6_0_adsp"
    SB_CONFIG_SOC_FAMILY_NORDIC_NRF=y
    SB_CONFIG_SOC_SERIES_NRF53X=y
    SB_CONFIG_SOC_NRF5340_CPUAPP=y
    SB_CONFIG_SOC_NRF5340_CPUAPP_QKAA=y
    
    #
    # Sysbuild image configuration
    #
    
    #
    # Modules
    #
    
    #
    # Available modules.
    #
    
    #
    # nrf (/opt/nordic/ncs/v3.0.0/nrf)
    #
    SB_CONFIG_PARTITION_MANAGER=y
    # SB_CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK is not set
    SB_CONFIG_BUILD_OUTPUT_BIN=y
    SB_CONFIG_BUILD_OUTPUT_HEX=y
    SB_CONFIG_BOARD_IS_NON_SECURE=y
    SB_CONFIG_APPCORE_REMOTE_BOARD_TARGET_CPUCLUSTER="cpuapp"
    SB_CONFIG_APPCORE_REMOTE_DOMAIN="CPUAPP"
    SB_CONFIG_SUPPORT_NETCORE=y
    SB_CONFIG_NETCORE_REMOTE_BOARD_TARGET_CPUCLUSTER="cpunet"
    SB_CONFIG_NETCORE_REMOTE_DOMAIN="CPUNET"
    
    #
    # Network core configuration
    #
    SB_CONFIG_SUPPORT_NETCORE_EMPTY=y
    SB_CONFIG_SUPPORT_NETCORE_HCI_IPC=y
    SB_CONFIG_SUPPORT_NETCORE_RPC_HOST=y
    SB_CONFIG_SUPPORT_NETCORE_802154_RPMSG=y
    SB_CONFIG_SUPPORT_NETCORE_IPC_RADIO=y
    SB_CONFIG_NETCORE_NONE=y
    # SB_CONFIG_NETCORE_EMPTY is not set
    # SB_CONFIG_NETCORE_HCI_IPC is not set
    # SB_CONFIG_NETCORE_RPC_HOST is not set
    # SB_CONFIG_NETCORE_802154_RPMSG is not set
    # SB_CONFIG_NETCORE_IPC_RADIO is not set
    # end of Network core configuration
    
    #
    # Secure Bootloader
    #
    # SB_CONFIG_SECURE_BOOT_APPCORE is not set
    # SB_CONFIG_SECURE_BOOT_NETCORE is not set
    # end of Secure Bootloader
    
    SB_CONFIG_SUPPORT_QSPI_XIP=y
    
    #
    # Bluetooth Fair Pair
    #
    SB_CONFIG_BT_FAST_PAIR_MODEL_ID=0x1000000
    SB_CONFIG_BT_FAST_PAIR_ANTI_SPOOFING_PRIVATE_KEY=""
    # end of Bluetooth Fair Pair
    
    # SB_CONFIG_MATTER is not set
    
    #
    # Wi-Fi
    #
    SB_CONFIG_WIFI_NRF70=y
    SB_CONFIG_WIFI_NRF70_SYSTEM_MODE=y
    # SB_CONFIG_WIFI_NRF70_SCAN_ONLY is not set
    # SB_CONFIG_WIFI_NRF70_OFFLOADED_RAW_TX is not set
    # SB_CONFIG_WIFI_NRF70_RADIO_TEST is not set
    # SB_CONFIG_WIFI_NRF70_SYSTEM_WITH_RAW_MODES is not set
    SB_CONFIG_WIFI_PATCHES_EXT_FLASH_DISABLED=y
    # SB_CONFIG_WIFI_PATCHES_EXT_FLASH_STORE is not set
    # end of Wi-Fi
    
    #
    # SUIT
    #
    # SB_CONFIG_SUIT_ENVELOPE is not set
    # SB_CONFIG_SUIT_BUILD_RECOVERY is not set
    # SB_CONFIG_SUIT_BUILD_FLASH_COMPANION is not set
    # SB_CONFIG_SUIT_BUILD_AB_UPDATE is not set
    # SB_CONFIG_SUIT_SOC_FLASH_NRF_RADIO_SYNC_RPC is not set
    # end of SUIT
    
    #
    # SUIT provisioning
    #
    # SB_CONFIG_SUIT_MPI_GENERATE is not set
    # end of SUIT provisioning
    
    # SB_CONFIG_HPF is not set
    # SB_CONFIG_APPROTECT_USE_UICR is not set
    # SB_CONFIG_APPROTECT_LOCK is not set
    # SB_CONFIG_APPROTECT_USER_HANDLING is not set
    SB_CONFIG_APPROTECT_NO_SYSBUILD=y
    # SB_CONFIG_SECURE_APPROTECT_USE_UICR is not set
    # SB_CONFIG_SECURE_APPROTECT_LOCK is not set
    # SB_CONFIG_SECURE_APPROTECT_USER_HANDLING is not set
    SB_CONFIG_SECURE_APPROTECT_NO_SYSBUILD=y
    
    #
    # TF-M
    #
    # SB_CONFIG_TFM_OTP_PSA_CERTIFICATE_REFERENCE is not set
    # end of TF-M
    
    SB_CONFIG_ZEPHYR_NRF_MODULE=y
    # end of nrf (/opt/nordic/ncs/v3.0.0/nrf)
    
    SB_CONFIG_ZEPHYR_HOSTAP_MODULE=y
    SB_CONFIG_ZEPHYR_MCUBOOT_MODULE=y
    SB_CONFIG_ZEPHYR_MBEDTLS_MODULE=y
    SB_CONFIG_ZEPHYR_OBERON_PSA_CRYPTO_MODULE=y
    SB_CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y
    SB_CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE=y
    SB_CONFIG_ZEPHYR_CJSON_MODULE=y
    SB_CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE=y
    SB_CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE=y
    SB_CONFIG_ZEPHYR_OPENTHREAD_MODULE=y
    SB_CONFIG_ZEPHYR_SUIT_GENERATOR_MODULE=y
    SB_CONFIG_ZEPHYR_SUIT_PROCESSOR_MODULE=y
    SB_CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE=y
    SB_CONFIG_ZEPHYR_COREMARK_MODULE=y
    SB_CONFIG_ZEPHYR_CANOPENNODE_MODULE=y
    SB_CONFIG_ZEPHYR_CHRE_MODULE=y
    SB_CONFIG_ZEPHYR_LZ4_MODULE=y
    SB_CONFIG_ZEPHYR_NANOPB_MODULE=y
    SB_CONFIG_ZEPHYR_TF_M_TESTS_MODULE=y
    SB_CONFIG_ZEPHYR_ZSCILIB_MODULE=y
    SB_CONFIG_ZEPHYR_CMSIS_MODULE=y
    SB_CONFIG_ZEPHYR_CMSIS_DSP_MODULE=y
    SB_CONFIG_ZEPHYR_CMSIS_NN_MODULE=y
    SB_CONFIG_ZEPHYR_FATFS_MODULE=y
    SB_CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y
    SB_CONFIG_ZEPHYR_HAL_ST_MODULE=y
    SB_CONFIG_ZEPHYR_HAL_TDK_MODULE=y
    SB_CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE=y
    SB_CONFIG_ZEPHYR_LIBLC3_MODULE=y
    SB_CONFIG_ZEPHYR_LIBMETAL_MODULE=y
    SB_CONFIG_ZEPHYR_LITTLEFS_MODULE=y
    SB_CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y
    SB_CONFIG_ZEPHYR_LVGL_MODULE=y
    SB_CONFIG_ZEPHYR_MIPI_SYS_T_MODULE=y
    SB_CONFIG_ZEPHYR_NRF_WIFI_MODULE=y
    SB_CONFIG_ZEPHYR_OPEN_AMP_MODULE=y
    SB_CONFIG_ZEPHYR_PERCEPIO_MODULE=y
    SB_CONFIG_ZEPHYR_PICOLIBC_MODULE=y
    SB_CONFIG_ZEPHYR_SEGGER_MODULE=y
    SB_CONFIG_ZEPHYR_TINYCRYPT_MODULE=y
    SB_CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y
    SB_CONFIG_ZEPHYR_ZCBOR_MODULE=y
    SB_CONFIG_ZEPHYR_NRFXLIB_MODULE=y
    SB_CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE=y
    SB_CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y
    
    #
    # Unavailable modules, please install those via the project manifest.
    #
    # end of Modules
    
    # SB_CONFIG_WARN_EXPERIMENTAL is not set
    SB_CONFIG_WARN_DEPRECATED=y
    SB_CONFIG_SUPPORT_BOOTLOADER=y
    SB_CONFIG_SUPPORT_BOOTLOADER_MCUBOOT_ZEPHYR=y
    SB_CONFIG_BOOTLOADER_NONE=y
    # SB_CONFIG_BOOTLOADER_MCUBOOT is not set
    
    #
    # Build options
    #
    # SB_CONFIG_COMPILER_WARNINGS_AS_ERRORS is not set
    # end of Build options
    
    2063.config

    When adding the three options that you mentioned:

    CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED=y
    CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED=y
    CONFIG_PSA_WANT_ALG_CHACHA20=y

    I get the following build error:

    dules/crypto/oberon-psa-crypto/oberon/drivers/oberon_spake2p.o.d -o secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_oberon/CMakeFiles/oberon_psa_driver.dir/opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/oberon/drivers/oberon_spake2p.o -c /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/oberon/drivers/oberon_spake2p.c
    In file included from /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/include/mbedtls/build_info.h:192,
                     from /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/include/psa/build_info.h:18,
                     from /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/include/psa/crypto_platform.h:32,
                     from /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/include/psa/crypto.h:16,
                     from /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/oberon/drivers/oberon_spake2p.c:15:
    /opt/nordic/ncs/v3.0.0/modules/crypto/mbedtls/include/mbedtls/check_config.h:333:2: error: #error "MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED defined, but not all prerequisites"
      333 | #error "MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED defined, but not all prerequisites"
          |  ^~~~~
    /opt/nordic/ncs/v3.0.0/modules/crypto/mbedtls/include/mbedtls/check_config.h:344:2: error: #error "MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED defined, but not all prerequisites"
      344 | #error "MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED defined, but not all prerequisites"
          |  ^~~~~
    ninja: build stopped: subcommand failed.
    I'll try to solve it on my side.

    And of course, the file that you requested:
    modnetwork_globals.h

Reply
  • Hey Håkon,

    Let's start with the .config file. You were absolutely right when you said that it has to be there. Using your command:

    root@Tudors-MacBook zephyr # find . -name ".config"
    ./build/zephyr/.config
    ./build/zephyr/zephyr/.config
    root@Tudors-MacBook zephyr # 

    So, digging a bit deeper, I found that macOS considers files that start with . as hidden -> that's why I didn't see them. I'm terribly sorry for this mishap. -.-

    That aside, based on the two files indicated by your command, here are the two .config files:

    SB_CONFIG_BOARD="nrf7002dk"
    SB_CONFIG_BOARD_REVISION=""
    SB_CONFIG_BOARD_NRF7002DK=y
    SB_CONFIG_BOARD_NRF7002DK_NRF5340_CPUAPP_NS=y
    SB_CONFIG_BOARD_QUALIFIERS="nrf5340/cpuapp/ns"
    SB_CONFIG_SOC="nrf5340"
    SB_CONFIG_SOC_SERIES="nrf53"
    SB_CONFIG_SOC_FAMILY="nordic_nrf"
    SB_CONFIG_SOC_TOOLCHAIN_NAME="amd_acp_6_0_adsp"
    SB_CONFIG_SOC_FAMILY_NORDIC_NRF=y
    SB_CONFIG_SOC_SERIES_NRF53X=y
    SB_CONFIG_SOC_NRF5340_CPUAPP=y
    SB_CONFIG_SOC_NRF5340_CPUAPP_QKAA=y
    
    #
    # Sysbuild image configuration
    #
    
    #
    # Modules
    #
    
    #
    # Available modules.
    #
    
    #
    # nrf (/opt/nordic/ncs/v3.0.0/nrf)
    #
    SB_CONFIG_PARTITION_MANAGER=y
    # SB_CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK is not set
    SB_CONFIG_BUILD_OUTPUT_BIN=y
    SB_CONFIG_BUILD_OUTPUT_HEX=y
    SB_CONFIG_BOARD_IS_NON_SECURE=y
    SB_CONFIG_APPCORE_REMOTE_BOARD_TARGET_CPUCLUSTER="cpuapp"
    SB_CONFIG_APPCORE_REMOTE_DOMAIN="CPUAPP"
    SB_CONFIG_SUPPORT_NETCORE=y
    SB_CONFIG_NETCORE_REMOTE_BOARD_TARGET_CPUCLUSTER="cpunet"
    SB_CONFIG_NETCORE_REMOTE_DOMAIN="CPUNET"
    
    #
    # Network core configuration
    #
    SB_CONFIG_SUPPORT_NETCORE_EMPTY=y
    SB_CONFIG_SUPPORT_NETCORE_HCI_IPC=y
    SB_CONFIG_SUPPORT_NETCORE_RPC_HOST=y
    SB_CONFIG_SUPPORT_NETCORE_802154_RPMSG=y
    SB_CONFIG_SUPPORT_NETCORE_IPC_RADIO=y
    SB_CONFIG_NETCORE_NONE=y
    # SB_CONFIG_NETCORE_EMPTY is not set
    # SB_CONFIG_NETCORE_HCI_IPC is not set
    # SB_CONFIG_NETCORE_RPC_HOST is not set
    # SB_CONFIG_NETCORE_802154_RPMSG is not set
    # SB_CONFIG_NETCORE_IPC_RADIO is not set
    # end of Network core configuration
    
    #
    # Secure Bootloader
    #
    # SB_CONFIG_SECURE_BOOT_APPCORE is not set
    # SB_CONFIG_SECURE_BOOT_NETCORE is not set
    # end of Secure Bootloader
    
    SB_CONFIG_SUPPORT_QSPI_XIP=y
    
    #
    # Bluetooth Fair Pair
    #
    SB_CONFIG_BT_FAST_PAIR_MODEL_ID=0x1000000
    SB_CONFIG_BT_FAST_PAIR_ANTI_SPOOFING_PRIVATE_KEY=""
    # end of Bluetooth Fair Pair
    
    # SB_CONFIG_MATTER is not set
    
    #
    # Wi-Fi
    #
    SB_CONFIG_WIFI_NRF70=y
    SB_CONFIG_WIFI_NRF70_SYSTEM_MODE=y
    # SB_CONFIG_WIFI_NRF70_SCAN_ONLY is not set
    # SB_CONFIG_WIFI_NRF70_OFFLOADED_RAW_TX is not set
    # SB_CONFIG_WIFI_NRF70_RADIO_TEST is not set
    # SB_CONFIG_WIFI_NRF70_SYSTEM_WITH_RAW_MODES is not set
    SB_CONFIG_WIFI_PATCHES_EXT_FLASH_DISABLED=y
    # SB_CONFIG_WIFI_PATCHES_EXT_FLASH_STORE is not set
    # end of Wi-Fi
    
    #
    # SUIT
    #
    # SB_CONFIG_SUIT_ENVELOPE is not set
    # SB_CONFIG_SUIT_BUILD_RECOVERY is not set
    # SB_CONFIG_SUIT_BUILD_FLASH_COMPANION is not set
    # SB_CONFIG_SUIT_BUILD_AB_UPDATE is not set
    # SB_CONFIG_SUIT_SOC_FLASH_NRF_RADIO_SYNC_RPC is not set
    # end of SUIT
    
    #
    # SUIT provisioning
    #
    # SB_CONFIG_SUIT_MPI_GENERATE is not set
    # end of SUIT provisioning
    
    # SB_CONFIG_HPF is not set
    # SB_CONFIG_APPROTECT_USE_UICR is not set
    # SB_CONFIG_APPROTECT_LOCK is not set
    # SB_CONFIG_APPROTECT_USER_HANDLING is not set
    SB_CONFIG_APPROTECT_NO_SYSBUILD=y
    # SB_CONFIG_SECURE_APPROTECT_USE_UICR is not set
    # SB_CONFIG_SECURE_APPROTECT_LOCK is not set
    # SB_CONFIG_SECURE_APPROTECT_USER_HANDLING is not set
    SB_CONFIG_SECURE_APPROTECT_NO_SYSBUILD=y
    
    #
    # TF-M
    #
    # SB_CONFIG_TFM_OTP_PSA_CERTIFICATE_REFERENCE is not set
    # end of TF-M
    
    SB_CONFIG_ZEPHYR_NRF_MODULE=y
    # end of nrf (/opt/nordic/ncs/v3.0.0/nrf)
    
    SB_CONFIG_ZEPHYR_HOSTAP_MODULE=y
    SB_CONFIG_ZEPHYR_MCUBOOT_MODULE=y
    SB_CONFIG_ZEPHYR_MBEDTLS_MODULE=y
    SB_CONFIG_ZEPHYR_OBERON_PSA_CRYPTO_MODULE=y
    SB_CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y
    SB_CONFIG_ZEPHYR_PSA_ARCH_TESTS_MODULE=y
    SB_CONFIG_ZEPHYR_CJSON_MODULE=y
    SB_CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE=y
    SB_CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE=y
    SB_CONFIG_ZEPHYR_OPENTHREAD_MODULE=y
    SB_CONFIG_ZEPHYR_SUIT_GENERATOR_MODULE=y
    SB_CONFIG_ZEPHYR_SUIT_PROCESSOR_MODULE=y
    SB_CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE=y
    SB_CONFIG_ZEPHYR_COREMARK_MODULE=y
    SB_CONFIG_ZEPHYR_CANOPENNODE_MODULE=y
    SB_CONFIG_ZEPHYR_CHRE_MODULE=y
    SB_CONFIG_ZEPHYR_LZ4_MODULE=y
    SB_CONFIG_ZEPHYR_NANOPB_MODULE=y
    SB_CONFIG_ZEPHYR_TF_M_TESTS_MODULE=y
    SB_CONFIG_ZEPHYR_ZSCILIB_MODULE=y
    SB_CONFIG_ZEPHYR_CMSIS_MODULE=y
    SB_CONFIG_ZEPHYR_CMSIS_DSP_MODULE=y
    SB_CONFIG_ZEPHYR_CMSIS_NN_MODULE=y
    SB_CONFIG_ZEPHYR_FATFS_MODULE=y
    SB_CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y
    SB_CONFIG_ZEPHYR_HAL_ST_MODULE=y
    SB_CONFIG_ZEPHYR_HAL_TDK_MODULE=y
    SB_CONFIG_ZEPHYR_HAL_WURTHELEKTRONIK_MODULE=y
    SB_CONFIG_ZEPHYR_LIBLC3_MODULE=y
    SB_CONFIG_ZEPHYR_LIBMETAL_MODULE=y
    SB_CONFIG_ZEPHYR_LITTLEFS_MODULE=y
    SB_CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y
    SB_CONFIG_ZEPHYR_LVGL_MODULE=y
    SB_CONFIG_ZEPHYR_MIPI_SYS_T_MODULE=y
    SB_CONFIG_ZEPHYR_NRF_WIFI_MODULE=y
    SB_CONFIG_ZEPHYR_OPEN_AMP_MODULE=y
    SB_CONFIG_ZEPHYR_PERCEPIO_MODULE=y
    SB_CONFIG_ZEPHYR_PICOLIBC_MODULE=y
    SB_CONFIG_ZEPHYR_SEGGER_MODULE=y
    SB_CONFIG_ZEPHYR_TINYCRYPT_MODULE=y
    SB_CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y
    SB_CONFIG_ZEPHYR_ZCBOR_MODULE=y
    SB_CONFIG_ZEPHYR_NRFXLIB_MODULE=y
    SB_CONFIG_ZEPHYR_NRF_HW_MODELS_MODULE=y
    SB_CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y
    
    #
    # Unavailable modules, please install those via the project manifest.
    #
    # end of Modules
    
    # SB_CONFIG_WARN_EXPERIMENTAL is not set
    SB_CONFIG_WARN_DEPRECATED=y
    SB_CONFIG_SUPPORT_BOOTLOADER=y
    SB_CONFIG_SUPPORT_BOOTLOADER_MCUBOOT_ZEPHYR=y
    SB_CONFIG_BOOTLOADER_NONE=y
    # SB_CONFIG_BOOTLOADER_MCUBOOT is not set
    
    #
    # Build options
    #
    # SB_CONFIG_COMPILER_WARNINGS_AS_ERRORS is not set
    # end of Build options
    
    2063.config

    When adding the three options that you mentioned:

    CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED=y
    CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED=y
    CONFIG_PSA_WANT_ALG_CHACHA20=y

    I get the following build error:

    dules/crypto/oberon-psa-crypto/oberon/drivers/oberon_spake2p.o.d -o secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_oberon/CMakeFiles/oberon_psa_driver.dir/opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/oberon/drivers/oberon_spake2p.o -c /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/oberon/drivers/oberon_spake2p.c
    In file included from /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/include/mbedtls/build_info.h:192,
                     from /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/include/psa/build_info.h:18,
                     from /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/include/psa/crypto_platform.h:32,
                     from /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/include/psa/crypto.h:16,
                     from /opt/nordic/ncs/v3.0.0/modules/crypto/oberon-psa-crypto/oberon/drivers/oberon_spake2p.c:15:
    /opt/nordic/ncs/v3.0.0/modules/crypto/mbedtls/include/mbedtls/check_config.h:333:2: error: #error "MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED defined, but not all prerequisites"
      333 | #error "MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED defined, but not all prerequisites"
          |  ^~~~~
    /opt/nordic/ncs/v3.0.0/modules/crypto/mbedtls/include/mbedtls/check_config.h:344:2: error: #error "MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED defined, but not all prerequisites"
      344 | #error "MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED defined, but not all prerequisites"
          |  ^~~~~
    ninja: build stopped: subcommand failed.
    I'll try to solve it on my side.

    And of course, the file that you requested:
    modnetwork_globals.h

Children
  • Build error solved by adding:

    CONFIG_MBEDTLS_DHM_C=y
    But interestingly enough, now I don't get as far as before in the TLS handshake. New log with your proposed modifications for the extra crypto algos:
    [00:00:00.670,562] <dbg> net_dns_resolve: dns_resolve_init_locked: (main): [0] 8.8.8.8
    [00:00:00.678,985] <dbg> net_dns_resolve: dns_resolve_init_locked: (main): [1] 8.8.4.4
    [00:00:00.687,774] <dbg> net_sock: zsock_socket_internal: (main): socket: ctx=0x2000a998, fd=3
    [00:00:00.696,990] <dbg> net_sock_svc: socket_service_thread: (net_socket_service): Service WEST_TOPDIR/zephyr/subsys/net/lib/dhcpv4/dhcpv4_server.c:1535 has 1 pollable sockets
    [00:00:00.713,226] <dbg> net_sock_svc: socket_service_thread: (net_socket_service): Service WEST_TOPDIR/zephyr/subsys/net/lib/dns/resolve.c:41 has 2 pollable sockets
    [00:00:00.728,546] <dbg> net_sock_svc: socket_service_thread: (net_socket_service): Monitoring 3 socket entries
    [00:00:00.739,593] <dbg> net_sock: zsock_socket_internal: (main): socket: ctx=0x2000aa48, fd=5
    *** Booting nRF Connect SDK v3.0.0-3bfc46578e42 ***
    *** Using Zephyr OS v4.0.99-a0e545cb437a ***
    [00:00:00.758,544] <inf> net_config: Initializing network
    [00:00:00.764,373] <inf> net_config: Waiting interface 1 (0x20008df8) to be up...
    [00:00:00.773,468] <inf> wifi_supplicant: wpa_supplicant initialized
    [00:00:00.780,761] <inf> net_config: IPv4 address: 192.168.1.1
    [00:00:00.787,048] <inf> net_config: Running dhcpv4 client...
    MicroPython 9ea566c69-dirty on 2025-06-02; zephyr-nrf7002dk with nrf5340
    Type "help()" for more information.
    >>>
    >>>
    >>>
    >>> import sock_test
    >>> sock_test.step_1()
    Starting nrf7002dk with CPU frequency: 64 MHz
    Scan requested
    Num  | SSID                             (len) | Chan | RSSI | Security | BSSID
    1    | Sony_5_IV                        9     | 6    | -43  | WPA2-PSK | 22:93:C7:96:18:A7
    2    | SWEET&COFFEE                     12    | 9    | -53  | WPA2-PSK | E8:6E:44:09:5D:3C
    3    | MAZZER-12797577                  15    | 6    | -58  | WPA-PSK | 60:8A:10:C3:46:89
    4    |                                  0     | 161  | -60  | WPA2-PSK | EA:6E:44:99:5D:3D
    5    | SWEET&COFFEE                     12    | 161  | -61  | WPA2-PSK | E8:6E:44:09:5D:3D
    6    | HUAWEI-sBJ9                      11    | 11   | -61  | WPA-PSK | 88:CF:98:70:23:54
    7    | DIGI-JdZ3                        9     | 2    | -66  | WPA2-PSK | 74:31:AF:13:CC:61
    8    | DIGI-cPJ7                        9     | 13   | -68  | WPA2-PSK | AC:CC:36:52:94:31
    9    | EXP_Guest                        9     | 1    | -69  | WPA-PSK | 9E:DA:C4:18:AE:30
    10   | DIGI-dRb7                        9     | 13   | -71  | WPA2-PSK | 14:18:2A:40:28:A1
    11   | SENZOR PLANET _EXT               18    | 5    | -71  | WPA-PSK | 1C:3B:F3:97:86:06
    12   | DIGI-24-40F4                     12    | 1    | -71  | WPA-PSK | D4:B7:09:03:40:F4
    13   | DIGI_eeaea1                      11    | 1    | -72  | WPA2-PSK | C0:B1:01:EE:AE:A1
    14   | EXP2                             4     | 1    | -73  | WPA-PSK | 98:DA:C4:18:AE:3F
    15   | Rovacutest_5G                    13    | 44   | -75  | WPA2-PSK | 90:9A:4A:9E:D7:CB
    16   | Tenda_391100                     12    | 7    | -75  | WPA-PSK | 50:0F:F5:39:11:01
    17   |                                  30    | 5    | -75  | WPA2-PSK | BA:A6:E6:A6:23:0D
    18   | Digi Wi-Fi                       10    | 3    | -76  | WPA2-PSK | 14:18:2A:37:C7:31
    19   |                                  0     | 13   | -77  | WPA2-PSK | AA:40:A0:70:10:17
    20   | DIGI-aKn9                        9     | 6    | -77  | WPA2-PSK | 40:AE:30:92:E4:6B
    21   |                                  0     | 5    | -77  | WPA2-PSK | DE:47:32:AE:F4:F7
    22   | DIGI-jSN3                        9     | 3    | -77  | WPA2-PSK | 74:31:AF:15:D8:11
    23   | Vivi-Guest                       10    | 13   | -79  | OPEN  | AE:40:A0:70:10:17
    24   | GynOffline                       10    | 5    | -79  | WPA2-PSK | 5C:A6:E6:A6:23:0B
    25   | AT_401_RAC_056905_WW_4c11        25    | 11   | -80  | WPA2-PSK | 4C:BC:E9:81:4C:11
    26   | DIGI-23Sx                        9     | 12   | -81  | WPA2-PSK | 28:F8:D6:E6:20:21
    27   |                                  0     | 48   | -82  | WPA2-PSK | 16:18:2A:80:28:A1
    28   | DIGI-dRb7                        9     | 48   | -83  | WPA2-PSK | 14:18:2A:40:28:A9
    29   | DIGI-cPJ7                        9     | 36   | -83  | WPA2-PSK | AC:CC:36:52:94:39
    30   |                                  15    | 44   | -84  | WPA2-PSK | 74:31:AF:13:CC:69
    31   | [LG_Wall-Mount A/C]df38          23    | 11   | -84  | WPA2-PSK | A6:36:C7:93:DF:38
    32   |                                  0     | 36   | -84  | WPA2-PSK | AE:CC:36:52:94:31
    33   | DIGI-JdZ3                        9     | 44   | -85  | WPA2-PSK | 74:31:AF:13:CC:6A
    34   | Tenda_391100_5G                  15    | 40   | -85  | WPA-PSK | 50:0F:F5:39:11:05
    35   |                                  0     | 100  | -86  | WPA2-PSK | 70:A7:41:44:1D:06
    36   |                                  0     | 52   | -87  | WPA2-PSK | 06:20:84:94:04:F0
    37   | EXP2_5G                          7     | 48   | -88  | WPA-PSK | 98:DA:C4:18:AE:3E
    38   | EXP_GUEST_5G                     12    | 48   | -88  | WPA-PSK | 9E:DA:C4:18:AE:3F
    39   |                                  0     | 44   | -88  | WPA2-PSK | 7A:8C:B5:5B:6D:08
    40   | Medical Motion MESH              19    | 36   | -89  | WPA2-PSK | 38:6B:1C:2C:73:9C
    41   | TP-Link_7879_5G                  15    | 48   | -89  | WPA2-PSK | 5C:E9:31:AC:78:7B
    42   |                                  0     | 48   | -89  | WPA2-PSK | 5E:E9:31:EC:78:79
    43   | DIGI-aKn9                        9     | 48   | -89  | WPA2-PSK | 40:AE:30:92:E4:6D
    44   | DIGI-E7ZN                        9     | 52   | -89  | WPA2-PSK | 04:20:84:14:04:F0
    45   |                                  0     | 116  | -92  | WPA2-PSK | A0:40:A0:70:10:19
    Scan request done
    Found 45 networks.
    Network ID: Sony_5_IV & Network MAC: 22:93:C7:96:18:A7
    Network ID: SWEET&COFFEE & Network MAC: E8:6E:44:09:5D:3C
    Network ID: MAZZER-12797577 & Network MAC: 60:8A:10:C3:46:89
    Network ID:  & Network MAC: EA:6E:44:99:5D:3D
    Network ID: SWEET&COFFEE & Network MAC: E8:6E:44:09:5D:3D
    Network ID: HUAWEI-sBJ9 & Network MAC: 88:CF:98:70:23:54
    Network ID: DIGI-JdZ3 & Network MAC: 74:31:AF:13:CC:61
    Network ID: DIGI-cPJ7 & Network MAC: AC:CC:36:52:94:31
    Network ID: EXP_Guest & Network MAC: 9E:DA:C4:18:AE:30
    Network ID: DIGI-dRb7 & Network MAC: 14:18:2A:40:28:A1
    Network ID: SENZOR PLANET _EXT & Network MAC: 1C:3B:F3:97:86:06
    Network ID: DIGI-24-40F4 & Network MAC: D4:B7:09:03:40:F4
    Network ID: DIGI_eeaea1 & Network MAC: C0:B1:01:EE:AE:A1
    Network ID: EXP2 & Network MAC: 98:DA:C4:18:AE:3F
    Network ID: Rovacutest_5G & Network MAC: 90:9A:4A:9E:D7:CB
    Network ID: Tenda_391100 & Network MAC: 50:0F:F5:39:11:01
    Network ID:  & Network MAC: BA:A6:E6:A6:23:0D
    Network ID: Digi Wi-Fi & Network MAC: 14:18:2A:37:C7:31
    Network ID:  & Network MAC: AA:40:A0:70:10:17
    Network ID: DIGI-aKn9 & Network MAC: 40:AE:30:92:E4:6B
    Network ID:  & Network MAC: DE:47:32:AE:F4:F7
    Network ID: DIGI-jSN3 & Network MAC: 74:31:AF:15:D8:11
    Network ID: Vivi-Guest & Network MAC: AE:40:A0:70:10:17
    Network ID: GynOffline & Network MAC: 5C:A6:E6:A6:23:0B
    Network ID: AT_401_RAC_056905_WW_4c11 & Network MAC: 4C:BC:E9:81:4C:11
    Network ID: DIGI-23Sx & Network MAC: 28:F8:D6:E6:20:21
    Network ID:  & Network MAC: 16:18:2A:80:28:A1
    Network ID: DIGI-dRb7 & Network MAC: 14:18:2A:40:28:A9
    Network ID: DIGI-cPJ7 & Network MAC: AC:CC:36:52:94:39
    Network ID:  & Network MAC: 74:31:AF:13:CC:69
    Network ID: [LG_Wall-Mount A/C]df38 & Network MAC: A6:36:C7:93:DF:38
    Network ID:  & Network MAC: AE:CC:36:52:94:31
    Network ID: DIGI-JdZ3 & Network MAC: 74:31:AF:13:CC:6A
    Network ID: Tenda_391100_5G & Network MAC: 50:0F:F5:39:11:05
    Network ID:  & Network MAC: 70:A7:41:44:1D:06
    Network ID:  & Network MAC: 06:20:84:94:04:F0
    Network ID: EXP2_5G & Network MAC: 98:DA:C4:18:AE:3E
    Network ID: EXP_GUEST_5G & Network MAC: 9E:DA:C4:18:AE:3F
    Network ID:  & Network MAC: 7A:8C:B5:5B:6D:08
    Network ID: Medical Motion MESH & Network MAC: 38:6B:1C:2C:73:9C
    Network ID: TP-Link_7879_5G & Network MAC: 5C:E9:31:AC:78:7B
    Network ID:  & Network MAC: 5E:E9:31:EC:78:79
    Network ID: DIGI-aKn9 & Network MAC: 40:AE:30:92:E4:6D
    Network ID: DIGI-E7ZN & Network MAC: 04:20:84:14:04:F0
    Network ID:  & Network MAC: A0:40:A0:70:10:19
    MAC: F4:CE:36:00:1C:F4
    [00:00:36.985,260] <inf> wifimod: Connection requested
    [00:00:36.990,875] <inf> wifimod: ==================
    [00:00:36.996,978] <inf> wifimod: State: SCANNING
    [00:00:37.002,197] <inf> wifimod: Net If state: 5
    [00:00:37.307,586] <inf> wifimod: ==================
    [00:00:37.312,927] <inf> wifimod: State: AUTHENTICATING
    [00:00:37.318,695] <inf> wifimod: Net If state: 5
    [00:00:37.608,245] <dbg> net_sock_packet: zpacket_received_cb: (rx_q[0]): ctx=0x2000aaf8, pkt=0x2005eb80, st=0, user_data=(nil)
    [00:00:37.627,960] <inf> wifimod: ==================
    [00:00:37.633,941] <inf> wifimod: State: 4WAY_HANDSHAKE
    [00:00:37.639,770] <inf> wifimod: Interface Mode: STATION
    [00:00:37.646,270] <inf> wifimod: Link Mode: WIFI 6 (802.11ax/HE)
    [00:00:37.652,893] <inf> wifimod: SSID: Sony_5_IV
    [00:00:37.658,050] <inf> wifimod: BSSID: 22:93:C7:96:18:A7
    [00:00:37.664,001] <inf> wifimod: Band: 2.4GHz
    [00:00:37.668,884] <inf> wifimod: Channel: 6
    [00:00:37.673,614] <inf> wifimod: Security: WPA2-PSK
    [00:00:37.679,046] <inf> wifimod: MFP: Disable
    [00:00:37.683,929] <inf> wifimod: RSSI: -44
    [00:00:37.690,582] <dbg> net_sock_packet: zpacket_received_cb: (rx_q[0]): ctx=0x2000aaf8, pkt=0x2005eb40, st=0, user_data=(nil)
    [00:00:37.715,728] <inf> wifimod: Net If state: 6
    [00:00:37.728,881] <inf> wifimod: Wi-Fi connect result: status...
    [00:00:37.735,382] <inf> wifimod: Connected
    [00:00:38.007,934] <dbg> net_sock: zsock_close_ctx: (rx_q[0]): close: ctx=0x2000a998, fd=3
    [00:00:38.016,784] <dbg> net_sock: zsock_close_ctx: (rx_q[0]): close: ctx=0x2000aa48, fd=5
    [00:00:38.025,970] <dbg> net_sock: zsock_socket_internal: (rx_q[0]): socket: ctx=0x2000a998, fd=3
    [00:00:38.035,797] <dbg> net_sock: zsock_socket_internal: (rx_q[0]): socket: ctx=0x2000aa48, fd=5
    [00:00:38.046,813] <dbg> net_sock_svc: socket_service_thread: (net_socket_service): Received restart event.
    [00:00:38.171,600] <inf> net_dhcpv4: Received: 192.168.157.8
    [00:00:38.177,825] <inf> net_config: IPv4 address: 192.168.157.8
    [00:00:38.184,234] <inf> net_config: Lease time: 3599 seconds
    [00:00:38.190,490] <inf> net_config: Subnet: 255.255.255.0
    [00:00:38.196,441] <inf> net_config: Router: 192.168.157.80
    [00:00:38.202,545] <inf> wifimod: Net MGMT: Got IP via DHCP
    DHCP IP address: 192.168.157.8
    Resolving google.com...
    Using system DNS resolver...
    Querying DNS for google.com (type 1)...
    [00:00:43.056,488] <dbg> net_dns_resolve: dns_write: (mp_main): [0] submitting work to server idx 0 for id 18998 hash 59079
    semaphore wait...1
    [00:00:43.517,852] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000a998, pkt=0x2005eb40, st=0, user_data=(nil)
    DNS CALLBACK: status=-100
    DNS CALLBACK: status=-103
    Giving semaphore on info == NULL
    something...1
    Resolved: [(1, 1, 6, '', ('172.217.20.14', 443))]
    Success!
    Trying to initialize socket...
    Family: 1, socktype: 1, proto: 259
    [00:00:43.551,208] <dbg> net_sock_tls: tls_alloc: (mp_main): Allocated TLS context, 0x20009c30
    [00:00:43.561,004] <dbg> net_sock: zsock_socket_internal: (mp_main): socket: ctx=0x2000aba8, fd=16
    Returned value: 15
    Done initializing socket!
    Performing TLS handshake...
    Trying 1...
    Failed to set cipher suite list: -11 is done
    2 is done
    3 is done
    TLS Handshake complete.
    Connecting to: ('172.217.20.14', 443)
    [00:00:43.688,262] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:1331: The SSL configuration is tls12 only.
    [00:00:43.707,824] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4661: => handshake
    [00:00:43.718,109] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:43.728,698] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:00:43.739,288] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_HELLO_REQUEST
    [00:00:43.751,953] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:43.762,542] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:00:43.773,162] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_CLIENT_HELLO
    [00:00:43.785,736] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0921: => write client hello
    [00:00:43.797,546] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0487: dumping 'client hello, random bytes' (32 bytes)
    [00:00:43.811,187] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0487: 0000:  01 1f b7 f4 29 da ec 7a 50 0d 36 a8 5f d6 b8 df  ....)..zP.6._...
    [00:00:43.826,995] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0487: 0010:  19 a8 d7 69 e3 33 e8 d1 5f b6 35 42 fa 27 10 14  ...i.3.._.5B.'..
    [00:00:43.842,559] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0512: dumping 'session id' (0 bytes)
    [00:00:43.854,492] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c024, TLS-ECDHE-ECDSA-WITH-AES-256-CBC-SHA384
    [00:00:43.870,452] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c028, TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA384
    [00:00:43.886,230] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 006b, TLS-DHE-RSA-WITH-AES-256-CBC-SHA256
    [00:00:43.901,824] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c00a, TLS-ECDHE-ECDSA-WITH-AES-256-CBC-SHA
    [00:00:43.917,510] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c014, TLS-ECDHE-RSA-WITH-AES-256-CBC-SHA
    [00:00:43.933,044] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 0039, TLS-DHE-RSA-WITH-AES-256-CBC-SHA
    [00:00:43.948,364] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c023, TLS-ECDHE-ECDSA-WITH-AES-128-CBC-SHA256
    [00:00:43.964,324] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c027, TLS-ECDHE-RSA-WITH-AES-128-CBC-SHA256
    [00:00:43.980,102] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 0067, TLS-DHE-RSA-WITH-AES-128-CBC-SHA256
    [00:00:43.995,697] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c009, TLS-ECDHE-ECDSA-WITH-AES-128-CBC-SHA
    [00:00:44.011,383] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c013, TLS-ECDHE-RSA-WITH-AES-128-CBC-SHA
    [00:00:44.026,916] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 0033, TLS-DHE-RSA-WITH-AES-128-CBC-SHA
    [00:00:44.042,266] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 003d, TLS-RSA-WITH-AES-256-CBC-SHA256
    [00:00:44.057,525] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 0035, TLS-RSA-WITH-AES-256-CBC-SHA
    [00:00:44.072,509] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c02a, TLS-ECDH-RSA-WITH-AES-256-CBC-SHA384
    [00:00:44.088,195] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c00f, TLS-ECDH-RSA-WITH-AES-256-CBC-SHA
    [00:00:44.103,637] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c026, TLS-ECDH-ECDSA-WITH-AES-256-CBC-SHA384
    [00:00:44.119,506] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c005, TLS-ECDH-ECDSA-WITH-AES-256-CBC-SHA
    [00:00:44.135,101] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 003c, TLS-RSA-WITH-AES-128-CBC-SHA256
    [00:00:44.150,360] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: 002f, TLS-RSA-WITH-AES-128-CBC-SHA
    [00:00:44.165,344] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c029, TLS-ECDH-RSA-WITH-AES-128-CBC-SHA256
    [00:00:44.181,030] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c00e, TLS-ECDH-RSA-WITH-AES-128-CBC-SHA
    [00:00:44.196,472] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c025, TLS-ECDH-ECDSA-WITH-AES-128-CBC-SHA256
    [00:00:44.212,341] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0370: client hello, add ciphersuite: c004, TLS-ECDH-ECDSA-WITH-AES-128-CBC-SHA
    [00:00:44.227,935] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0388: adding EMPTY_RENEGOTIATION_INFO_SCSV
    [00:00:44.240,325] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0397: client hello, got 25 cipher suites
    [00:00:44.252,593] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0041: client hello, adding server name extension: google.com
    [00:00:44.266,601] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0231: client hello, adding supported_groups extension
    [00:00:44.279,968] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0250: got supported group(001d)
    [00:00:44.291,442] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0282: NamedGroup: x25519 ( 1d )
    [00:00:44.302,917] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0250: got supported group(0017)
    [00:00:44.314,392] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0282: NamedGroup: secp256r1 ( 17 )
    [00:00:44.326,110] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0302: dumping 'Supported groups extension' (6 bytes)
    [00:00:44.339,569] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0302: 0000:  00 04 00 1d 00 17                                ......
    [00:00:44.354,217] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9503: adding signature_algorithms extension
    [00:00:44.366,516] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9523: got signature scheme [603] ecdsa_secp521r1_sha512
    [00:00:44.379,821] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9532: sent signature scheme [603] ecdsa_secp521r1_sha512
    [00:00:44.393,218] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9523: got signature scheme [601] rsa_pkcs1_sha512
    [00:00:44.406,005] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9532: sent signature scheme [601] rsa_pkcs1_sha512
    [00:00:44.418,853] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9523: got signature scheme [503] ecdsa_secp384r1_sha384
    [00:00:44.432,189] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9532: sent signature scheme [503] ecdsa_secp384r1_sha384
    [00:00:44.445,556] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9523: got signature scheme [501] rsa_pkcs1_sha384
    [00:00:44.458,343] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9532: sent signature scheme [501] rsa_pkcs1_sha384
    [00:00:44.471,221] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9523: got signature scheme [403] ecdsa_secp256r1_sha256
    [00:00:44.484,527] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9532: sent signature scheme [403] ecdsa_secp256r1_sha256
    [00:00:44.497,924] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9523: got signature scheme [401] rsa_pkcs1_sha256
    [00:00:44.510,681] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9532: sent signature scheme [401] rsa_pkcs1_sha256
    [00:00:44.523,529] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:0105: client hello, adding supported_point_formats extension
    [00:00:44.538,055] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:0150: client hello, adding ecjpake_kkpp extension
    [00:00:44.551,605] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:0165: generating new ecjpake parameters
    [00:00:44.664,733] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:0338: client hello, adding extended_master_secret extension
    [00:00:44.679,138] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:0372: client hello, adding session ticket extension
    [00:00:44.692,901] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0689: client hello, total extension length: 395
    [00:00:44.705,780] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: dumping 'client hello extensions' (395 bytes)
    [00:00:44.719,238] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0000:  01 8b 00 00 00 0f 00 0d 00 00 0a 67 6f 6f 67 6c  ...........googl
    [00:00:44.735,046] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0010:  65 2e 63 6f 6d 00 0a 00 06 00 04 00 1d 00 17 00  e.com...........
    [00:00:44.750,885] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0020:  0d 00 0e 00 0c 06 03 06 01 05 03 05 01 04 03 04  ................
    [00:00:44.766,693] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0030:  01 00 0b 00 02 01 00 01 00 01 4a 41 04 65 f3 ec  ..........JA.e..
    [00:00:44.782,531] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0040:  2e 71 a9 4f 34 63 43 d4 a8 44 9f b9 bf 9d d5 09  .q.O4cC..D......
    [00:00:44.798,339] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0050:  c1 87 39 0b ea e0 a5 9c 7b d5 bd 48 c6 fc d0 00  ..9.....{..H....
    [00:00:44.814,147] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0060:  c8 e0 f7 fd a8 96 b2 fa 51 09 c1 ca 1b 7a 92 2d  ........Q....z.-
    [00:00:44.829,956] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0070:  a1 91 ff b9 7e 2e 46 fd 47 15 86 34 03 41 04 5d  ....~.F.G..4.A.]
    [00:00:44.845,764] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0080:  a3 60 bc ce cb eb 52 30 2f b5 36 13 f1 d0 2e 5a  .`....R0/.6....Z
    [00:00:44.861,602] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0090:  b5 cb 1e e1 ae 79 e0 53 ad 5f 5c ab b4 10 e6 70  .....y.S._\....p
    [00:00:44.877,410] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 00a0:  9c 0e e1 98 ee 74 0a 08 0c d4 02 06 66 5a e7 e3  .....t......fZ..
    [00:00:44.893,218] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 00b0:  76 f9 d2 a2 63 1a 50 9b af ff 1b 00 42 3c f0 20  v...c.P.....B<.
    [00:00:44.909,027] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 00c0:  3b 0d 7e 4a f1 4c 2a 37 ed 47 1e 3c 14 fa a9 f5  ;.~J.L*7.G.<....
    [00:00:44.924,835] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 00d0:  bc 59 a5 1b 14 22 b1 ef 54 e7 0c f4 fc 44 30 ca  .Y..."..T....D0.
    [00:00:44.940,673] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 00e0:  41 04 d3 fc 3e ab d5 dd 42 d8 2e 63 10 76 7a 37  A...>...B..c.vz7
    [00:00:44.956,481] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 00f0:  d6 8d a6 21 69 1a fb a1 11 7f 39 6d c5 73 3e f7  ...!i.....9m.s>.
    [00:00:44.972,290] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0100:  ff 3c dc 2b 21 d9 fe 5f 1c 63 8a 53 1b 97 70 84  .<.+!.._.c.S..p.
    [00:00:44.988,098] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0110:  20 35 71 f9 d8 99 4f 68 cf 55 25 9f 89 cb b8 e9   5q...Oh.U%.....
    [00:00:45.003,906] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0120:  00 3d 41 04 27 b9 f4 65 73 cf aa 45 43 9d bd 45  .=A.'..es..EC..E
    [00:00:45.019,744] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0130:  d1 ba 6d 0e 58 01 e5 16 58 d9 41 fc 98 7c f9 f0  ..m.X...X.A..|..
    [00:00:45.035,552] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0140:  80 13 0d d5 53 ba aa 22 eb 55 d8 6f 09 fd 08 78  ....S..".U.o...x
    [00:00:45.051,361] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0150:  dd f2 2d 65 ec 78 6a 2b 05 54 ee 1e fa a8 43 71  ..-e.xj+.T....Cq
    [00:00:45.067,169] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0160:  51 73 82 25 20 b6 e2 65 0c f0 2c 39 dc 2c 06 43  Qs.% ..e..,9.,.C
    [00:00:45.082,977] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0170:  26 3f ce 2d bc df 6d ee a2 4a ce c0 4f d8 7b 48  &?.-..m..J..O.{H
    [00:00:45.098,754] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:0691: 0180:  08 c3 b1 a9 87 00 17 00 00 00 23                 ..........#
    [00:00:45.115,112] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2784: => write handshake message
    [00:00:45.126,617] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2944: => write record
    [00:00:45.137,268] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3028: output record: msgtype = 22, version = [3:3], msglen = 490
    [00:00:45.151,367] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: dumping 'output record sent to network' (495 bytes)
    [00:00:45.167,022] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0000:  16 03 03 01 ea 01 00 01 e6 03 03 01 1f b7 f4 29  ...............)
    [00:00:45.184,478] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0010:  da ec 7a 50 0d 36 a8 5f d6 b8 df 19 a8 d7 69 e3  ..zP.6._......i.
    [00:00:45.201,965] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0020:  33 e8 d1 5f b6 35 42 fa 27 10 14 00 00 32 c0 24  3.._.5B.'....2.$
    [00:00:45.219,421] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0030:  c0 28 00 6b c0 0a c0 14 00 39 c0 23 c0 27 00 67  .(.k.....9.#.'.g
    [00:00:45.236,907] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0040:  c0 09 c0 13 00 33 00 3d 00 35 c0 2a c0 0f c0 26  .....3.=.5.*...&
    [00:00:45.254,394] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0050:  c0 05 00 3c 00 2f c0 29 c0 0e c0 25 c0 04 00 ff  ...<./.)...%....
    [00:00:45.271,881] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0060:  01 00 01 8b 00 00 00 0f 00 0d 00 00 0a 67 6f 6f  .............goo
    [00:00:45.289,367] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0070:  67 6c 65 2e 63 6f 6d 00 0a 00 06 00 04 00 1d 00  gle.com.........
    [00:00:45.306,854] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0080:  17 00 0d 00 0e 00 0c 06 03 06 01 05 03 05 01 04  ................
    [00:00:45.324,340] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0090:  03 04 01 00 0b 00 02 01 00 01 00 01 4a 41 04 65  ............JA.e
    [00:00:45.341,796] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 00a0:  f3 ec 2e 71 a9 4f 34 63 43 d4 a8 44 9f b9 bf 9d  ...q.O4cC..D....
    [00:00:45.359,283] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 00b0:  d5 09 c1 87 39 0b ea e0 a5 9c 7b d5 bd 48 c6 fc  ....9.....{..H..
    [00:00:45.376,770] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 00c0:  d0 00 c8 e0 f7 fd a8 96 b2 fa 51 09 c1 ca 1b 7a  ..........Q....z
    [00:00:45.394,226] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 00d0:  92 2d a1 91 ff b9 7e 2e 46 fd 47 15 86 34 03 41  .-....~.F.G..4.A
    [00:00:45.411,712] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 00e0:  04 5d a3 60 bc ce cb eb 52 30 2f b5 36 13 f1 d0  .].`....R0/.6...
    [00:00:45.429,168] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 00f0:  2e 5a b5 cb 1e e1 ae 79 e0 53 ad 5f 5c ab b4 10  .Z.....y.S._\...
    [00:00:45.446,655] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0100:  e6 70 9c 0e e1 98 ee 74 0a 08 0c d4 02 06 66 5a  .p.....t......fZ
    [00:00:45.464,141] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0110:  e7 e3 76 f9 d2 a2 63 1a 50 9b af ff 1b 00 42 3c  ..v...c.P.....B<
    [00:00:45.481,597] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0120:  f0 20 3b 0d 7e 4a f1 4c 2a 37 ed 47 1e 3c 14 fa  . ;.~J.L*7.G.<..
    [00:00:45.499,084] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0130:  a9 f5 bc 59 a5 1b 14 22 b1 ef 54 e7 0c f4 fc 44  ...Y..."..T....D
    [00:00:45.516,571] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0140:  30 ca 41 04 d3 fc 3e ab d5 dd 42 d8 2e 63 10 76  0.A...>...B..c.v
    [00:00:45.534,027] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0150:  7a 37 d6 8d a6 21 69 1a fb a1 11 7f 39 6d c5 73  z7...!i.....9m.s
    [00:00:45.551,483] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0160:  3e f7 ff 3c dc 2b 21 d9 fe 5f 1c 63 8a 53 1b 97  >..<.+!.._.c.S..
    [00:00:45.568,969] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0170:  70 84 20 35 71 f9 d8 99 4f 68 cf 55 25 9f 89 cb  p. 5q...Oh.U%...
    [00:00:45.586,425] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0180:  b8 e9 00 3d 41 04 27 b9 f4 65 73 cf aa 45 43 9d  ...=A.'..es..EC.
    [00:00:45.603,881] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0190:  bd 45 d1 ba 6d 0e 58 01 e5 16 58 d9 41 fc 98 7c  .E..m.X...X.A..|
    [00:00:45.621,368] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 01a0:  f9 f0 80 13 0d d5 53 ba aa 22 eb 55 d8 6f 09 fd  ......S..".U.o..
    [00:00:45.638,824] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 01b0:  08 78 dd f2 2d 65 ec 78 6a 2b 05 54 ee 1e fa a8  .x..-e.xj+.T....
    [00:00:45.656,280] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 01c0:  43 71 51 73 82 25 20 b6 e2 65 0c f0 2c 39 dc 2c  CqQs.% ..e..,9.,
    [00:00:45.673,767] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 01d0:  06 43 26 3f ce 2d bc df 6d ee a2 4a ce c0 4f d8  .C&?.-..m..J..O.
    [00:00:45.691,223] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 01e0:  7b 48 08 c3 b1 a9 87 00 17 00 00 00 23 00 00     {H..........#..
    [00:00:45.708,343] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3081: <= write record
    [00:00:45.718,933] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2905: <= write handshake message
    [00:00:45.730,468] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_client.c:1014: <= write client hello
    [00:00:45.741,851] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:45.752,471] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2368: message length: 495, out_left: 495
    [00:00:45.765,441] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2375: ssl->f_send() returned 495 (-0xfffffe11)
    [00:00:45.778,167] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2402: <= flush output
    [00:00:45.788,787] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_SERVER_HELLO
    [00:00:45.801,361] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1196: => parse server hello
    [00:00:45.813,262] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4298: => read record
    [00:00:45.823,760] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:45.834,289] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 0, nb_want: 5
    [00:00:45.845,489] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 0, nb_want: 5
    [00:00:45.856,658] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4672: <= handshake
    [00:00:46.026,458] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=0x2005eb80, st=0, user_data=(nil)
    [00:00:46.038,055] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4661: => handshake
    [00:00:46.048,339] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:46.058,929] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:00:46.069,519] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_SERVER_HELLO
    [00:00:46.082,092] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1196: => parse server hello
    [00:00:46.093,994] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4298: => read record
    [00:00:46.104,492] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:46.115,020] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 0, nb_want: 5
    [00:00:46.126,251] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 0, nb_want: 5
    [00:00:46.138,275] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2319: ssl->f_recv(_timeout)() returned 5 (-0xfffffffb)
    [00:00:46.151,702] <w[00:00:46.155,578] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=0x2005ebc0, st=0, user_data=(nil)
    rn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2341: <= fetch input
    [00:00:46.175,933] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: dumping 'input record header' (5 bytes)
    [00:00:46.190,460] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: 0000:  16 03 03 00 3f                                   ....?
    [00:00:46.206,756] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3966: input record: msgtype = 22, version = [0x303], msglen = 63
    [00:00:46.220,794] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:46.231,323] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 5, nb_want: 68
    [00:00:46.242,645] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 5, nb_want: 68
    [00:00:46.253,936] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2319: ssl->f_recv(_timeout)() returned 63 (-0xffffffc1)
    [00:00:46.267,852] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2341: <= fetch input
    [00:00:46.278,411] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: dumping 'input record from network' (68 bytes)
    [00:00:46.293,609] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0000:  16 03 03 00 3f 02 00 00 3b 03 03 68 3d c5 42 02  ....?...;..h=.B.
    [00:00:46.311,096] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0010:  34 6f 04 20 97 47 4d fd a2 3f 81 f4 77 38 f8 66  4o. .GM..?..w8.f
    [00:00:46.328,582] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0020:  c5 f2 07 44 4f 57 4e 47 52 44 01 00 c0 09 00 00  ...DOWNGRD......
    [00:00:46.346,069] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0030:  13 00 17 00 00 ff 01 00 01 00 00 0b 00 02 01 00  ................
    [00:00:46.363,403] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0040:  00 23 00 00                                      .#..
    [00:00:46.379,638] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3239: handshake message: msglen = 63, type = 2, hslen = 63
    [00:00:46.393,218] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3328: sole handshake fragment: 63, 0..63 of 63
    [00:00:46.405,731] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: dumping 'reassembled record' (68 bytes)
    [00:00:46.420,349] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0000:  16 03 03 00 3f 02 00 00 3b 03 03 68 3d c5 42 02  ....?...;..h=.B.
    [00:00:46.437,805] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0010:  34 6f 04 20 97 47 4d fd a2 3f 81 f4 77 38 f8 66  4o. .GM..?..w8.f
    [00:00:46.455,291] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0020:  c5 f2 07 44 4f 57 4e 47 52 44 01 00 c0 09 00 00  ...DOWNGRD......
    [00:00:46.472,778] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0030:  13 00 17 00 00 ff 01 00 01 00 00 0b 00 02 01 00  ................
    [00:00:46.490,142] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0040:  00 23 00 00                                      .#..
    [00:00:46.506,652] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4370: <= read record
    [00:00:46.517,150] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1270: dumping 'server hello, version' (2 bytes)
    [00:00:46.530,609] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1270: 0000:  03 03                                            ..
    [00:00:46.545,471] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1291: server hello, current time: 1748878658
    [00:00:46.558,624] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1301: dumping 'server hello, random bytes' (32 bytes)
    [00:00:46.572,753] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1301: 0000:  68 3d c5 42 02 34 6f 04 20 97 47 4d fd a2 3f 81  h=.B.4o. .GM..?.
    [00:00:46.589,782] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1301: 0010:  f4 77 38 f8 66 c5 f2 07 44 4f 57 4e 47 52 44 01  .w8.f...DOWNGRD.
    [00:00:46.605,957] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1363: server hello, session id len.: 0
    [00:00:46.618,560] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1364: dumping 'server hello, session id' (0 bytes)
    [00:00:46.632,202] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1388: no session has been resumed
    [00:00:46.644,378] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1391: server hello, chosen ciphersuite: c009
    [00:00:46.657,470] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1392: server hello, compress alg.: 0
    [00:00:46.669,921] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1427: server hello, chosen ciphersuite: TLS-ECDHE-ECDSA-WITH-AES-128-CBC-SHA
    [00:00:46.685,852] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1448: server hello, total extension length: 19
    [00:00:46.699,401] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1518: found extended_master_secret extension
    [00:00:46.712,524] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1466: found renegotiation extension
    [00:00:46.724,853] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1545: found supported_point_formats extension
    [00:00:46.738,067] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:0844: point format selected: 0
    [00:00:46.751,892] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1531: found session_ticket extension
    [00:00:46.764,312] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls12_client.c:1662: <= parse server hello
    [00:00:46.776,184] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:46.786,773] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:00:46.797,393] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_SERVER_CERTIFICATE
    [00:00:46.810,485] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8093: => parse certificate
    [00:00:46.821,533] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4298: => read record
    [00:00:46.832,031] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:46.842,529] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 0, nb_want: 5
    [00:00:46.853,790] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 0, nb_want: 5
    [00:00:46.864,990] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2319: ssl->f_recv(_timeout)() returned 5 (-0xfffffffb)
    [00:00:46.878,417] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2341: <= fetch input
    [00:00:46.888,977] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: dumping 'input record header' (5 bytes)
    [00:00:46.903,442] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: 0000:  16 03 03 18 b6                                   .....
    [00:00:46.919,738] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3966: input record: msgtype = 22, version = [0x303], msglen = 6326
    [00:00:46.933,959] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:46.944,488] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 5, nb_want: 6331
    [00:00:46.956,512] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 5, nb_want: 6331
    [00:00:46.967,987] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2319: ssl->f_recv(_timeout)() returned 1291 (-0xfffffaf5)
    [00:00:46.981,750] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 1296, nb_want: 6331
    [00:00:46.993,438] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4672: <= handshake
    [00:00:47.455,322] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=0x2005ebc0, st=0, user_data=(nil)
    [00:00:47.466,949] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4661: => handshake
    [00:00:47.477,233] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:47.487,823] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:00:47.498,443] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_SERVER_CERTIFICATE
    [00:00:47.511,535] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8093: => parse certificate
    [00:00:47.522,552] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4298: => read record
    [00:00:47.533,050] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:47.543,579] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 1296, nb_want: 5
    [00:00:47.555,023] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2341: <= fetch input
    [00:00:47.566,406] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: dumping 'input record header' (5 bytes)
    [00:00:47.580,902] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: 0000:  16 03 03 18 b6                                   .....
    [00:00:47.597,198] 00:00:47.600,555] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=0x2005eb80, st=0, user_data=(nil)
    m<inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3966: input record: msgtype = 22, version = [0x303], msglen = 6326
    [00:00:47.624,420] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:47.634,948] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 1296, nb_want: 6331
    [00:00:47.647,277] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 1296, nb_want: 6331
    [00:00:47.659,027] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2319: ssl->f_recv(_timeout)() returned 1364 (-0xfffffaac)
    [00:00:47.672,790] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 2660, nb_want: 6331
    [00:00:47.684,478] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4672: <= handshake
    [00:00:47.903,289] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=0x2005eb80, st=0, user_data=(nil)
    [00:00:47.914,886] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4661: => handshake
    [00:00:47.925,170] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:47.935,760] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:00:47.946,380] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_SERVER_CERTIFICATE
    [00:00:47.959,472] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8093: => parse certificate
    [00:00:47.970,489] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4298: => read record
    [00:00:47.980,987] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:47.991,516] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 2660, nb_want: 5
    [00:00:48.002,960] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2341: <= fetch input
    [00:00:48.014,312] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: dumping 'input record header' (5 bytes)
    [00:00:48.028,778] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: 0000:  16 03 03 18 b6                                   .....
    [00:00:48.045,074] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3966:[00:00:48.054,870] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=0x2005ebc0, st=0, user_dat)
     input record: msgtype = 22, version = [0x303], msglen = 6326
    [00:00:48.072,265] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:48.082,794] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 2660, nb_want: 6331
    [00:00:48.095,092] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 2660, nb_want: 6331
    [00:00:48.106,842] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2319: ssl->f_recv(_timeout)() returned 1364 (-0xfffffaac)
    [00:00:48.120,605] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 4024, nb_want: 6331
    [00:00:48.132,293] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4672: <= handshake
    [00:00:48.489,990] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=0x2005ebc0, st=0, user_data=(nil)
    [00:00:48.501,617] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4661: => handshake
    [00:00:48.511,901] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:48.522,491] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:00:48.533,233] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_SERVER_CERTIFICATE
    [00:00:48.546,417] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8093: => parse certificate
    [00:00:48.557,434] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4298: => read record
    [00:00:48.567,932] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:48.578,460] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 4024, nb_want: 5
    [00:00:48.589,904] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2341: <= fetch input
    [00:00:48.601,348] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: dumping 'input record header' (5 bytes)
    [00:00:48.615,875] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: 0000:  16 03 03 18 b6                                   .....
    [00:00:48.632,171] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3966: input record: msgtype = 22, version = [0x303], msglen = 6326
    [00:00:48.646,392] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:48.656,921] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 4024, nb_want: 6331
    [00:00:48.669,128] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 4024, nb_want: 6331
    [00:00:48.680,877] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2319: ssl->f_recv(_timeout)() returned 682 (-0xfffffd56)
    [00:00:48.694,549] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 4706, nb_want: 6331
    [00:00:48.706,237] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4672: <= handshake
    [00:00:48.719,635] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=0x2005ebc0, st=0, user_data=(nil)
    [00:00:48.731,414] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4661: => handshake
    [00:00:48.741,699] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:48.752,288] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:00:48.762,908] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_SERVER_CERTIFICATE
    [00:00:48.776,000] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8093: => parse certificate
    [00:00:48.787,017] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4298: => read record
    [00:00:48.797,546] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:48.808,074] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 4706, nb_want: 5
    [00:00:48.819,488] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2341: <= fetch input
    [00:00:48.830,047] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: dumping 'input record header' (5 bytes)
    [00:00:48.844,512] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: 0000:  16 03 03 18 b6                                   .....
    [00:00:48.860,809] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3966: input record: msgtype = 22, version = [0x303], msglen = 6326
    [00:00:48.875,061] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:48.885,589] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 4706, nb_want: 6331
    [00:00:48.897,827] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 4706, nb_want: 6331
    [00:00:48.909,576] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2319: ssl->f_recv(_timeout)() returned 682 (-0xfffffd56)
    [00:00:48.923,217] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 5388, nb_want: 6331
    [00:00:48.934,936] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4672: <= handshake
    [00:00:49.248,107] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=0x2005ebc0, st=0, user_data=(nil)
    [00:00:49.259,948] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4661: => handshake
    [00:00:49.270,843] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:49.281,463] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:00:49.292,053] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_SERVER_CERTIFICATE
    [00:00:49.305,175] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8093: => parse certificate
    [00:00:49.316,192] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4298: => read record
    [00:00:49.326,690] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:49.337,219] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 5388, nb_want: 5
    [00:00:49.349,182] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2341: <= fetch input
    [00:00:49.362,579] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: dumping 'input record header' (5 bytes)
    [00:00:49.377,136] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: 0000:  16 03 03 18 b6                                   .....
    [00:00:49.393,463] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3966: input record: msgtype = 22, version = [0x303], msglen = 6326
    [00:00:49.407,684] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:49.418,212] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 5388, nb_want: 6331
    [00:00:49.430,450] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 5388, nb_want: 6331
    [00:00:49.442,169] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2319: ssl->f_recv(_timeout)() returned 682 (-0xfffffd56)
    [00:00:49.455,841] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 6070, nb_want: 6331
    [00:00:49.467,529] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4672: <= handshake
    [00:00:51.150,909] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=0x2005ebc0, st=0, user_data=(nil)
    [00:00:51.162,811] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4661: => handshake
    [00:00:51.173,400] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:00:51.184,936] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2363: <= flush output
    [00:00:51.195,556] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4580: client state: MBEDTLS_SSL_SERVER_CERTIFICATE
    [00:00:51.208,648] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:8093: => parse certificate
    [00:00:51.219,696] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4298: => read record
    [00:00:51.230,194] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:51.240,722] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 6070, nb_want: 5
    [00:00:51.252,136] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2341: <= fetch input
    [00:00:51.262,695] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: dumping 'input record header' (5 bytes)
    [00:00:51.277,160] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3964: 0000:  16 03 03 18 b6                                   .....
    [00:00:51.293,457] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3966: input record: msgtype = 22, version = [0x303], msglen = 6326
    [00:00:51.307,678] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2156: => fetch input
    [00:00:51.318,206] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2296: in_left: 6070, nb_want: 6331
    [00:00:51.330,017] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2316: in_left: 6070, nb_want: 6331
    [00:00:51.341,766] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2319: ssl->f_recv(_timeout)() returned 261 (-0xfffffefb)
    [00:00:51.355,346] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2341: <= fetch input
    [00:00:51.365,905] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: dumping 'input record from network' (6331 bytes)
    [00:00:51.381,286] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0000:  16 03 03 18 b6 0b 00 18 b2 00 18 af 00 0e 31 30  ..............10
    [00:00:51.398,773] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0010:  82 0e 2d 30 82 0d 15 a0 03 02 01 02 02 10 66 86  ..-0..........f.
    [00:00:51.416,259] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0020:  f0 7e 70 d7 df c2 09 4c b8 5a 34 d6 e3 d8 30 0d  .~p....L.Z4...0.
    [00:00:51.433,746] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0030:  06 09 2a 86 48 86 f7 0d 01 01 0b 05 00 30 3b 31  ..*.H........0;1
    [00:00:51.451,202] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0040:  0b 30 09 06 03 55 04 06 13 02 55 53 31 1e 30 1c  .0...U....US1.0.
    [00:00:51.468,688] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0050:  06 03 55 04 0a 13 15 47 6f 6f 67 6c 65 20 54 72  ..U....Google Tr
    [00:00:51.486,175] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0060:  75 73 74 20 53 65 72 76 69 63 65 73 31 0c 30 0a  ust Services1.0.
    [00:00:51.503,662] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0070:  06 03 55 04 03 13 03 57 52 32 30 1e 17 0d 32 35  ..U....WR20...25
    [00:00:51.521,118] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0080:  30 35 31 32 30 38 34 32 35 38 5a 17 0d 32 35 30  0512084258Z..250
    [00:00:51.538,604] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0090:  38 30 34 30 38 34 32 35 37 5a 30 17 31 15 30 13  804084257Z0.1.0.
    [00:00:51.556,091] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 00a0:  06 03 55 04 03 0c 0c 2a 2e 67 6f 6f 67 6c 65 2e  ..U....*.google.
    [00:00:51.573,547] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 00b0:  63 6f 6d 30 59 30 13 06 07 2a 86 48 ce 3d 02 01  com0Y0...*.H.=..
    [00:00:51.591,033] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 00c0:  06 08 2a 86 48 ce 3d 03 01 07 03 42 00 04 0a a6  ..*.H.=....B....
    [00:00:51.608,520] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 00d0:  db af e0 06 99 b8 6f 52 89 c4 25 83 94 32 5c 27  ......oR..%..2\'
    [00:00:51.626,007] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 00e0:  b9 94 42 1d 87 49 f5 1d c7 c8 2e 2f 3b 23 d2 df  ..B..I...../;#..
    [00:00:51.643,463] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 00f0:  e9 8c 33 79 94 86 0e 25 80 b3 ae 8e 72 22 5d ba  ..3y...%....r"].
    [00:00:51.660,949] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0100:  ef ce 7c 6f 30 55 e7 6c 1d 4b 02 70 fa 9d a3 82  ..|o0U.l.K.p....
    [00:00:51.678,436] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0110:  0c 1a 30 82 0c 16 30 0e 06 03 55 1d 0f 01 01 ff  ..0...0...U.....
    [00:00:51.695,922] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0120:  04 04 03 02 07 80 30 13 06 03 55 1d 25 04 0c 30  ......0...U.%..0
    [00:00:51.713,409] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0130:  0a 06 08 2b 06 01 05 05 07 03 01 30 0c 06 03 55  ...+.......0...U
    [00:00:51.730,895] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0140:  1d 13 01 01 ff 04 02 30 00 30 1d 06 03 55 1d 0e  .......0.0...U..
    [00:00:51.748,382] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0150:  04 16 04 14 ad 60 2e a1 68 d6 19 19 03 fa a3 0e  .....`..h.......
    [00:00:51.765,838] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0160:  ad d6 24 d8 fa 28 88 3e 30 1f 06 03 55 1d 23 04  ..$..(.>0...U.#.
    [00:00:51.783,325] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0170:  18 30 16 80 14 de 1b 1e ed 79 15 d4 3e 37 24 c3  .0.......y..>7$.
    [00:00:51.800,811] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0180:  21 bb ec 34 39 6d 42 b2 30 30 58 06 08 2b 06 01  !..49mB.00X..+..
    [00:00:51.818,298] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0190:  05 05 07 01 01 04 4c 30 4a 30 21 06 08 2b 06 01  ......L0J0!..+..
    [00:00:51.835,784] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 01a0:  05 05 07 30 01 86 15 68 74 74 70 3a 2f 2f 6f 2e  ...0...http://o.
    [00:00:51.853,240] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 01b0:  70 6b 69 2e 67 6f 6f 67 2f 77 72 32 30 25 06 08  pki.goog/wr20%..
    [00:00:51.870,727] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 01c0:  2b 06 01 05 05 07 30 02 86 19 68 74 74 70 3a 2f  +.....0...http:/
    [00:00:51.888,214] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 01d0:  2f 69 2e 70 6b 69 2e 67 6f 6f 67 2f 77 72 32 2e  /i.pki.goog/wr2.
    [00:00:51.905,700] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 01e0:  63 72 74 30 82 09 f0 06 03 55 1d 11 04 82 09 e7  crt0.....U......
    [00:00:51.923,156] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 01f0:  30 82 09 e3 82 0c 2a 2e 67 6f 6f 67 6c 65 2e 63  0.....*.google.c
    [00:00:51.940,643] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0200:  6f 6d 82 16 2a 2e 61 70 70 65 6e 67 69 6e 65 2e  om..*.appengine.
    [00:00:51.958,129] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0210:  67 6f 6f 67 6c 65 2e 63 6f 6d 82 09 2a 2e 62 64  google.com..*.bd
    [00:00:51.975,585] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0220:  6e 2e 64 65 76 82 15 2a 2e 6f 72 69 67 69 6e 2d  n.dev..*.origin-
    [00:00:51.993,041] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0230:  74 65 73 74 2e 62 64 6e 2e 64 65 76 82 12 2a 2e  test.bdn.dev..*.
    [00:00:52.010,528] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0240:  63 6c 6f 75 64 2e 67 6f 6f 67 6c 65 2e 63 6f 6d  cloud.google.com
    [00:00:52.027,984] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0250:  82 18 2a 2e 63 72 6f 77 64 73 6f 75 72 63 65 2e  ..*.crowdsource.
    [00:00:52.045,471] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0260:  67 6f 6f 67 6c 65 2e 63 6f 6d 82 18 2a 2e 64 61  google.com..*.da
    [00:00:52.062,927] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0270:  74 61 63 6f 6d 70 75 74 65 2e 67 6f 6f 67 6c 65  tacompute.google
    [00:00:52.080,383] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0280:  2e 63 6f 6d 82 0b 2a 2e 67 6f 6f 67 6c 65 2e 63  .com..*.google.c
    [00:00:52.097,869] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0290:  61 82 0b 2a 2e 67 6f 6f 67 6c 65 2e 63 6c 82 0e  a..*.google.cl..
    [00:00:52.115,325] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 02a0:  2a 2e 67 6f 6f 67 6c 65 2e 63 6f 2e 69 6e 82 0e  *.google.co.in..
    [00:00:52.132,812] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 02b0:  2a 2e 67 6f 6f 67 6c 65 2e 63 6f 2e 6a 70 82 0e  *.google.co.jp..
    [00:00:52.150,268] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 02c0:  2a 2e 67 6f 6f 67 6c 65 2e 63 6f 2e 75 6b 82 0f  *.google.co.uk..
    [00:00:52.167,755] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 02d0:  2a 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 2e 61 72 82  *.google.com.ar.
    [00:00:52.185,241] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 02e0:  0f 2a 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 2e 61 75  .*.google.com.au
    [00:00:52.202,697] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 02f0:  82 0f 2a 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 2e 62  ..*.google.com.b
    [00:00:52.220,184] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0300:  72 82 0f 2a 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 2e  r..*.google.com.
    [00:00:52.237,640] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0310:  63 6f 82 0f 2a 2e 67 6f 6f 67 6c 65 2e 63 6f 6d  co..*.google.com
    [00:00:52.255,126] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0320:  2e 6d 78 82 0f 2a 2e 67 6f 6f 67 6c 65 2e 63 6f  .mx..*.google.co
    [00:00:52.272,583] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0330:  6d 2e 74 72 82 0f 2a 2e 67 6f 6f 67 6c 65 2e 63  m.tr..*.google.c
    [00:00:52.290,069] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0340:  6f 6d 2e 76 6e 82 0b 2a 2e 67 6f 6f 67 6c 65 2e  om.vn..*.google.
    [00:00:52.307,525] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0350:  64 65 82 0b 2a 2e 67 6f 6f 67 6c 65 2e 65 73 82  de..*.google.es.
    [00:00:52.325,012] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0360:  0b 2a 2e 67 6f 6f 67 6c 65 2e 66 72 82 0b 2a 2e  .*.google.fr..*.
    [00:00:52.342,468] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0370:  67 6f 6f 67 6c 65 2e 68 75 82 0b 2a 2e 67 6f 6f  google.hu..*.goo
    [00:00:52.359,954] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0380:  67 6c 65 2e 69 74 82 0b 2a 2e 67 6f 6f 67 6c 65  gle.it..*.google
    [00:00:52.377,410] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0390:  2e 6e 6c 82 0b 2a 2e 67 6f 6f 67 6c 65 2e 70 6c  .nl..*.google.pl
    [00:00:52.394,897] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 03a0:  82 0b 2a 2e 67 6f 6f 67 6c 65 2e 70 74 82 0f 2a  ..*.google.pt..*
    [00:00:52.412,353] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 03b0:  2e 67 6f 6f 67 6c 65 61 70 69 73 2e 63 6e 82 11  .googleapis.cn..
    [00:00:52.429,840] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 03c0:  2a 2e 67 6f 6f 67 6c 65 76 69 64 65 6f 2e 63 6f  *.googlevideo.co
    [00:00:52.447,296] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 03d0:  6d 82 0c 2a 2e 67 73 74 61 74 69 63 2e 63 6e 82  m..*.gstatic.cn.
    [00:00:52.464,782] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 03e0:  10 2a 2e 67 73 74 61 74 69 63 2d 63 6e 2e 63 6f  .*.gstatic-cn.co
    [00:00:52.482,269] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 03f0:  6d 82 0f 67 6f 6f 67 6c 65 63 6e 61 70 70 73 2e  m..googlecnapps.
    [00:00:52.499,755] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0400:  63 6e 82 11 2a 2e 67 6f 6f 67 6c 65 63 6e 61 70  cn..*.googlecnap
    [00:00:52.517,211] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0410:  70 73 2e 63 6e 82 11 67 6f 6f 67 6c 65 61 70 70  ps.cn..googleapp
    [00:00:52.534,698] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0420:  73 2d 63 6e 2e 63 6f 6d 82 13 2a 2e 67 6f 6f 67  s-cn.com..*.goog
    [00:00:52.552,185] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0430:  6c 65 61 70 70 73 2d 63 6e 2e 63 6f 6d 82 0c 67  leapps-cn.com..g
    [00:00:52.569,671] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0440:  6b 65 63 6e 61 70 70 73 2e 63 6e 82 0e 2a 2e 67  kecnapps.cn..*.g
    [00:00:52.587,127] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0450:  6b 65 63 6e 61 70 70 73 2e 63 6e 82 12 67 6f 6f  kecnapps.cn..goo
    [00:00:52.604,614] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0460:  67 6c 65 64 6f 77 6e 6c 6f 61 64 73 2e 63 6e 82  gledownloads.cn.
    [00:00:52.622,100] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0470:  14 2a 2e 67 6f 6f 67 6c 65 64 6f 77 6e 6c 6f 61  .*.googledownloa
    [00:00:52.639,587] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0480:  64 73 2e 63 6e 82 10 72 65 63 61 70 74 63 68 61  ds.cn..recaptcha
    [00:00:52.657,043] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0490:  2e 6e 65 74 2e 63 6e 82 12 2a 2e 72 65 63 61 70  .net.cn..*.recap
    [00:00:52.674,530] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 04a0:  74 63 68 61 2e 6e 65 74 2e 63 6e 82 10 72 65 63  tcha.net.cn..rec
    [00:00:52.691,986] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 04b0:  61 70 74 63 68 61 2d 63 6e 2e 6e 65 74 82 12 2a  aptcha-cn.net..*
    [00:00:52.709,472] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 04c0:  2e 72 65 63 61 70 74 63 68 61 2d 63 6e 2e 6e 65  .recaptcha-cn.ne
    [00:00:52.726,959] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 04d0:  74 82 0b 77 69 64 65 76 69 6e 65 2e 63 6e 82 0d  t..widevine.cn..
    [00:00:52.744,415] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 04e0:  2a 2e 77 69 64 65 76 69 6e 65 2e 63 6e 82 11 61  *.widevine.cn..a
    [00:00:52.761,901] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 04f0:  6d 70 70 72 6f 6a 65 63 74 2e 6f 72 67 2e 63 6e  mpproject.org.cn
    [00:00:52.779,357] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0500:  82 13 2a 2e 61 6d 70 70 72 6f 6a 65 63 74 2e 6f  ..*.ampproject.o
    [00:00:52.796,844] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0510:  72 67 2e 63 6e 82 11 61 6d 70 70 72 6f 6a 65 63  rg.cn..ampprojec
    [00:00:52.814,331] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0520:  74 2e 6e 65 74 2e 63 6e 82 13 2a 2e 61 6d 70 70  t.net.cn..*.ampp
    [00:00:52.831,817] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0530:  72 6f 6a 65 63 74 2e 6e 65 74 2e 63 6e 82 17 67  roject.net.cn..g
    [00:00:52.849,273] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0540:  6f 6f 67 6c 65 2d 61 6e 61 6c 79 74 69 63 73 2d  oogle-analytics-
    [00:00:52.866,760] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0550:  63 6e 2e 63 6f 6d 82 19 2a 2e 67 6f 6f 67 6c 65  cn.com..*.google
    [00:00:52.884,246] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0560:  2d 61 6e 61 6c 79 74 69 63 73 2d 63 6e 2e 63 6f  -analytics-cn.co
    [00:00:52.901,733] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0570:  6d 82 17 67 6f 6f 67 6c 65 61 64 73 65 72 76 69  m..googleadservi
    [00:00:52.919,189] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0580:  63 65 73 2d 63 6e 2e 63 6f 6d 82 19 2a 2e 67 6f  ces-cn.com..*.go
    [00:00:52.936,676] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0590:  6f 67 6c 65 61 64 73 65 72 76 69 63 65 73 2d 63  ogleadservices-c
    [00:00:52.954,132] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 05a0:  6e 2e 63 6f 6d 82 11 67 6f 6f 67 6c 65 76 61 64  n.com..googlevad
    [00:00:52.971,618] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 05b0:  73 2d 63 6e 2e 63 6f 6d 82 13 2a 2e 67 6f 6f 67  s-cn.com..*.goog
    [00:00:52.989,105] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 05c0:  6c 65 76 61 64 73 2d 63 6e 2e 63 6f 6d 82 11 67  levads-cn.com..g
    [00:00:53.006,561] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 05d0:  6f 6f 67 6c 65 61 70 69 73 2d 63 6e 2e 63 6f 6d  oogleapis-cn.com
    [00:00:53.024,047] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 05e0:  82 13 2a 2e 67 6f 6f 67 6c 65 61 70 69 73 2d 63  ..*.googleapis-c
    [00:00:53.041,534] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 05f0:  6e 2e 63 6f 6d 82 15 67 6f 6f 67 6c 65 6f 70 74  n.com..googleopt
    [00:00:53.058,990] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0600:  69 6d 69 7a 65 2d 63 6e 2e 63 6f 6d 82 17 2a 2e  imize-cn.com..*.
    [00:00:53.076,477] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0610:  67 6f 6f 67 6c 65 6f 70 74 69 6d 69 7a 65 2d 63  googleoptimize-c
    [00:00:53.093,933] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0620:  6e 2e 63 6f 6d 82 12 64 6f 75 62 6c 65 63 6c 69  n.com..doublecli
    [00:00:53.111,419] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0630:  63 6b 2d 63 6e 2e 6e 65 74 82 14 2a 2e 64 6f 75  ck-cn.net..*.dou
    [00:00:53.128,875] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0640:  62 6c 65 63 6c 69 63 6b 2d 63 6e 2e 6e 65 74 82  bleclick-cn.net.
    [00:00:53.146,331] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0650:  18 2a 2e 66 6c 73 2e 64 6f 75 62 6c 65 63 6c 69  .*.fls.doublecli
    [00:00:53.163,818] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0660:  63 6b 2d 63 6e 2e 6e 65 74 82 16 2a 2e 67 2e 64  ck-cn.net..*.g.d
    [00:00:53.181,304] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0670:  6f 75 62 6c 65 63 6c 69 63 6b 2d 63 6e 2e 6e 65  oubleclick-cn.ne
    [00:00:53.198,760] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0680:  74 82 0e 64 6f 75 62 6c 65 63 6c 69 63 6b 2e 63  t..doubleclick.c
    [00:00:53.216,217] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0690:  6e 82 10 2a 2e 64 6f 75 62 6c 65 63 6c 69 63 6b  n..*.doubleclick
    [00:00:53.233,703] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 06a0:  2e 63 6e 82 14 2a 2e 66 6c 73 2e 64 6f 75 62 6c  .cn..*.fls.doubl
    [00:00:53.251,159] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 06b0:  65 63 6c 69 63 6b 2e 63 6e 82 12 2a 2e 67 2e 64  eclick.cn..*.g.d
    [00:00:53.268,615] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 06c0:  6f 75 62 6c 65 63 6c 69 63 6b 2e 63 6e 82 11 64  oubleclick.cn..d
    [00:00:53.286,102] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 06d0:  61 72 74 73 65 61 72 63 68 2d 63 6e 2e 6e 65 74  artsearch-cn.net
    [00:00:53.303,558] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 06e0:  82 13 2a 2e 64 61 72 74 73 65 61 72 63 68 2d 63  ..*.dartsearch-c
    [00:00:53.321,044] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 06f0:  6e 2e 6e 65 74 82 1d 67 6f 6f 67 6c 65 74 72 61  n.net..googletra
    [00:00:53.338,500] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0700:  76 65 6c 61 64 73 65 72 76 69 63 65 73 2d 63 6e  veladservices-cn
    [00:00:53.355,987] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0710:  2e 63 6f 6d 82 1f 2a 2e 67 6f 6f 67 6c 65 74 72  .com..*.googletr
    [00:00:53.373,443] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0720:  61 76 65 6c 61 64 73 65 72 76 69 63 65 73 2d 63  aveladservices-c
    [00:00:53.390,930] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0730:  6e 2e 63 6f 6d 82 18 67 6f 6f 67 6c 65 74 61 67  n.com..googletag
    [00:00:53.408,416] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0740:  73 65 72 76 69 63 65 73 2d 63 6e 2e 63 6f 6d 82  services-cn.com.
    [00:00:53.425,872] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0750:  1a 2a 2e 67 6f 6f 67 6c 65 74 61 67 73 65 72 76  .*.googletagserv
    [00:00:53.443,359] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0760:  69 63 65 73 2d 63 6e 2e 63 6f 6d 82 17 67 6f 6f  ices-cn.com..goo
    [00:00:53.460,845] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0770:  67 6c 65 74 61 67 6d 61 6e 61 67 65 72 2d 63 6e  gletagmanager-cn
    [00:00:53.478,332] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0780:  2e 63 6f 6d 82 19 2a 2e 67 6f 6f 67 6c 65 74 61  .com..*.googleta
    [00:00:53.495,788] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0790:  67 6d 61 6e 61 67 65 72 2d 63 6e 2e 63 6f 6d 82  gmanager-cn.com.
    [00:00:53.513,275] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 07a0:  18 67 6f 6f 67 6c 65 73 79 6e 64 69 63 61 74 69  .googlesyndicati
    [00:00:53.530,761] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 07b0:  6f 6e 2d 63 6e 2e 63 6f 6d 82 1a 2a 2e 67 6f 6f  on-cn.com..*.goo
    [00:00:53.548,248] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 07c0:  67 6c 65 73 79 6e 64 69 63 61 74 69 6f 6e 2d 63  glesyndication-c
    [00:00:53.565,704] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 07d0:  6e 2e 63 6f 6d 82 24 2a 2e 73 61 66 65 66 72 61  n.com.$*.safefra
    [00:00:53.583,190] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 07e0:  6d 65 2e 67 6f 6f 67 6c 65 73 79 6e 64 69 63 61  me.googlesyndica
    [00:00:53.600,677] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 07f0:  74 69 6f 6e 2d 63 6e 2e 63 6f 6d 82 16 61 70 70  tion-cn.com..app
    [00:00:53.618,133] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0800:  2d 6d 65 61 73 75 72 65 6d 65 6e 74 2d 63 6e 2e  -measurement-cn.
    [00:00:53.635,620] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0810:  63 6f 6d 82 18 2a 2e 61 70 70 2d 6d 65 61 73 75  com..*.app-measu
    [00:00:53.653,106] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0820:  72 65 6d 65 6e 74 2d 63 6e 2e 63 6f 6d 82 0b 67  rement-cn.com..g
    [00:00:53.670,593] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0830:  76 74 31 2d 63 6e 2e 63 6f 6d 82 0d 2a 2e 67 76  vt1-cn.com..*.gv
    [00:00:53.688,049] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0840:  74 31 2d 63 6e 2e 63 6f 6d 82 0b 67 76 74 32 2d  t1-cn.com..gvt2-
    [00:00:53.705,535] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0850:  63 6e 2e 63 6f 6d 82 0d 2a 2e 67 76 74 32 2d 63  cn.com..*.gvt2-c
    [00:00:53.723,022] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0860:  6e 2e 63 6f 6d 82 0b 32 6d 64 6e 2d 63 6e 2e 6e  n.com..2mdn-cn.n
    [00:00:53.740,509] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0870:  65 74 82 0d 2a 2e 32 6d 64 6e 2d 63 6e 2e 6e 65  et..*.2mdn-cn.ne
    [00:00:53.757,995] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0880:  74 82 14 67 6f 6f 67 6c 65 66 6c 69 67 68 74 73  t..googleflights
    [00:00:53.775,451] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0890:  2d 63 6e 2e 6e 65 74 82 16 2a 2e 67 6f 6f 67 6c  -cn.net..*.googl
    [00:00:53.792,938] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 08a0:  65 66 6c 69 67 68 74 73 2d 63 6e 2e 6e 65 74 82  eflights-cn.net.
    [00:00:53.810,394] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 08b0:  0c 61 64 6d 6f 62 2d 63 6e 2e 63 6f 6d 82 0e 2a  .admob-cn.com..*
    [00:00:53.827,880] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 08c0:  2e 61 64 6d 6f 62 2d 63 6e 2e 63 6f 6d 82 14 67  .admob-cn.com..g
    [00:00:53.845,367] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 08d0:  6f 6f 67 6c 65 73 61 6e 64 62 6f 78 2d 63 6e 2e  ooglesandbox-cn.
    [00:00:53.862,823] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 08e0:  63 6f 6d 82 16 2a 2e 67 6f 6f 67 6c 65 73 61 6e  com..*.googlesan
    [00:00:53.880,310] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 08f0:  64 62 6f 78 2d 63 6e 2e 63 6f 6d 82 1e 2a 2e 73  dbox-cn.com..*.s
    [00:00:53.897,766] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0900:  61 66 65 6e 75 70 2e 67 6f 6f 67 6c 65 73 61 6e  afenup.googlesan
    [00:00:53.915,252] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0910:  64 62 6f 78 2d 63 6e 2e 63 6f 6d 82 0d 2a 2e 67  dbox-cn.com..*.g
    [00:00:53.932,708] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0920:  73 74 61 74 69 63 2e 63 6f 6d 82 14 2a 2e 6d 65  static.com..*.me
    [00:00:53.950,195] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0930:  74 72 69 63 2e 67 73 74 61 74 69 63 2e 63 6f 6d  tric.gstatic.com
    [00:00:53.967,681] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0940:  82 0a 2a 2e 67 76 74 31 2e 63 6f 6d 82 11 2a 2e  ..*.gvt1.com..*.
    [00:00:53.985,137] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0950:  67 63 70 63 64 6e 2e 67 76 74 31 2e 63 6f 6d 82  gcpcdn.gvt1.com.
    [00:00:54.002,624] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0960:  0a 2a 2e 67 76 74 32 2e 63 6f 6d 82 0e 2a 2e 67  .*.gvt2.com..*.g
    [00:00:54.020,080] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0970:  63 70 2e 67 76 74 32 2e 63 6f 6d 82 10 2a 2e 75  cp.gvt2.com..*.u
    [00:00:54.037,567] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0980:  72 6c 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 82 16 2a  rl.google.com..*
    [00:00:54.055,053] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0990:  2e 79 6f 75 74 75 62 65 2d 6e 6f 63 6f 6f 6b 69  .youtube-nocooki
    [00:00:54.072,509] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 09a0:  65 2e 63 6f 6d 82 0b 2a 2e 79 74 69 6d 67 2e 63  e.com..*.ytimg.c
    [00:00:54.089,996] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 09b0:  6f 6d 82 0a 61 69 2e 61 6e 64 72 6f 69 64 82 0b  om..ai.android..
    [00:00:54.107,482] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 09c0:  61 6e 64 72 6f 69 64 2e 63 6f 6d 82 0d 2a 2e 61  android.com..*.a
    [00:00:54.124,969] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 09d0:  6e 64 72 6f 69 64 2e 63 6f 6d 82 13 2a 2e 66 6c  ndroid.com..*.fl
    [00:00:54.142,425] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 09e0:  61 73 68 2e 61 6e 64 72 6f 69 64 2e 63 6f 6d 82  ash.android.com.
    [00:00:54.159,912] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 09f0:  04 67 2e 63 6e 82 06 2a 2e 67 2e 63 6e 82 04 67  .g.cn..*.g.cn..g
    [00:00:54.177,398] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0a00:  2e 63 6f 82 06 2a 2e 67 2e 63 6f 82 06 67 6f 6f  .co..*.g.co..goo
    [00:00:54.194,885] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0a10:  2e 67 6c 82 0a 77 77 77 2e 67 6f 6f 2e 67 6c 82  .gl..www.goo.gl.
    [00:00:54.212,341] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0a20:  14 67 6f 6f 67 6c 65 2d 61 6e 61 6c 79 74 69 63  .google-analytic
    [00:00:54.229,827] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0a30:  73 2e 63 6f 6d 82 16 2a 2e 67 6f 6f 67 6c 65 2d  s.com..*.google-
    [00:00:54.247,314] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0a40:  61 6e 61 6c 79 74 69 63 73 2e 63 6f 6d 82 0a 67  analytics.com..g
    [00:00:54.264,770] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0a50:  6f 6f 67 6c 65 2e 63 6f 6d 82 12 67 6f 6f 67 6c  oogle.com..googl
    [00:00:54.282,257] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0a60:  65 63 6f 6d 6d 65 72 63 65 2e 63 6f 6d 82 14 2a  ecommerce.com..*
    [00:00:54.299,743] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0a70:  2e 67 6f 6f 67 6c 65 63 6f 6d 6d 65 72 63 65 2e  .googlecommerce.
    [00:00:54.317,230] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0a80:  63 6f 6d 82 08 67 67 70 68 74 2e 63 6e 82 0a 2a  com..ggpht.cn..*
    [00:00:54.334,716] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0a90:  2e 67 67 70 68 74 2e 63 6e 82 0a 75 72 63 68 69  .ggpht.cn..urchi
    [00:00:54.352,203] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0aa0:  6e 2e 63 6f 6d 82 0c 2a 2e 75 72 63 68 69 6e 2e  n.com..*.urchin.
    [00:00:54.369,659] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ab0:  63 6f 6d 82 08 79 6f 75 74 75 2e 62 65 82 0b 79  com..youtu.be..y
    [00:00:54.387,145] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ac0:  6f 75 74 75 62 65 2e 63 6f 6d 82 0d 2a 2e 79 6f  outube.com..*.yo
    [00:00:54.404,632] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ad0:  75 74 75 62 65 2e 63 6f 6d 82 11 6d 75 73 69 63  utube.com..music
    [00:00:54.422,119] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ae0:  2e 79 6f 75 74 75 62 65 2e 63 6f 6d 82 13 2a 2e  .youtube.com..*.
    [00:00:54.439,575] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0af0:  6d 75 73 69 63 2e 79 6f 75 74 75 62 65 2e 63 6f  music.youtube.co
    [00:00:54.457,061] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0b00:  6d 82 14 79 6f 75 74 75 62 65 65 64 75 63 61 74  m..youtubeeducat
    [00:00:54.474,548] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0b10:  69 6f 6e 2e 63 6f 6d 82 16 2a 2e 79 6f 75 74 75  ion.com..*.youtu
    [00:00:54.492,004] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0b20:  62 65 65 64 75 63 61 74 69 6f 6e 2e 63 6f 6d 82  beeducation.com.
    [00:00:54.509,490] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0b30:  0f 79 6f 75 74 75 62 65 6b 69 64 73 2e 63 6f 6d  .youtubekids.com
    [00:00:54.526,977] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0b40:  82 11 2a 2e 79 6f 75 74 75 62 65 6b 69 64 73 2e  ..*.youtubekids.
    [00:00:54.544,464] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0b50:  63 6f 6d 82 05 79 74 2e 62 65 82 07 2a 2e 79 74  com..yt.be..*.yt
    [00:00:54.561,920] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0b60:  2e 62 65 82 1a 61 6e 64 72 6f 69 64 2e 63 6c 69  .be..android.cli
    [00:00:54.579,406] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0b70:  65 6e 74 73 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 82  ents.google.com.
    [00:00:54.596,862] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0b80:  13 2a 2e 61 6e 64 72 6f 69 64 2e 67 6f 6f 67 6c  .*.android.googl
    [00:00:54.614,349] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0b90:  65 2e 63 6e 82 12 2a 2e 63 68 72 6f 6d 65 2e 67  e.cn..*.chrome.g
    [00:00:54.631,835] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ba0:  6f 6f 67 6c 65 2e 63 6e 82 16 2a 2e 64 65 76 65  oogle.cn..*.deve
    [00:00:54.649,291] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0bb0:  6c 6f 70 65 72 73 2e 67 6f 6f 67 6c 65 2e 63 6e  lopers.google.cn
    [00:00:54.666,778] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0bc0:  82 15 2a 2e 61 69 73 74 75 64 69 6f 2e 67 6f 6f  ..*.aistudio.goo
    [00:00:54.684,265] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0bd0:  67 6c 65 2e 63 6f 6d 30 13 06 03 55 1d 20 04 0c  gle.com0...U. ..
    [00:00:54.701,751] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0be0:  30 0a 30 08 06 06 67 81 0c 01 02 01 30 36 06 03  0.0...g.....06..
    [00:00:54.719,207] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0bf0:  55 1d 1f 04 2f 30 2d 30 2b a0 29 a0 27 86 25 68  U.../0-0+.).'.%h
    [00:00:54.736,694] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0c00:  74 74 70 3a 2f 2f 63 2e 70 6b 69 2e 67 6f 6f 67  ttp://c.pki.goog
    [00:00:54.754,150] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0c10:  2f 77 72 32 2f 6f 42 46 59 59 61 68 7a 67 56 49  /wr2/oBFYYahzgVI
    [00:00:54.771,636] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0c20:  2e 63 72 6c 30 82 01 04 06 0a 2b 06 01 04 01 d6  .crl0.....+.....
    [00:00:54.789,123] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0c30:  79 02 04 02 04 81 f5 04 81 f2 00 f0 00 76 00 12  y............v..
    [00:00:54.806,610] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0c40:  f1 4e 34 bd 53 72 4c 84 06 19 c3 8f 3f 7a 13 f8  .N4.SrL.....?z..
    [00:00:54.824,096] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0c50:  e7 b5 62 87 88 9c 6d 30 05 84 eb e5 86 26 3a 00  ..b...m0.....&:.
    [00:00:54.841,583] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0c60:  00 01 96 c3 e0 5c f7 00 00 04 03 00 47 30 45 02  .....\......G0E.
    [00:00:54.859,039] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0c70:  20 1c e0 9b 52 a9 80 66 96 5d 3c ac 95 5f 89 00   ...R..f.]<.._..
    [00:00:54.876,525] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0c80:  56 ee ff 83 af d8 57 81 cb e1 c4 4d 54 bb 98 49  V.....W....MT..I
    [00:00:54.894,012] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0c90:  61 02 21 00 e9 6c 7d ed 74 7d 27 7d 77 1a 50 49  a.!..l}.t}'}w.PI
    [00:00:54.911,499] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ca0:  71 9a be fd 48 96 d2 26 08 d1 cb 0a 61 a9 d8 19  q...H..&....a...
    [00:00:54.928,985] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0cb0:  a9 f4 1b 3c 00 76 00 cc fb 0f 6a 85 71 09 65 fe  ...<.v....j.q.e.
    [00:00:54.946,472] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0cc0:  95 9b 53 ce e9 b2 7c 22 e9 85 5c 0d 97 8d b6 a9  ..S...|"..\.....
    [00:00:54.963,958] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0cd0:  7e 54 c0 fe 4c 0d b0 00 00 01 96 c3 e0 61 73 00  ~T..L........as.
    [00:00:54.981,445] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ce0:  00 04 03 00 47 30 45 02 21 00 a5 49 83 b5 26 2f  ....G0E.!..I..&/
    [00:00:54.998,931] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0cf0:  0b db a4 e4 3a eb 5b 00 de 0c 11 33 0d 3a 18 5a  ....:.[....3.:.Z
    [00:00:55.016,418] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0d00:  04 d9 d9 3e 3b 09 6e f6 f5 eb 02 20 27 dc ba ac  ...>;.n.... '...
    [00:00:55.033,905] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0d10:  81 f1 f9 aa ce d2 ac eb 49 d4 dc 0a 69 8a 27 73  ........I...i.'s
    [00:00:55.051,391] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0d20:  92 f0 cd b3 bf 68 08 7b 87 cc 73 19 30 0d 06 09  .....h.{..s.0...
    [00:00:55.068,878] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0d30:  2a 86 48 86 f7 0d 01 01 0b 05 00 03 82 01 01 00  *.H.............
    [00:00:55.086,334] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0d40:  26 13 af 72 da b9 21 65 71 d4 c0 0f 3e 95 5f 24  &..r..!eq...>._$
    [00:00:55.103,820] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0d50:  ac 98 6f 3b 55 ac 27 0e 1b b5 a1 21 6e 77 ba dc  ..o;U.'....!nw..
    [00:00:55.121,307] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0d60:  f6 73 1a 2c e9 93 62 bf 99 6f e1 3c 66 a6 da 60  .s.,..b..o.<f..`
    [00:00:55.138,793] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0d70:  97 fd c9 a1 1d 8c 3e ab 60 c1 1f 87 09 ea 9d 33  ......>.`......3
    [00:00:55.156,250] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0d80:  54 03 69 39 76 1b db 91 d1 d7 97 1a 36 3a 6c 9f  T.i9v.......6:l.
    [00:00:55.173,736] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0d90:  01 dd 47 59 5c 47 ee 6f 12 b3 bb bd 48 da b9 4e  ..GY\G.o....H..N
    [00:00:55.191,223] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0da0:  85 6c 62 54 a1 5e b9 2f 64 21 0b c8 30 24 1f e1  .lbT.^./d!..0$..
    [00:00:55.208,679] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0db0:  b1 8e 0e 9f 5f d8 ed e3 72 e1 27 81 33 7f 68 ef  ...._...r.'.3.h.
    [00:00:55.226,165] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0dc0:  6b 81 de cf 5c cd 87 7f 68 b5 af a3 7f 4a 4c 1e  k...\...h....JL.
    [00:00:55.243,652] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0dd0:  61 74 a9 7c 35 f9 e0 35 b3 9e 91 b4 86 b1 f4 45  at.|5..5.......E
    [00:00:55.261,108] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0de0:  4f 27 9b 5f 16 49 fe 59 e7 ac bb c3 e7 1e 73 3b  O'._.I.Y......s;
    [00:00:55.278,594] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0df0:  af 92 17 46 15 f7 4e 44 f4 94 a8 30 f5 c1 dd f8  ...F..ND...0....
    [00:00:55.296,081] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0e00:  62 29 26 1e a7 7f f6 d2 8c 27 22 10 40 0d ea 21  b)&......'".@..!
    [00:00:55.313,568] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0e10:  4b f2 f1 82 2d e3 51 0d 45 a8 df 38 52 56 ba b2  K...-.Q.E..8RV..
    [00:00:55.331,054] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0e20:  57 a5 8f 66 c4 08 4f 81 67 08 27 5e 4a 8e 2b 65  W..f..O.g.'^J.+e
    [00:00:55.348,541] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0e30:  90 0a d4 70 e3 34 56 b9 6f 4e 43 4f 3c 5b 89 05  ...p.4V.oNCO<[..
    [00:00:55.366,027] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0e40:  00 05 0f 30 82 05 0b 30 82 02 f3 a0 03 02 01 02  ...0...0........
    [00:00:55.383,483] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0e50:  02 10 7f f0 05 a0 7c 4c de d1 00 ad 9d 66 a5 10  ......|L.....f..
    [00:00:55.401,000] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0e60:  7b 98 30 0d 06 09 2a 86 48 86 f7 0d 01 01 0b 05  {.0...*.H.......
    [00:00:55.418,457] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0e70:  00 30 47 31 0b 30 09 06 03 55 04 06 13 02 55 53  .0G1.0...U....US
    [00:00:55.435,943] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0e80:  31 22 30 20 06 03 55 04 0a 13 19 47 6f 6f 67 6c  1"0 ..U....Googl
    [00:00:55.453,430] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0e90:  65 20 54 72 75 73 74 20 53 65 72 76 69 63 65 73  e Trust Services
    [00:00:55.470,886] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ea0:  20 4c 4c 43 31 14 30 12 06 03 55 04 03 13 0b 47   LLC1.0...U....G
    [00:00:55.488,372] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0eb0:  54 53 20 52 6f 6f 74 20 52 31 30 1e 17 0d 32 33  TS Root R10...23
    [00:00:55.505,859] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ec0:  31 32 31 33 30 39 30 30 30 30 5a 17 0d 32 39 30  1213090000Z..290
    [00:00:55.523,315] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ed0:  32 32 30 31 34 30 30 30 30 5a 30 3b 31 0b 30 09  220140000Z0;1.0.
    [00:00:55.540,802] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ee0:  06 03 55 04 06 13 02 55 53 31 1e 30 1c 06 03 55  ..U....US1.0...U
    [00:00:55.558,288] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ef0:  04 0a 13 15 47 6f 6f 67 6c 65 20 54 72 75 73 74  ....Google Trust
    [00:00:55.575,775] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0f00:  20 53 65 72 76 69 63 65 73 31 0c 30 0a 06 03 55   Services1.0...U
    [00:00:55.593,261] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0f10:  04 03 13 03 57 52 32 30 82 01 22 30 0d 06 09 2a  ....WR20.."0...*
    [00:00:55.610,748] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0f20:  86 48 86 f7 0d 01 01 01 05 00 03 82 01 0f 00 30  .H.............0
    [00:00:55.628,234] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0f30:  82 01 0a 02 82 01 01 00 a9 ff 9c 7f 45 1e 70 a8  ............E.p.
    [00:00:55.645,690] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0f40:  53 9f ca d9 e5 0d de 46 57 57 7d bc 8f 9a 5a ac  S......FWW}...Z.
    [00:00:55.663,177] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0f50:  46 f1 84 9a bb 91 db c9 fb 2f 01 fb 92 09 00 16  F......../......
    [00:00:55.680,664] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0f60:  5e a0 1c f8 c1 ab f9 78 2f 4a cc d8 85 a2 d8 59  ^......x/J.....Y
    [00:00:55.698,150] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0f70:  3c 0e d3 18 fb b1 f5 24 0d 26 ee b6 5b 64 76 7c  <......$.&..[dv|
    [00:00:55.715,606] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0f80:  14 c7 2f 7a ce a8 4c b7 f4 d9 08 fc df 87 23 35  ../z..L.......#5
    [00:00:55.733,062] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0f90:  20 a8 e2 69 e2 8c 4e 3f b1 59 fa 60 a2 1e b3 c9   ..i..N?.Y.`....
    [00:00:55.750,549] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0fa0:  20 53 19 82 ca 36 53 6d 60 4d e9 00 91 fc 76 8d   S...6Sm`M....v.
    [00:00:55.768,035] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0fb0:  5c 08 0f 0a c2 dc f1 73 6b c5 13 6e 0a 4f 7a c2  \......sk..n.Oz.
    [00:00:55.785,522] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0fc0:  f2 02 1c 2e b4 63 83 da 31 f6 2d 75 30 b2 fb ab  .....c..1.-u0...
    [00:00:55.802,978] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0fd0:  c2 6e db a9 c0 0e b9 f9 67 d4 c3 25 57 74 eb 05  .n......g..%Wt..
    [00:00:55.820,465] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0fe0:  b4 e9 8e b5 de 28 cd cc 7a 14 e4 71 03 cb 4d 61  .....(..z..q..Ma
    [00:00:55.837,951] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4073: 0ff0:  2e 61 57 c5 19 a9 0b 98 84 1a e8 79 29 d9 b2 8d  .aW........y)...
    [00:00:55.855,194] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3239: handshake message: msglen = 6326, type = 11, hslen = 6326
    [00:00:55.869,232] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3328: sole handshake fragment: 6326, 0..6326 of 6326
    [00:00:55.883,178] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: dumping 'reassembled record' (6331 bytes)
    [00:00:55.897,949] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0000:  16 03 03 18 b6 0b 00 18 b2 00 18 af 00 0e 31 30  ..............10
    [00:00:55.915,435] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0010:  82 0e 2d 30 82 0d 15 a0 03 02 01 02 02 10 66 86  ..-0..........f.
    [00:00:55.932,922] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0020:  f0 7e 70 d7 df c2 09 4c b8 5a 34 d6 e3 d8 30 0d  .~p....L.Z4...0.
    [00:00:55.950,408] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0030:  06 09 2a 86 48 86 f7 0d 01 01 0b 05 00 30 3b 31  ..*.H........0;1
    [00:00:55.967,895] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0040:  0b 30 09 06 03 55 04 06 13 02 55 53 31 1e 30 1c  .0...U....US1.0.
    [00:00:55.985,382] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0050:  06 03 55 04 0a 13 15 47 6f 6f 67 6c 65 20 54 72  ..U....Google Tr
    [00:00:56.002,868] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0060:  75 73 74 20 53 65 72 76 69 63 65 73 31 0c 30 0a  ust Services1.0.
    [00:00:56.020,355] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0070:  06 03 55 04 03 13 03 57 52 32 30 1e 17 0d 32 35  ..U....WR20...25
    [00:00:56.037,841] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0080:  30 35 31 32 30 38 34 32 35 38 5a 17 0d 32 35 30  0512084258Z..250
    [00:00:56.055,328] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0090:  38 30 34 30 38 34 32 35 37 5a 30 17 31 15 30 13  804084257Z0.1.0.
    [00:00:56.072,814] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 00a0:  06 03 55 04 03 0c 0c 2a 2e 67 6f 6f 67 6c 65 2e  ..U....*.google.
    [00:00:56.090,301] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 00b0:  63 6f 6d 30 59 30 13 06 07 2a 86 48 ce 3d 02 01  com0Y0...*.H.=..
    [00:00:56.107,788] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 00c0:  06 08 2a 86 48 ce 3d 03 01 07 03 42 00 04 0a a6  ..*.H.=....B....
    [00:00:56.125,274] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 00d0:  db af e0 06 99 b8 6f 52 89 c4 25 83 94 32 5c 27  ......oR..%..2\'
    [00:00:56.142,730] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 00e0:  b9 94 42 1d 87 49 f5 1d c7 c8 2e 2f 3b 23 d2 df  ..B..I...../;#..
    [00:00:56.160,217] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 00f0:  e9 8c 33 79 94 86 0e 25 80 b3 ae 8e 72 22 5d ba  ..3y...%....r"].
    [00:00:56.177,673] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0100:  ef ce 7c 6f 30 55 e7 6c 1d 4b 02 70 fa 9d a3 82  ..|o0U.l.K.p....
    [00:00:56.195,159] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0110:  0c 1a 30 82 0c 16 30 0e 06 03 55 1d 0f 01 01 ff  ..0...0...U.....
    [00:00:56.212,646] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0120:  04 04 03 02 07 80 30 13 06 03 55 1d 25 04 0c 30  ......0...U.%..0
    [00:00:56.230,133] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0130:  0a 06 08 2b 06 01 05 05 07 03 01 30 0c 06 03 55  ...+.......0...U
    [00:00:56.247,619] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0140:  1d 13 01 01 ff 04 02 30 00 30 1d 06 03 55 1d 0e  .......0.0...U..
    [00:00:56.265,106] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0150:  04 16 04 14 ad 60 2e a1 68 d6 19 19 03 fa a3 0e  .....`..h.......
    [00:00:56.282,592] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0160:  ad d6 24 d8 fa 28 88 3e 30 1f 06 03 55 1d 23 04  ..$..(.>0...U.#.
    [00:00:56.300,048] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0170:  18 30 16 80 14 de 1b 1e ed 79 15 d4 3e 37 24 c3  .0.......y..>7$.
    [00:00:56.317,535] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0180:  21 bb ec 34 39 6d 42 b2 30 30 58 06 08 2b 06 01  !..49mB.00X..+..
    [00:00:56.335,021] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0190:  05 05 07 01 01 04 4c 30 4a 30 21 06 08 2b 06 01  ......L0J0!..+..
    [00:00:56.352,508] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 01a0:  05 05 07 30 01 86 15 68 74 74 70 3a 2f 2f 6f 2e  ...0...http://o.
    [00:00:56.369,995] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 01b0:  70 6b 69 2e 67 6f 6f 67 2f 77 72 32 30 25 06 08  pki.goog/wr20%..
    [00:00:56.387,481] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 01c0:  2b 06 01 05 05 07 30 02 86 19 68 74 74 70 3a 2f  +.....0...http:/
    [00:00:56.404,968] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 01d0:  2f 69 2e 70 6b 69 2e 67 6f 6f 67 2f 77 72 32 2e  /i.pki.goog/wr2.
    [00:00:56.422,454] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 01e0:  63 72 74 30 82 09 f0 06 03 55 1d 11 04 82 09 e7  crt0.....U......
    [00:00:56.439,941] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 01f0:  30 82 09 e3 82 0c 2a 2e 67 6f 6f 67 6c 65 2e 63  0.....*.google.c
    [00:00:56.457,397] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0200:  6f 6d 82 16 2a 2e 61 70 70 65 6e 67 69 6e 65 2e  om..*.appengine.
    [00:00:56.474,884] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0210:  67 6f 6f 67 6c 65 2e 63 6f 6d 82 09 2a 2e 62 64  google.com..*.bd
    [00:00:56.492,370] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0220:  6e 2e 64 65 76 82 15 2a 2e 6f 72 69 67 69 6e 2d  n.dev..*.origin-
    [00:00:56.509,826] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0230:  74 65 73 74 2e 62 64 6e 2e 64 65 76 82 12 2a 2e  test.bdn.dev..*.
    [00:00:56.527,313] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0240:  63 6c 6f 75 64 2e 67 6f 6f 67 6c 65 2e 63 6f 6d  cloud.google.com
    [00:00:56.544,799] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0250:  82 18 2a 2e 63 72 6f 77 64 73 6f 75 72 63 65 2e  ..*.crowdsource.
    [00:00:56.562,286] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0260:  67 6f 6f 67 6c 65 2e 63 6f 6d 82 18 2a 2e 64 61  google.com..*.da
    [00:00:56.579,772] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0270:  74 61 63 6f 6d 70 75 74 65 2e 67 6f 6f 67 6c 65  tacompute.google
    [00:00:56.597,259] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0280:  2e 63 6f 6d 82 0b 2a 2e 67 6f 6f 67 6c 65 2e 63  .com..*.google.c
    [00:00:56.614,715] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0290:  61 82 0b 2a 2e 67 6f 6f 67 6c 65 2e 63 6c 82 0e  a..*.google.cl..
    [00:00:56.632,202] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 02a0:  2a 2e 67 6f 6f 67 6c 65 2e 63 6f 2e 69 6e 82 0e  *.google.co.in..
    [00:00:56.649,688] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 02b0:  2a 2e 67 6f 6f 67 6c 65 2e 63 6f 2e 6a 70 82 0e  *.google.co.jp..
    [00:00:56.667,175] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 02c0:  2a 2e 67 6f 6f 67 6c 65 2e 63 6f 2e 75 6b 82 0f  *.google.co.uk..
    [00:00:56.684,631] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 02d0:  2a 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 2e 61 72 82  *.google.com.ar.
    [00:00:56.702,117] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 02e0:  0f 2a 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 2e 61 75  .*.google.com.au
    [00:00:56.719,573] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 02f0:  82 0f 2a 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 2e 62  ..*.google.com.b
    [00:00:56.737,060] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0300:  72 82 0f 2a 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 2e  r..*.google.com.
    [00:00:56.754,547] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0310:  63 6f 82 0f 2a 2e 67 6f 6f 67 6c 65 2e 63 6f 6d  co..*.google.com
    [00:00:56.772,003] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0320:  2e 6d 78 82 0f 2a 2e 67 6f 6f 67 6c 65 2e 63 6f  .mx..*.google.co
    [00:00:56.789,489] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0330:  6d 2e 74 72 82 0f 2a 2e 67 6f 6f 67 6c 65 2e 63  m.tr..*.google.c
    [00:00:56.806,945] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0340:  6f 6d 2e 76 6e 82 0b 2a 2e 67 6f 6f 67 6c 65 2e  om.vn..*.google.
    [00:00:56.824,432] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0350:  64 65 82 0b 2a 2e 67 6f 6f 67 6c 65 2e 65 73 82  de..*.google.es.
    [00:00:56.841,918] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0360:  0b 2a 2e 67 6f 6f 67 6c 65 2e 66 72 82 0b 2a 2e  .*.google.fr..*.
    [00:00:56.859,405] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0370:  67 6f 6f 67 6c 65 2e 68 75 82 0b 2a 2e 67 6f 6f  google.hu..*.goo
    [00:00:56.876,861] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0380:  67 6c 65 2e 69 74 82 0b 2a 2e 67 6f 6f 67 6c 65  gle.it..*.google
    [00:00:56.894,348] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0390:  2e 6e 6c 82 0b 2a 2e 67 6f 6f 67 6c 65 2e 70 6c  .nl..*.google.pl
    [00:00:56.911,804] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 03a0:  82 0b 2a 2e 67 6f 6f 67 6c 65 2e 70 74 82 0f 2a  ..*.google.pt..*
    [00:00:56.929,290] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 03b0:  2e 67 6f 6f 67 6c 65 61 70 69 73 2e 63 6e 82 11  .googleapis.cn..
    [00:00:56.946,777] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 03c0:  2a 2e 67 6f 6f 67 6c 65 76 69 64 65 6f 2e 63 6f  *.googlevideo.co
    [00:00:56.964,233] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 03d0:  6d 82 0c 2a 2e 67 73 74 61 74 69 63 2e 63 6e 82  m..*.gstatic.cn.
    [00:00:56.981,719] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 03e0:  10 2a 2e 67 73 74 61 74 69 63 2d 63 6e 2e 63 6f  .*.gstatic-cn.co
    [00:00:56.999,206] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 03f0:  6d 82 0f 67 6f 6f 67 6c 65 63 6e 61 70 70 73 2e  m..googlecnapps.
    [00:00:57.016,693] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0400:  63 6e 82 11 2a 2e 67 6f 6f 67 6c 65 63 6e 61 70  cn..*.googlecnap
    [00:00:57.034,149] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0410:  70 73 2e 63 6e 82 11 67 6f 6f 67 6c 65 61 70 70  ps.cn..googleapp
    [00:00:57.051,635] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0420:  73 2d 63 6e 2e 63 6f 6d 82 13 2a 2e 67 6f 6f 67  s-cn.com..*.goog
    [00:00:57.069,122] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0430:  6c 65 61 70 70 73 2d 63 6e 2e 63 6f 6d 82 0c 67  leapps-cn.com..g
    [00:00:57.086,608] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0440:  6b 65 63 6e 61 70 70 73 2e 63 6e 82 0e 2a 2e 67  kecnapps.cn..*.g
    [00:00:57.104,095] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0450:  6b 65 63 6e 61 70 70 73 2e 63 6e 82 12 67 6f 6f  kecnapps.cn..goo
    [00:00:57.121,551] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0460:  67 6c 65 64 6f 77 6e 6c 6f 61 64 73 2e 63 6e 82  gledownloads.cn.
    [00:00:57.139,038] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0470:  14 2a 2e 67 6f 6f 67 6c 65 64 6f 77 6e 6c 6f 61  .*.googledownloa
    [00:00:57.156,524] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0480:  64 73 2e 63 6e 82 10 72 65 63 61 70 74 63 68 61  ds.cn..recaptcha
    [00:00:57.174,011] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0490:  2e 6e 65 74 2e 63 6e 82 12 2a 2e 72 65 63 61 70  .net.cn..*.recap
    [00:00:57.191,467] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 04a0:  74 63 68 61 2e 6e 65 74 2e 63 6e 82 10 72 65 63  tcha.net.cn..rec
    [00:00:57.208,953] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 04b0:  61 70 74 63 68 61 2d 63 6e 2e 6e 65 74 82 12 2a  aptcha-cn.net..*
    [00:00:57.226,440] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 04c0:  2e 72 65 63 61 70 74 63 68 61 2d 63 6e 2e 6e 65  .recaptcha-cn.ne
    [00:00:57.243,896] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 04d0:  74 82 0b 77 69 64 65 76 69 6e 65 2e 63 6e 82 0d  t..widevine.cn..
    [00:00:57.261,383] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 04e0:  2a 2e 77 69 64 65 76 69 6e 65 2e 63 6e 82 11 61  *.widevine.cn..a
    [00:00:57.278,839] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 04f0:  6d 70 70 72 6f 6a 65 63 74 2e 6f 72 67 2e 63 6e  mpproject.org.cn
    [00:00:57.296,325] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0500:  82 13 2a 2e 61 6d 70 70 72 6f 6a 65 63 74 2e 6f  ..*.ampproject.o
    [00:00:57.313,812] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0510:  72 67 2e 63 6e 82 11 61 6d 70 70 72 6f 6a 65 63  rg.cn..ampprojec
    [00:00:57.331,268] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0520:  74 2e 6e 65 74 2e 63 6e 82 13 2a 2e 61 6d 70 70  t.net.cn..*.ampp
    [00:00:57.348,754] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0530:  72 6f 6a 65 63 74 2e 6e 65 74 2e 63 6e 82 17 67  roject.net.cn..g
    [00:00:57.366,241] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0540:  6f 6f 67 6c 65 2d 61 6e 61 6c 79 74 69 63 73 2d  oogle-analytics-
    [00:00:57.383,728] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0550:  63 6e 2e 63 6f 6d 82 19 2a 2e 67 6f 6f 67 6c 65  cn.com..*.google
    [00:00:57.401,214] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0560:  2d 61 6e 61 6c 79 74 69 63 73 2d 63 6e 2e 63 6f  -analytics-cn.co
    [00:00:57.418,670] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0570:  6d 82 17 67 6f 6f 67 6c 65 61 64 73 65 72 76 69  m..googleadservi
    [00:00:57.436,157] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0580:  63 65 73 2d 63 6e 2e 63 6f 6d 82 19 2a 2e 67 6f  ces-cn.com..*.go
    [00:00:57.453,643] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0590:  6f 67 6c 65 61 64 73 65 72 76 69 63 65 73 2d 63  ogleadservices-c
    [00:00:57.471,099] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 05a0:  6e 2e 63 6f 6d 82 11 67 6f 6f 67 6c 65 76 61 64  n.com..googlevad
    [00:00:57.488,586] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 05b0:  73 2d 63 6e 2e 63 6f 6d 82 13 2a 2e 67 6f 6f 67  s-cn.com..*.goog
    [00:00:57.506,072] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 05c0:  6c 65 76 61 64 73 2d 63 6e 2e 63 6f 6d 82 11 67  levads-cn.com..g
    [00:00:57.523,559] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 05d0:  6f 6f 67 6c 65 61 70 69 73 2d 63 6e 2e 63 6f 6d  oogleapis-cn.com
    [00:00:57.541,015] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 05e0:  82 13 2a 2e 67 6f 6f 67 6c 65 61 70 69 73 2d 63  ..*.googleapis-c
    [00:00:57.558,502] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 05f0:  6e 2e 63 6f 6d 82 15 67 6f 6f 67 6c 65 6f 70 74  n.com..googleopt
    [00:00:57.575,988] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0600:  69 6d 69 7a 65 2d 63 6e 2e 63 6f 6d 82 17 2a 2e  imize-cn.com..*.
    [00:00:57.593,475] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0610:  67 6f 6f 67 6c 65 6f 70 74 69 6d 69 7a 65 2d 63  googleoptimize-c
    [00:00:57.610,961] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0620:  6e 2e 63 6f 6d 82 12 64 6f 75 62 6c 65 63 6c 69  n.com..doublecli
    [00:00:57.628,417] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0630:  63 6b 2d 63 6e 2e 6e 65 74 82 14 2a 2e 64 6f 75  ck-cn.net..*.dou
    [00:00:57.645,904] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0640:  62 6c 65 63 6c 69 63 6b 2d 63 6e 2e 6e 65 74 82  bleclick-cn.net.
    [00:00:57.663,391] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0650:  18 2a 2e 66 6c 73 2e 64 6f 75 62 6c 65 63 6c 69  .*.fls.doublecli
    [00:00:57.680,847] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0660:  63 6b 2d 63 6e 2e 6e 65 74 82 16 2a 2e 67 2e 64  ck-cn.net..*.g.d
    [00:00:57.698,333] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0670:  6f 75 62 6c 65 63 6c 69 63 6b 2d 63 6e 2e 6e 65  oubleclick-cn.ne
    [00:00:57.715,820] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0680:  74 82 0e 64 6f 75 62 6c 65 63 6c 69 63 6b 2e 63  t..doubleclick.c
    [00:00:57.733,306] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0690:  6e 82 10 2a 2e 64 6f 75 62 6c 65 63 6c 69 63 6b  n..*.doubleclick
    [00:00:57.750,762] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 06a0:  2e 63 6e 82 14 2a 2e 66 6c 73 2e 64 6f 75 62 6c  .cn..*.fls.doubl
    [00:00:57.768,249] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 06b0:  65 63 6c 69 63 6b 2e 63 6e 82 12 2a 2e 67 2e 64  eclick.cn..*.g.d
    [00:00:57.785,736] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 06c0:  6f 75 62 6c 65 63 6c 69 63 6b 2e 63 6e 82 11 64  oubleclick.cn..d
    [00:00:57.803,222] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 06d0:  61 72 74 73 65 61 72 63 68 2d 63 6e 2e 6e 65 74  artsearch-cn.net
    [00:00:57.820,678] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 06e0:  82 13 2a 2e 64 61 72 74 73 65 61 72 63 68 2d 63  ..*.dartsearch-c
    [00:00:57.838,165] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 06f0:  6e 2e 6e 65 74 82 1d 67 6f 6f 67 6c 65 74 72 61  n.net..googletra
    [00:00:57.855,651] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0700:  76 65 6c 61 64 73 65 72 76 69 63 65 73 2d 63 6e  veladservices-cn
    [00:00:57.873,107] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0710:  2e 63 6f 6d 82 1f 2a 2e 67 6f 6f 67 6c 65 74 72  .com..*.googletr
    [00:00:57.890,594] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0720:  61 76 65 6c 61 64 73 65 72 76 69 63 65 73 2d 63  aveladservices-c
    [00:00:57.908,050] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0730:  6e 2e 63 6f 6d 82 18 67 6f 6f 67 6c 65 74 61 67  n.com..googletag
    [00:00:57.925,537] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0740:  73 65 72 76 69 63 65 73 2d 63 6e 2e 63 6f 6d 82  services-cn.com.
    [00:00:57.943,023] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0750:  1a 2a 2e 67 6f 6f 67 6c 65 74 61 67 73 65 72 76  .*.googletagserv
    [00:00:57.960,510] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0760:  69 63 65 73 2d 63 6e 2e 63 6f 6d 82 17 67 6f 6f  ices-cn.com..goo
    [00:00:57.977,966] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0770:  67 6c 65 74 61 67 6d 61 6e 61 67 65 72 2d 63 6e  gletagmanager-cn
    [00:00:57.995,452] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0780:  2e 63 6f 6d 82 19 2a 2e 67 6f 6f 67 6c 65 74 61  .com..*.googleta
    [00:00:58.012,939] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0790:  67 6d 61 6e 61 67 65 72 2d 63 6e 2e 63 6f 6d 82  gmanager-cn.com.
    [00:00:58.030,395] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 07a0:  18 67 6f 6f 67 6c 65 73 79 6e 64 69 63 61 74 69  .googlesyndicati
    [00:00:58.047,882] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 07b0:  6f 6e 2d 63 6e 2e 63 6f 6d 82 1a 2a 2e 67 6f 6f  on-cn.com..*.goo
    [00:00:58.065,368] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 07c0:  67 6c 65 73 79 6e 64 69 63 61 74 69 6f 6e 2d 63  glesyndication-c
    [00:00:58.082,824] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 07d0:  6e 2e 63 6f 6d 82 24 2a 2e 73 61 66 65 66 72 61  n.com.$*.safefra
    [00:00:58.100,311] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 07e0:  6d 65 2e 67 6f 6f 67 6c 65 73 79 6e 64 69 63 61  me.googlesyndica
    [00:00:58.117,797] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 07f0:  74 69 6f 6e 2d 63 6e 2e 63 6f 6d 82 16 61 70 70  tion-cn.com..app
    [00:00:58.135,253] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0800:  2d 6d 65 61 73 75 72 65 6d 65 6e 74 2d 63 6e 2e  -measurement-cn.
    [00:00:58.152,740] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0810:  63 6f 6d 82 18 2a 2e 61 70 70 2d 6d 65 61 73 75  com..*.app-measu
    [00:00:58.170,227] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0820:  72 65 6d 65 6e 74 2d 63 6e 2e 63 6f 6d 82 0b 67  rement-cn.com..g
    [00:00:58.188,476] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0830:  76 74 31 2d 63 6e 2e 63 6f 6d 82 0d 2a 2e 67 76  vt1-cn.com..*.gv
    [00:00:58.205,932] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0840:  74 31 2d 63 6e 2e 63 6f 6d 82 0b 67 76 74 32 2d  t1-cn.com..gvt2-
    [00:00:58.223,419] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0850:  63 6e 2e 63 6f 6d 82 0d 2a 2e 67 76 74 32 2d 63  cn.com..*.gvt2-c
    [00:00:58.240,905] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0860:  6e 2e 63 6f 6d 82 0b 32 6d 64 6e 2d 63 6e 2e 6e  n.com..2mdn-cn.n
    [00:00:58.258,361] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0870:  65 74 82 0d 2a 2e 32 6d 64 6e 2d 63 6e 2e 6e 65  et..*.2mdn-cn.ne
    [00:00:58.275,848] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0880:  74 82 14 67 6f 6f 67 6c 65 66 6c 69 67 68 74 73  t..googleflights
    [00:00:58.293,334] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0890:  2d 63 6e 2e 6e 65 74 82 16 2a 2e 67 6f 6f 67 6c  -cn.net..*.googl
    [00:00:58.310,791] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 08a0:  65 66 6c 69 67 68 74 73 2d 63 6e 2e 6e 65 74 82  eflights-cn.net.
    [00:00:58.328,277] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 08b0:  0c 61 64 6d 6f 62 2d 63 6e 2e 63 6f 6d 82 0e 2a  .admob-cn.com..*
    [00:00:58.345,733] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 08c0:  2e 61 64 6d 6f 62 2d 63 6e 2e 63 6f 6d 82 14 67  .admob-cn.com..g
    [00:00:58.363,220] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 08d0:  6f 6f 67 6c 65 73 61 6e 64 62 6f 78 2d 63 6e 2e  ooglesandbox-cn.
    [00:00:58.380,706] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 08e0:  63 6f 6d 82 16 2a 2e 67 6f 6f 67 6c 65 73 61 6e  com..*.googlesan
    [00:00:58.398,162] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 08f0:  64 62 6f 78 2d 63 6e 2e 63 6f 6d 82 1e 2a 2e 73  dbox-cn.com..*.s
    [00:00:58.415,649] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0900:  61 66 65 6e 75 70 2e 67 6f 6f 67 6c 65 73 61 6e  afenup.googlesan
    [00:00:58.433,135] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0910:  64 62 6f 78 2d 63 6e 2e 63 6f 6d 82 0d 2a 2e 67  dbox-cn.com..*.g
    [00:00:58.450,592] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0920:  73 74 61 74 69 63 2e 63 6f 6d 82 14 2a 2e 6d 65  static.com..*.me
    [00:00:58.468,078] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0930:  74 72 69 63 2e 67 73 74 61 74 69 63 2e 63 6f 6d  tric.gstatic.com
    [00:00:58.485,534] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0940:  82 0a 2a 2e 67 76 74 31 2e 63 6f 6d 82 11 2a 2e  ..*.gvt1.com..*.
    [00:00:58.503,021] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0950:  67 63 70 63 64 6e 2e 67 76 74 31 2e 63 6f 6d 82  gcpcdn.gvt1.com.
    [00:00:58.520,477] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0960:  0a 2a 2e 67 76 74 32 2e 63 6f 6d 82 0e 2a 2e 67  .*.gvt2.com..*.g
    [00:00:58.537,963] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0970:  63 70 2e 67 76 74 32 2e 63 6f 6d 82 10 2a 2e 75  cp.gvt2.com..*.u
    [00:00:58.555,419] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0980:  72 6c 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 82 16 2a  rl.google.com..*
    [00:00:58.572,906] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0990:  2e 79 6f 75 74 75 62 65 2d 6e 6f 63 6f 6f 6b 69  .youtube-nocooki
    [00:00:58.590,393] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 09a0:  65 2e 63 6f 6d 82 0b 2a 2e 79 74 69 6d 67 2e 63  e.com..*.ytimg.c
    [00:00:58.607,849] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 09b0:  6f 6d 82 0a 61 69 2e 61 6e 64 72 6f 69 64 82 0b  om..ai.android..
    [00:00:58.625,335] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 09c0:  61 6e 64 72 6f 69 64 2e 63 6f 6d 82 0d 2a 2e 61  android.com..*.a
    [00:00:58.642,822] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 09d0:  6e 64 72 6f 69 64 2e 63 6f 6d 82 13 2a 2e 66 6c  ndroid.com..*.fl
    [00:00:58.660,308] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 09e0:  61 73 68 2e 61 6e 64 72 6f 69 64 2e 63 6f 6d 82  ash.android.com.
    [00:00:58.677,764] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 09f0:  04 67 2e 63 6e 82 06 2a 2e 67 2e 63 6e 82 04 67  .g.cn..*.g.cn..g
    [00:00:58.695,251] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0a00:  2e 63 6f 82 06 2a 2e 67 2e 63 6f 82 06 67 6f 6f  .co..*.g.co..goo
    [00:00:58.712,707] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0a10:  2e 67 6c 82 0a 77 77 77 2e 67 6f 6f 2e 67 6c 82  .gl..www.goo.gl.
    [00:00:58.730,194] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0a20:  14 67 6f 6f 67 6c 65 2d 61 6e 61 6c 79 74 69 63  .google-analytic
    [00:00:58.747,680] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0a30:  73 2e 63 6f 6d 82 16 2a 2e 67 6f 6f 67 6c 65 2d  s.com..*.google-
    [00:00:58.765,167] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0a40:  61 6e 61 6c 79 74 69 63 73 2e 63 6f 6d 82 0a 67  analytics.com..g
    [00:00:58.782,623] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0a50:  6f 6f 67 6c 65 2e 63 6f 6d 82 12 67 6f 6f 67 6c  oogle.com..googl
    [00:00:58.800,109] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0a60:  65 63 6f 6d 6d 65 72 63 65 2e 63 6f 6d 82 14 2a  ecommerce.com..*
    [00:00:58.817,596] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0a70:  2e 67 6f 6f 67 6c 65 63 6f 6d 6d 65 72 63 65 2e  .googlecommerce.
    [00:00:58.835,052] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0a80:  63 6f 6d 82 08 67 67 70 68 74 2e 63 6e 82 0a 2a  com..ggpht.cn..*
    [00:00:58.852,539] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0a90:  2e 67 67 70 68 74 2e 63 6e 82 0a 75 72 63 68 69  .ggpht.cn..urchi
    [00:00:58.870,025] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0aa0:  6e 2e 63 6f 6d 82 0c 2a 2e 75 72 63 68 69 6e 2e  n.com..*.urchin.
    [00:00:58.887,481] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ab0:  63 6f 6d 82 08 79 6f 75 74 75 2e 62 65 82 0b 79  com..youtu.be..y
    [00:00:58.904,968] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ac0:  6f 75 74 75 62 65 2e 63 6f 6d 82 0d 2a 2e 79 6f  outube.com..*.yo
    [00:00:58.922,424] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ad0:  75 74 75 62 65 2e 63 6f 6d 82 11 6d 75 73 69 63  utube.com..music
    [00:00:58.939,910] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ae0:  2e 79 6f 75 74 75 62 65 2e 63 6f 6d 82 13 2a 2e  .youtube.com..*.
    [00:00:58.957,397] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0af0:  6d 75 73 69 63 2e 79 6f 75 74 75 62 65 2e 63 6f  music.youtube.co
    [00:00:58.974,884] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0b00:  6d 82 14 79 6f 75 74 75 62 65 65 64 75 63 61 74  m..youtubeeducat
    [00:00:58.992,340] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0b10:  69 6f 6e 2e 63 6f 6d 82 16 2a 2e 79 6f 75 74 75  ion.com..*.youtu
    [00:00:59.009,826] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0b20:  62 65 65 64 75 63 61 74 69 6f 6e 2e 63 6f 6d 82  beeducation.com.
    [00:00:59.027,282] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0b30:  0f 79 6f 75 74 75 62 65 6b 69 64 73 2e 63 6f 6d  .youtubekids.com
    [00:00:59.044,769] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0b40:  82 11 2a 2e 79 6f 75 74 75 62 65 6b 69 64 73 2e  ..*.youtubekids.
    [00:00:59.062,225] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0b50:  63 6f 6d 82 05 79 74 2e 62 65 82 07 2a 2e 79 74  com..yt.be..*.yt
    [00:00:59.079,711] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0b60:  2e 62 65 82 1a 61 6e 64 72 6f 69 64 2e 63 6c 69  .be..android.cli
    [00:00:59.097,167] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0b70:  65 6e 74 73 2e 67 6f 6f 67 6c 65 2e 63 6f 6d 82  ents.google.com.
    [00:00:59.114,654] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0b80:  13 2a 2e 61 6e 64 72 6f 69 64 2e 67 6f 6f 67 6c  .*.android.googl
    [00:00:59.132,110] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0b90:  65 2e 63 6e 82 12 2a 2e 63 68 72 6f 6d 65 2e 67  e.cn..*.chrome.g
    [00:00:59.149,597] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ba0:  6f 6f 67 6c 65 2e 63 6e 82 16 2a 2e 64 65 76 65  oogle.cn..*.deve
    [00:00:59.167,053] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0bb0:  6c 6f 70 65 72 73 2e 67 6f 6f 67 6c 65 2e 63 6e  lopers.google.cn
    [00:00:59.184,509] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0bc0:  82 15 2a 2e 61 69 73 74 75 64 69 6f 2e 67 6f 6f  ..*.aistudio.goo
    [00:00:59.201,995] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0bd0:  67 6c 65 2e 63 6f 6d 30 13 06 03 55 1d 20 04 0c  gle.com0...U. ..
    [00:00:59.219,482] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0be0:  30 0a 30 08 06 06 67 81 0c 01 02 01 30 36 06 03  0.0...g.....06..
    [00:00:59.236,938] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0bf0:  55 1d 1f 04 2f 30 2d 30 2b a0 29 a0 27 86 25 68  U.../0-0+.).'.%h
    [00:00:59.254,425] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0c00:  74 74 70 3a 2f 2f 63 2e 70 6b 69 2e 67 6f 6f 67  ttp://c.pki.goog
    [00:00:59.271,911] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0c10:  2f 77 72 32 2f 6f 42 46 59 59 61 68 7a 67 56 49  /wr2/oBFYYahzgVI
    [00:00:59.289,367] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0c20:  2e 63 72 6c 30 82 01 04 06 0a 2b 06 01 04 01 d6  .crl0.....+.....
    [00:00:59.306,854] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0c30:  79 02 04 02 04 81 f5 04 81 f2 00 f0 00 76 00 12  y............v..
    [00:00:59.324,340] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0c40:  f1 4e 34 bd 53 72 4c 84 06 19 c3 8f 3f 7a 13 f8  .N4.SrL.....?z..
    [00:00:59.341,827] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0c50:  e7 b5 62 87 88 9c 6d 30 05 84 eb e5 86 26 3a 00  ..b...m0.....&:.
    [00:00:59.359,283] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0c60:  00 01 96 c3 e0 5c f7 00 00 04 03 00 47 30 45 02  .....\......G0E.
    [00:00:59.376,770] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0c70:  20 1c e0 9b 52 a9 80 66 96 5d 3c ac 95 5f 89 00   ...R..f.]<.._..
    [00:00:59.394,226] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0c80:  56 ee ff 83 af d8 57 81 cb e1 c4 4d 54 bb 98 49  V.....W....MT..I
    [00:00:59.411,712] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0c90:  61 02 21 00 e9 6c 7d ed 74 7d 27 7d 77 1a 50 49  a.!..l}.t}'}w.PI
    [00:00:59.429,199] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ca0:  71 9a be fd 48 96 d2 26 08 d1 cb 0a 61 a9 d8 19  q...H..&....a...
    [00:00:59.446,655] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0cb0:  a9 f4 1b 3c 00 76 00 cc fb 0f 6a 85 71 09 65 fe  ...<.v....j.q.e.
    [00:00:59.464,141] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0cc0:  95 9b 53 ce e9 b2 7c 22 e9 85 5c 0d 97 8d b6 a9  ..S...|"..\.....
    [00:00:59.481,628] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0cd0:  7e 54 c0 fe 4c 0d b0 00 00 01 96 c3 e0 61 73 00  ~T..L........as.
    [00:00:59.499,114] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ce0:  00 04 03 00 47 30 45 02 21 00 a5 49 83 b5 26 2f  ....G0E.!..I..&/
    [00:00:59.516,601] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0cf0:  0b db a4 e4 3a eb 5b 00 de 0c 11 33 0d 3a 18 5a  ....:.[....3.:.Z
    [00:00:59.534,057] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0d00:  04 d9 d9 3e 3b 09 6e f6 f5 eb 02 20 27 dc ba ac  ...>;.n.... '...
    [00:00:59.551,544] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0d10:  81 f1 f9 aa ce d2 ac eb 49 d4 dc 0a 69 8a 27 73  ........I...i.'s
    [00:00:59.569,030] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0d20:  92 f0 cd b3 bf 68 08 7b 87 cc 73 19 30 0d 06 09  .....h.{..s.0...
    [00:00:59.586,517] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0d30:  2a 86 48 86 f7 0d 01 01 0b 05 00 03 82 01 01 00  *.H.............
    [00:00:59.604,003] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0d40:  26 13 af 72 da b9 21 65 71 d4 c0 0f 3e 95 5f 24  &..r..!eq...>._$
    [00:00:59.621,459] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0d50:  ac 98 6f 3b 55 ac 27 0e 1b b5 a1 21 6e 77 ba dc  ..o;U.'....!nw..
    [00:00:59.638,946] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0d60:  f6 73 1a 2c e9 93 62 bf 99 6f e1 3c 66 a6 da 60  .s.,..b..o.<f..`
    [00:00:59.656,402] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0d70:  97 fd c9 a1 1d 8c 3e ab 60 c1 1f 87 09 ea 9d 33  ......>.`......3
    [00:00:59.673,858] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0d80:  54 03 69 39 76 1b db 91 d1 d7 97 1a 36 3a 6c 9f  T.i9v.......6:l.
    [00:00:59.691,345] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0d90:  01 dd 47 59 5c 47 ee 6f 12 b3 bb bd 48 da b9 4e  ..GY\G.o....H..N
    [00:00:59.708,801] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0da0:  85 6c 62 54 a1 5e b9 2f 64 21 0b c8 30 24 1f e1  .lbT.^./d!..0$..
    [00:00:59.726,287] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0db0:  b1 8e 0e 9f 5f d8 ed e3 72 e1 27 81 33 7f 68 ef  ...._...r.'.3.h.
    [00:00:59.743,774] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0dc0:  6b 81 de cf 5c cd 87 7f 68 b5 af a3 7f 4a 4c 1e  k...\...h....JL.
    [00:00:59.761,230] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0dd0:  61 74 a9 7c 35 f9 e0 35 b3 9e 91 b4 86 b1 f4 45  at.|5..5.......E
    [00:00:59.778,717] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0de0:  4f 27 9b 5f 16 49 fe 59 e7 ac bb c3 e7 1e 73 3b  O'._.I.Y......s;
    [00:00:59.796,203] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0df0:  af 92 17 46 15 f7 4e 44 f4 94 a8 30 f5 c1 dd f8  ...F..ND...0....
    [00:00:59.813,659] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0e00:  62 29 26 1e a7 7f f6 d2 8c 27 22 10 40 0d ea 21  b)&......'".@..!
    [00:00:59.831,146] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0e10:  4b f2 f1 82 2d e3 51 0d 45 a8 df 38 52 56 ba b2  K...-.Q.E..8RV..
    [00:00:59.848,602] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0e20:  57 a5 8f 66 c4 08 4f 81 67 08 27 5e 4a 8e 2b 65  W..f..O.g.'^J.+e
    [00:00:59.866,088] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0e30:  90 0a d4 70 e3 34 56 b9 6f 4e 43 4f 3c 5b 89 05  ...p.4V.oNCO<[..
    [00:00:59.883,575] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0e40:  00 05 0f 30 82 05 0b 30 82 02 f3 a0 03 02 01 02  ...0...0........
    [00:00:59.901,062] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0e50:  02 10 7f f0 05 a0 7c 4c de d1 00 ad 9d 66 a5 10  ......|L.....f..
    [00:00:59.918,548] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0e60:  7b 98 30 0d 06 09 2a 86 48 86 f7 0d 01 01 0b 05  {.0...*.H.......
    [00:00:59.936,035] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0e70:  00 30 47 31 0b 30 09 06 03 55 04 06 13 02 55 53  .0G1.0...U....US
    [00:00:59.953,491] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0e80:  31 22 30 20 06 03 55 04 0a 13 19 47 6f 6f 67 6c  1"0 ..U....Googl
    [00:00:59.970,977] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0e90:  65 20 54 72 75 73 74 20 53 65 72 76 69 63 65 73  e Trust Services
    [00:00:59.988,464] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ea0:  20 4c 4c 43 31 14 30 12 06 03 55 04 03 13 0b 47   LLC1.0...U....G
    [00:01:00.005,920] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0eb0:  54 53 20 52 6f 6f 74 20 52 31 30 1e 17 0d 32 33  TS Root R10...23
    [00:01:00.023,406] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ec0:  31 32 31 33 30 39 30 30 30 30 5a 17 0d 32 39 30  1213090000Z..290
    [00:01:00.040,893] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ed0:  32 32 30 31 34 30 30 30 30 5a 30 3b 31 0b 30 09  220140000Z0;1.0.
    [00:01:00.058,380] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ee0:  06 03 55 04 06 13 02 55 53 31 1e 30 1c 06 03 55  ..U....US1.0...U
    [00:01:00.075,836] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ef0:  04 0a 13 15 47 6f 6f 67 6c 65 20 54 72 75 73 74  ....Google Trust
    [00:01:00.093,322] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0f00:  20 53 65 72 76 69 63 65 73 31 0c 30 0a 06 03 55   Services1.0...U
    [00:01:00.110,809] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0f10:  04 03 13 03 57 52 32 30 82 01 22 30 0d 06 09 2a  ....WR20.."0...*
    [00:01:00.128,295] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0f20:  86 48 86 f7 0d 01 01 01 05 00 03 82 01 0f 00 30  .H.............0
    [00:01:00.145,782] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0f30:  82 01 0a 02 82 01 01 00 a9 ff 9c 7f 45 1e 70 a8  ............E.p.
    [00:01:00.163,269] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0f40:  53 9f ca d9 e5 0d de 46 57 57 7d bc 8f 9a 5a ac  S......FWW}...Z.
    [00:01:00.180,725] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0f50:  46 f1 84 9a bb 91 db c9 fb 2f 01 fb 92 09 00 16  F......../......
    [00:01:00.198,211] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0f60:  5e a0 1c f8 c1 ab f9 78 2f 4a cc d8 85 a2 d8 59  ^......x/J.....Y
    [00:01:00.215,698] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0f70:  3c 0e d3 18 fb b1 f5 24 0d 26 ee b6 5b 64 76 7c  <......$.&..[dv|
    [00:01:00.233,184] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0f80:  14 c7 2f 7a ce a8 4c b7 f4 d9 08 fc df 87 23 35  ../z..L.......#5
    [00:01:00.250,671] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0f90:  20 a8 e2 69 e2 8c 4e 3f b1 59 fa 60 a2 1e b3 c9   ..i..N?.Y.`....
    [00:01:00.268,127] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0fa0:  20 53 19 82 ca 36 53 6d 60 4d e9 00 91 fc 76 8d   S...6Sm`M....v.
    [00:01:00.285,614] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0fb0:  5c 08 0f 0a c2 dc f1 73 6b c5 13 6e 0a 4f 7a c2  \......sk..n.Oz.
    [00:01:00.303,100] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0fc0:  f2 02 1c 2e b4 63 83 da 31 f6 2d 75 30 b2 fb ab  .....c..1.-u0...
    [00:01:00.320,587] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0fd0:  c2 6e db a9 c0 0e b9 f9 67 d4 c3 25 57 74 eb 05  .n......g..%Wt..
    [00:01:00.338,073] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0fe0:  b4 e9 8e b5 de 28 cd cc 7a 14 e4 71 03 cb 4d 61  .....(..z..q..Ma
    [00:01:00.355,529] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3398: 0ff0:  2e 61 57 c5 19 a9 0b 98 84 1a e8 79 29 d9 b2 8d  .aW........y)...
    [00:01:00.377,960] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:4370: <= read record
    [00:01:00.396,209] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:9961: Use configuration-specific verification callback
    Dead here...56.
    [00:01:00.526,184] <err> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:10020: x509_verify_cert() returned -9984 (-0x2700)
    [00:01:00.539,306] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:5294: => send alert message
    [00:01:00.550,445] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:5295: send alert level=2 message=48
    [00:01:00.561,950] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2944: => write record
    [00:01:00.572,631] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3028: output record: msgtype = 21, version = [3:3], msglen = 2
    [00:01:00.586,547] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: dumping 'output record sent to network' (7 bytes)
    [00:01:00.601,928] <dbg> mbedtls: zephyr_mbedtls_debug: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3033: 0000:  15 03 03 00 02 02 30                             ......0
    [00:01:00.618,347] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2354: => flush output
    [00:01:00.628,967] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2368: message length: 7, out_left: 7
    [00:01:00.641,387] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2375: ssl->f_send() returned 7 (-0xfffffff9)
    [00:01:00.653,930] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:2402: <= flush output
    [00:01:00.664,520] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:3081: <= write record
    [00:01:00.675,109] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_msg.c:5306: <= send alert message
    [00:01:00.686,279] <inf> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:10120: ! Certificate verification flags 00000008
    [00:01:00.702,270] <wrn> mbedtls: WEST_TOPDIR/modules/crypto/mbedtls/library/ssl_tls.c:4672: <= handshake
    [00:01:00.712,524] <err> net_sock_tls: TLS handshake error: -0x2700
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "sock_test.py", line 43, in step_1
    OSError: [Errno 113] ECONNABORTED
    >>> [00:01:01.275,848] <dbg> net_sock: zsock_received_cb: (rx_q[0]): ctx=0x2000aba8, pkt=(nil), st=-104, user_data=(nil)
    [00:01:01.286,865] <dbg> net_sock: zsock_received_cb: (rx_q[0]): Set EOF flag on pkt 0x2005ebc0
    [00:01:19.799,133] <dbg> net_sock: zsock_received_cb: (tcp_work): ctx=0x2000aba8, pkt=(nil), st=-116, user_data=(nil)
    [00:01:19.810,211] <dbg> net_sock: zsock_received_cb: (tcp_work): Set EOF flag on pkt 0x2005ebc0
Related