How to use a secure connection
Introduction to secure connections
Description
- Transport Layer Security (TLS) and Secure Sockets Layer (SSL) are the two protocols used by the Internet that allow clients and servers to communicate over a secure connection.
- TLS is the successor to SSL. Although there are slight differences between SSL and TLS, the protocol remains substantially the same. As a result, they are sometimes referred to as the TLS/SSL protocol or these terms are used interchangeably.
- With SSL, the browser encrypts all data that’s sent to the server and decrypts all data that’s received from the server. Conversely, the server encrypts all data that’s sent to the browser and decrypts all data that’s received from the browser. •
- SSL is able to determine if data has been tampered with during transit. It is also able to verify that a server or a client is who it claims to be.
- The URL for a secure connection starts with HTTPS instead of HTTP.
- A web browser that is using a secure connection typically displays a lock icon to the left of the URL for the web page.
Back