Search This Blog
This website contains networking, Data, Security and python related details. BGP details, Checkpoint firewall details, Packet flow, Network engineer real interview questions and answers, SSL hand shake messaging details, VXLAN intro, Network ring details, Port channel, Ether channel and it is protocol such as LACP and PAGP. ARP and ARP types, some basic python programs, DHCP
Featured
- Get link
- X
- Other Apps
SSL Hand shake
Step by Step details:
The following way of messaging order is almost the same way.
1.Hell message from the Client to Server.
==============================
It includes following details.
1.TLS version
2.Cipher suite
3.String of random bytes(Client random).
2. Server Hello:
===========
As soon as, the Servers receive a reply from clients they sent a message to the client which includes the following details,
1. SSL certificate.
2. The Chosen Cipher suite
3. Server random string which generated by the server.
Certificate verification by the client:
===========================
The next step is SSL certificate verification with certificate issuer(A third party certificate provider).
The client is checks about the certificate owners details and who owns that, expiry date and so on.
If it gets success, It goes for next step of action.
Next step is Premaster key verification:
=============================
Client generates a key with server chosen cipher' public key and sent to server to verify it. This can be only decrypted by a private key with server.
Session key created :
===============
Now, the client random and server random and pre master secret verification will happens. Now, all should be the same result.
Client ready:
==========
The client sends a finished message that is encrypted with a session key.
Server is ready:
============
The server sends a finished message encrypted with a session key.
Secure symmetric encryption achieved:
============================
The handshake is completed and the communication is continues.
All the sessions uses Asymmetric cryptography.
- Get link
- X
- Other Apps
Popular Posts
Network and Security Engineers Interview questions.
- Get link
- X
- Other Apps
Comments
Post a Comment