This application downloads a file from an HTTPS server (os.mbed.com) and looks for a specific string in that file.
Set up your environment if you have not done so already. For instructions, refer to the main readme.
You can also compile this example with the Mbed Online Compiler by using this project.
This example uses by default an Ethernet connection to the internet. It's possible to switch to another network interface by using Easy Connect. The Mbed OS Example Client application shows an example of how to configure other network interfaces.
The networking stack used in this example requires TLS functionality to be enabled on Mbed TLS. On devices where hardware entropy is not present, TLS is disabled by default. This would result in compile time or linking failures.
To learn why entropy is required, read the TLS Porting guide.
NOTE: Make sure that the network is functional before running the application.
The output in the terminal window should be similar to this:
Starting mbed-os-example-tls/tls-client
Using Mbed OS 5.6.3
[EasyConnect] IPv4 mode
Successfully connected to os.mbed.com at port 443
Starting the TLS handshake...
Successfully completed the TLS handshake
Server certificate:
cert. version : 3
serial number : 65:7B:6D:8D:15:A5:B6:86:87:6B:5E:BC
issuer name : C=BE, O=GlobalSign nv-sa, CN=GlobalSign Organization Validation CA - SHA256 - G2
subject name : C=GB, ST=Cambridgeshire, L=Cambridge, O=ARM Ltd, CN=*.mbed.com
issued on : 2017-04-03 13:54:02
expires on : 2018-05-06 10:31:02
signed using : RSA with SHA-256
RSA key size : 2048 bits
basic constraints : CA=false
subject alt name : *.mbed.com, mbed.org, *.mbed.org, mbed.com
key usage : Digital Signature, Key Encipherment
ext key usage : TLS Web Server Authentication, TLS Web Client Authentication
Certificate verification passed
Established TLS connection to os.mbed.com
HTTP: Received 365 chars from server
HTTP: Received '200 OK' status ... OK
HTTP: Received message:
HTTP/1.1 200 OK
Server: nginx/1.11.10
Date: Wed, 08 Nov 2017 09:07:59 GMT
Content-Type: text/plain
Content-Length: 14
Connection: keep-alive
Last-Modified: Fri, 27 Jul 2012 13:30:34 GMT
Accept-Ranges: bytes
Cache-Control: max-age=36000
Expires: Wed, 08 Nov 2017 19:07:59 GMT
Strict-Transport-Security: max-age=31536000; includeSubdomains
Hello world!
DONE
To print out more debug information about the TLS connection, edit the file main.cpp
and change the definition of DEBUG_LEVEL
(near the top of the file) from 0 to a positive number:
-
Level 1 only prints non-zero return codes from SSL functions and information about the full certificate chain being verified.
-
Level 2 prints more information about internal state updates.
-
Level 3 is intermediate.
-
Level 4 (the maximum) includes full binary dumps of the packets.
The TLS connection can fail with an error similar to:
mbedtls_ssl_write() failed: -0x2700 (-9984): X509 - Certificate verification failed, e.g. CRL, CA or signature check failed
Failed to fetch /media/uploads/mbed_official/hello.txt from os.mbed.com:443
This probably means you need to update the contents of the SSL_CA_PEM
constant (this can happen if you modify HTTPS_SERVER_NAME
, or when os.mbed.com
switches to a new CA when updating its certificate).
Another possible reason for this error is a proxy providing a different certificate. Proxies can be used in some network configurations or for performing man-in-the-middle attacks. If you choose to ignore this error and proceed with the connection anyway, you can change the definition of UNSAFE
near the top of the file from 0 to 1.
Warning: this removes all security against a possible active attacker, so use at your own risk or for debugging only!
If you have problems, you can review the documentation for suggestions on what could be wrong and how to fix it.