Https example program using TLSSocket library.

Hello-TLSSocket

TLSSocket library example program.

In this example, https connection to os.mbed.com is established by using TLSSocket. The program is tested on K64F.

Output from console

When set mbed-trace.enable true.

HelloTSLSocket, HTTPS example of TLSSocket

[INFO][TLSx]: Connecting to os.mbed.com:443
[INFO][TLSx]: Connected.
[INFO][TLSx]: Starting the TLS handshake...
[INFO][TLSx]: TLS connection to os.mbed.com:443 established

[DBG ][TLSx]: Server certificate:
    cert. version     : 3
    serial number     : 03:56:D4:79:41:63:31:CA:E0:56:06:61
    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        : 2018-05-04 15:36:03
    expires on        : 2019-06-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


[INFO][TLSx]: Certificate verification passed

GET / HTTP/1.1
Host: os.mbed.com
Connection: close

HTTP/1.1 200 OK
Server: nginx/1.11.12
Date: Wed, 13 Jun 2018 08:26:02 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: close
Vary: Accept-Language,Cookie,Accept-Encoding
Content-Language: en-gb
Set-Cookie: csrftoken=zM3AGfeZ6W4OQZsT6nCcxNBYxEEN73sf; expires=Wed, 12-Jun-2019 08:25:33 GMT; Max-Age=31449600; Path=/
Strict-Transport-Security: max-age=31536000; includeSubdomains

eae
<!DOCTYPE html>

...
...
...

        AJAX_req.onreadystatechange = handle_AJAX_Complete;
        AJAX_req.send();
    }
</script>


</body>
</html>

0

HelloTSLSocket DONE.

Committer:
Osamu Koizumi
Date:
Fri Apr 27 14:03:25 2018 +0900
Revision:
9:38b485904577
Parent:
7:fc43e66fb54a
Child:
12:7d952bcda2c1
Update TLSSocket library. Changed to set root CA certificate by mbed_app.json.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
coisme 0:f96053986356 1 #include "mbed.h"
coisme 0:f96053986356 2 #include "easy-connect.h"
coisme 0:f96053986356 3 #include "TLSSocket.h"
coisme 0:f96053986356 4
Osamu Koizumi 3:cf61a5596cf2 5 #include "mbed-trace/mbed_trace.h"
Osamu Koizumi 3:cf61a5596cf2 6
coisme 0:f96053986356 7 const char* HOST_NAME = "os.mbed.com";
coisme 0:f96053986356 8 const int PORT = 443;
coisme 0:f96053986356 9 const char* HTTPS_PATH = "/";
coisme 0:f96053986356 10
coisme 0:f96053986356 11 int main(int argc, char* argv[]) {
Osamu Koizumi 3:cf61a5596cf2 12 mbed_trace_init();
Osamu Koizumi 3:cf61a5596cf2 13
coisme 0:f96053986356 14 printf("HelloTSLSocket, HTTPS example of TLSSocket\r\n");
Osamu Koizumi 1:65339c530def 15 printf("\r\n");
coisme 0:f96053986356 16
Osamu Koizumi 1:65339c530def 17 // Open a network interface
coisme 0:f96053986356 18 NetworkInterface* network = NULL;
coisme 0:f96053986356 19 network = easy_connect(false); // If true, prints out connection details.
coisme 0:f96053986356 20 if (!network) {
coisme 0:f96053986356 21 printf("Unable to open network interface.\r\n");
coisme 0:f96053986356 22 return -1;
coisme 0:f96053986356 23 }
coisme 0:f96053986356 24
Osamu Koizumi 1:65339c530def 25 // Create a TLS socket
Osamu Koizumi 7:fc43e66fb54a 26 TLSSocket socket = TLSSocket();
Osamu Koizumi 7:fc43e66fb54a 27 if(socket.open(network) != 0) {
coisme 0:f96053986356 28 printf("Unable to open TLS socket.\r\n");
coisme 0:f96053986356 29 return -1;
coisme 0:f96053986356 30 }
Osamu Koizumi 1:65339c530def 31
Osamu Koizumi 1:65339c530def 32 // Connect to the server, including TLS handshake
Osamu Koizumi 9:38b485904577 33 if(socket.connect(HOST_NAME, PORT) != 0) {
coisme 0:f96053986356 34 printf("Failed to connect to the server.");
coisme 0:f96053986356 35 return -1;
coisme 0:f96053986356 36 }
coisme 0:f96053986356 37
Osamu Koizumi 6:75b01b028cd4 38 const size_t buf_size = 1024;
coisme 0:f96053986356 39 char *buf = new char[buf_size];
coisme 0:f96053986356 40
Osamu Koizumi 1:65339c530def 41 // Send HTTP request
Osamu Koizumi 1:65339c530def 42 /* "Connection: close" header is specified to detect end of the body
Osamu Koizumi 1:65339c530def 43 * contents by connection close notification. If this is not specified,
Osamu Koizumi 1:65339c530def 44 * connection is kept, and need to detect end of the content in another
Osamu Koizumi 1:65339c530def 45 * way.
Osamu Koizumi 1:65339c530def 46 */
Osamu Koizumi 1:65339c530def 47 int len = snprintf(buf, buf_size,
Osamu Koizumi 1:65339c530def 48 "GET %s HTTP/1.1\n"
Osamu Koizumi 1:65339c530def 49 "Host: %s\n"
Osamu Koizumi 1:65339c530def 50 "Connection: close\n"
Osamu Koizumi 1:65339c530def 51 "\n", HTTPS_PATH, HOST_NAME);
Osamu Koizumi 1:65339c530def 52 printf("\r\n%s", buf);
coisme 0:f96053986356 53 int rc = 0;
Osamu Koizumi 7:fc43e66fb54a 54 rc = socket.send(buf, len);
coisme 0:f96053986356 55 if(rc < 0) {
coisme 0:f96053986356 56 printf("send error.\r\n");
coisme 0:f96053986356 57 return -1;
coisme 0:f96053986356 58 }
Osamu Koizumi 1:65339c530def 59
Osamu Koizumi 6:75b01b028cd4 60 // Receive response from the server
Osamu Koizumi 7:fc43e66fb54a 61 while((rc = socket.recv(buf, buf_size - 1)) > 0) {
coisme 0:f96053986356 62 buf[rc] = '\0';
coisme 0:f96053986356 63 printf("%s", buf);
coisme 0:f96053986356 64 }
coisme 0:f96053986356 65 if(rc < 0) {
coisme 0:f96053986356 66 printf("\r\n! Read failed. err code = %d\r\n", rc);
coisme 0:f96053986356 67 }
Osamu Koizumi 1:65339c530def 68
Osamu Koizumi 1:65339c530def 69 // Done
Osamu Koizumi 1:65339c530def 70 printf("HelloTSLSocket DONE.\r\n");
coisme 0:f96053986356 71 delete[] buf;
coisme 0:f96053986356 72
Osamu Koizumi 7:fc43e66fb54a 73 socket.close();
coisme 0:f96053986356 74 }