Skip to content

Commit 0f0b6b6

Browse files
author
Ron Eldor
committed
Update the tls-client README.md
Update the tls-client application `README.md` as it mentions EasyConnect, and it is not true anymore. Update the links as well.
1 parent dc50b7c commit 0f0b6b6

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed

tls-client/README.md

+17-18
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ You can also compile this example with the [Mbed Online Compiler](https://os.mbe
1111
## Requirements
1212

1313
This example uses by default an Ethernet connection to the internet.
14-
It's possible to switch to another network interface by using [Easy Connect](https://github.com/ARMmbed/easy-connect/blob/master/README.md). The [Mbed OS Example Client](https://github.com/ARMmbed/mbed-os-example-client#application-setup) application shows an example of how to configure other network interfaces.
14+
It's possible to switch to another network interface by using [the Mbed OS NetworkInterface](https://os.mbed.com/docs/latest/apis/network-interfaces.html).
1515

1616
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.
1717

18-
To learn why entropy is required, read the [TLS Porting guide](https://docs.mbed.com/docs/mbed-os-handbook/en/latest/advanced/tls_porting/).
18+
To learn why entropy is required, read the [entropy Porting guide](https://os.mbed.com/docs/latest/porting/entropy-sources.html).
1919

2020
## Monitoring the application
2121

@@ -25,41 +25,40 @@ The output in the terminal window should be similar to this:
2525

2626
```
2727
Starting mbed-os-example-tls/tls-client
28-
Using Mbed OS 5.6.3
29-
[EasyConnect] IPv4 mode
28+
Using Mbed OS 5.11.1
3029
Successfully connected to os.mbed.com at port 443
3130
Starting the TLS handshake...
3231
Successfully completed the TLS handshake
3332
Server certificate:
3433
cert. version : 3
35-
serial number : 65:7B:6D:8D:15:A5:B6:86:87:6B:5E:BC
36-
issuer name : C=BE, O=GlobalSign nv-sa, CN=GlobalSign Organization Validation CA - SHA256 - G2
37-
subject name : C=GB, ST=Cambridgeshire, L=Cambridge, O=ARM Ltd, CN=*.mbed.com
38-
issued on : 2017-04-03 13:54:02
39-
expires on : 2018-05-06 10:31:02
34+
serial number : 0F:22:3C:45:F9:9B:25:DA:B5:A0:E9:E4:C3:F9:5F:9D
35+
issuer name : C=US, O=Amazon, OU=Server CA 1B, CN=Amazon
36+
subject name : CN=mbed.com
37+
issued on : 2018-03-16 00:00:00
38+
expires on : 2019-04-16 12:00:00
4039
signed using : RSA with SHA-256
4140
RSA key size : 2048 bits
4241
basic constraints : CA=false
43-
subject alt name : *.mbed.com, mbed.org, *.mbed.org, mbed.com
42+
subject alt name : mbed.com, *.mbed.com, mbed.org, *.mbed.org
4443
key usage : Digital Signature, Key Encipherment
4544
ext key usage : TLS Web Server Authentication, TLS Web Client Authentication
4645
4746
Certificate verification passed
4847
Established TLS connection to os.mbed.com
49-
HTTP: Received 365 chars from server
48+
HTTP: Received 320 chars from server
5049
HTTP: Received '200 OK' status ... OK
5150
HTTP: Received message:
5251
HTTP/1.1 200 OK
53-
Server: nginx/1.11.10
54-
Date: Wed, 08 Nov 2017 09:07:59 GMT
52+
Accept-Ranges: bytes
53+
Cache-Control: max-age=36000
5554
Content-Type: text/plain
55+
Date: Thu, 10 Jan 2019 13:45:27 GMT
56+
ETag: "5bf0036d-e"
57+
Expires: Thu, 10 Jan 2019 23:45:27 GMT
58+
Last-Modified: Sat, 17 Nov 2018 12:02:53 GMT
59+
Server: nginx/1.15.3
5660
Content-Length: 14
5761
Connection: keep-alive
58-
Last-Modified: Fri, 27 Jul 2012 13:30:34 GMT
59-
Accept-Ranges: bytes
60-
Cache-Control: max-age=36000
61-
Expires: Wed, 08 Nov 2017 19:07:59 GMT
62-
Strict-Transport-Security: max-age=31536000; includeSubdomains
6362
6463
Hello world!
6564

0 commit comments

Comments
 (0)