Level Up Coding

Coding tutorials and news. The developer homepage gitconnected.com && skilled.dev && levelup.dev

Follow publication

Member-only story

Deep Dive Into TLS Handshake

Sunny Sun
Level Up Coding
Published in
6 min readOct 11, 2021

Deep dive into TLS Handshake
Photo by EKATERINA BOLOVTSOVA from Pexels

I wrote an article on how to resolve SSL certificate errors a while ago. The article briefly discussed the TLS handshake. There are a lot more details left uncovered.

Surprisingly, the article became the most viewed among my Medium posts since I started writing technical blogs. I guess readers are interested because the article explains SSL concepts in plain English, which motivated me to write this article.

Let’s dive deep into the TLS handshake process.

Jump ahead:

What is a TLS handshake?

TLS handshake establishes a secure connection between a client and a server. When you visit a website via HTTPS, a TLS handshake happens between your browser and the web server so your browser can communicate with the web server via a secure connection.

The main purpose of TLS handshake is

  • Negotiates Cipher suites and TLS version
  • Authenticating both server and client
  • Exchange keys

There are two common versions of TLS handshakes: TLS 1.2 and TLS 1.3. TLS 1.3 was published in 2018 by IETF as RFC 8446. It is an improved version of TLS 1.2.

In this article, we discuss TLS 1.2 only. If you understand the TLS 1.2 handshake process, TLS 1.3 will be easy as it is a short version.

Overview

The handshake process involves several messages exchanged between the client and server. They can be grouped into four main steps.

  • Client Hello
  • Server Hello
  • Client Key Exchange and Change Cipher Spec
  • Server Change Cipher Spec

The screenshot below shows the handshake process captured by Wireshark.

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Written by Sunny Sun

I am full stack developer. Love coding, learning, writing. Checkout my NestJS course: https://shorturl.at/cpJM7, visit my blog https://coffeethinkcode.com

No responses yet

Write a response