본문 바로가기

IT Infra./Network

SSL/TLS Handshake Process

Handshake Process

The handshake between the client and server in SSL/TLS operates as follows:

  1. Client sends a clientHello message to the server and the client’s random value and supported cipher suites
  2. The server sends a serverhello message to the client and the server’s random value
  3. The server sends its certificate to the client for authentication and may request a certificate from the client.
  4. The server sends serverHelloDone message
  5. If the server requested a certificate from the client, then the client sends it
  6. The client creates a random Pre-Master Secret and encrypts it with the public key from the server’s certificate
  7. The client sends the encrypted Pre-Master Secret to the Server
  8. The server and the client each generate the Master Secret and session keys based on the Pre-Master Secret
  9. The client sends the ChangeCipherSpec notification to the server to begin using the session keys for hashing and encrypting data.
  10. The client sends the clientFinished message.
  11. The server gets the ChangeCipherSpec and switches to symmetric encryption using the session key.
  12. The server sends serverFinished message.
  13. The client and server can now exchange application data using the symmetric encryption and session key.

TLS/SSL also has a process for resuming a session:

  1. The client sends a clientHello message using the Session ID of the session to be resumed
  2. The server checks its cache for the Session ID, if it finds it, then the session is resumed by sending a serverHello Message to the client with the Session ID. Otherwise a completely new handshake is performed
  3. If the Session ID was found, then the handshake resumes at step 9.

'IT Infra. > Network' 카테고리의 다른 글

Source Routing (PBR)  (0) 2018.11.26
IPSec VPN 개념 및 설정  (0) 2018.07.12
SSL-TLS HTTPS 적용  (0) 2018.05.18
HTTP와 SSL에 대한 기본 개념 및 통신과정  (0) 2018.05.18
HTTPS는 HTTP보다 빠르다  (0) 2018.05.18