How TLS/SSL Encryption Protects the Internet?

Table of contents
- Understanding the Security Behind HTTPS
- π What is TLS/SSL Encryption?
- π How TLS/SSL Works: The Handshake Process
- π Step-by-Step Breakdown of the TLS Handshake
- π TLS vs SSL: Whatβs the Difference?
- π Why is TLS/SSL Important for Security?
- π Where is TLS/SSL Used?
- π οΈ How to Implement TLS/SSL?
- π Final Thoughts
- About Me π¨βπ»

Understanding the Security Behind HTTPS
Have you ever noticed the padlock icon π in your browserβs address bar? Thatβs because TLS/SSL encryption is securing your connection! Without TLS (Transport Layer Security), attackers could eavesdrop on your data, steal credentials, or perform man-in-the-middle (MITM) attacks.
In this article, weβll break down how TLS/SSL works, why itβs essential, and how it secures modern internet communication.
π What is TLS/SSL Encryption?
TLS (Transport Layer Security) and its predecessor, SSL (Secure Sockets Layer), are cryptographic protocols that provide secure communication between clients (browsers, apps) and servers (websites, APIs).
πΉ Why Do We Need TLS/SSL?
β Confidentiality β Data is encrypted, preventing unauthorized access.
β Integrity β Ensures data is not altered during transmission.
β Authentication β Verifies that youβre connecting to the real website, not an imposter.
π How TLS/SSL Works: The Handshake Process
When you visit a website using HTTPS, your browser and the server perform a TLS handshake before data transmission begins.
sequenceDiagram
participant Client (Browser) as π΅ Client (Browser)
participant Server (Website) as π’ Server (Website)
Client (Browser) ->> Server (Website): 1οΈβ£ Hello! Send me your TLS certificate π
Server (Website) -->> Client (Browser): 2οΈβ£ Hereβs my certificate! π‘οΈ (Signed by CA)
Client (Browser) ->> Server (Website): 3οΈβ£ I trust the CA! Let's generate session keys π
Server (Website) -->> Client (Browser): 4οΈβ£ Secure session established! π
Note right of Client (Browser): π Now all data is encrypted!
π Step-by-Step Breakdown of the TLS Handshake
1οΈβ£ Client Hello:
The browser (client) requests a secure connection from the server.
It sends supported encryption algorithms (ciphers) and a random number.
2οΈβ£ Server Hello & Certificate Exchange:
- The server responds with its TLS certificate, containing:
β The serverβs public key π
β The Certificate Authority (CA) signature π‘οΈ
β The domain name itβs issued for
3οΈβ£ Key Exchange:
The client validates the certificate with the CAβs public key.
A session key is generated for encryption.
4οΈβ£ Secure Connection Established:
- All further communication is encrypted using symmetric encryption (AES).
π TLS vs SSL: Whatβs the Difference?
Feature | SSL (Deprecated) | TLS (Modern Standard) |
Security | Weak, vulnerable to attacks | Stronger encryption & protection |
Performance | Slower | Faster, optimized handshakes |
Supported Versions | SSL 2.0, SSL 3.0 (Deprecated) | TLS 1.2, TLS 1.3 (Latest) |
Used In | Older web apps | Modern HTTPS websites, APIs |
π TLS 1.3 is the latest version, offering faster performance and stronger encryption.
π Why is TLS/SSL Important for Security?
β
Prevents MITM Attacks β Ensures no one can intercept or modify data.
β
Encrypts Sensitive Data β Protects passwords, credit card info, API requests.
β
Builds Trust & SEO Benefits β Google ranks HTTPS sites higher than HTTP.
π Where is TLS/SSL Used?
π Websites & Browsers (HTTPS) β Protects login pages, payments, personal data.
π APIs & Web Services β Ensures secure data exchange between systems.
π Emails (SMTP over TLS) β Encrypts email communications.
π VPNs & Secure Networks β Protects corporate data over public networks.
π οΈ How to Implement TLS/SSL?
1οΈβ£ Obtain an SSL/TLS Certificate from a trusted Certificate Authority (CA).
Free options: Letβs Encrypt
Paid: DigiCert, GlobalSign, GoDaddy
2οΈβ£ Enable HTTPS on Your Server
For NGINX:
sudo certbot --nginx -d yourdomain.com
For Apache:
sudo certbot --apache -d yourdomain.com
3οΈβ£ Use Strong TLS Versions & Ciphers
Disable weak protocols like SSL 3.0, TLS 1.0
Enforce TLS 1.2 or TLS 1.3
4οΈβ£ Check Your TLS Configuration
- Use SSL Labs Test β https://www.ssllabs.com/ssltest/
π Final Thoughts
TLS/SSL is the backbone of secure internet communication. Without it, hackers could intercept, modify, and steal sensitive data.
β
Always use HTTPS for websites & APIs.
β
Upgrade to TLS 1.3 for better performance & security.
β
Check your SSL certificate regularly to avoid expiration.
Would you like a tutorial on setting up TLS for Node.js or AWS API Gateway? Letβs discuss in the comments! π
About Me π¨βπ»
I'm Faiz A. Farooqui. Software Engineer from Bengaluru, India.
Find out more about me @ faizahmed.in
Subscribe to my newsletter
Read articles from Faiz Ahmed Farooqui directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Faiz Ahmed Farooqui
Faiz Ahmed Farooqui
Principal Technical Consultant at GeekyAnts. Bootstrapping our own Data Centre services available at https://bolt.sh I lead the development and management of innovative software products and frameworks at GeekyAnts, leveraging a wide range of technologies including OpenStack, Postgres, MySQL, GraphQL, Docker, Redis, API Gateway, Dapr, NodeJS, NextJS, and Laravel (PHP). With over 9 years of hands-on experience, I specialize in agile software development, CI/CD implementation, security, scaling, design, architecture, and cloud infrastructure. My expertise extends to Metal as a Service (MaaS), Unattended OS Installation, OpenStack Cloud, Data Centre Automation & Management, and proficiency in utilizing tools like OpenNebula, Firecracker, FirecrackerContainerD, Qemu, and OpenVSwitch. I guide and mentor a team of engineers, ensuring we meet our goals while fostering strong relationships with internal and external stakeholders. I contribute to various open-source projects on GitHub and share industry and technology insights on my blog at blog.faizahmed.in. I hold an Engineer's Degree in Computer Science and Engineering from Raj Kumar Goel Engineering College and have multiple relevant certifications showcased on my LinkedIn skill badges.