Top Banner
SECURE SOCKET LAYER (SSL) By: Hassan Waqar
17

SECURE SOCKET LAYER (SSL)

Feb 23, 2016

Download

Documents

dirk

By: Hassan Waqar. SECURE SOCKET LAYER (SSL). WHAT IS SECURE SOCET LAYER (SSL) ?. A PROTOCOL for securely transmitting data via the internet. NETWORK LAYER application. Developed by NETSCAPE. SSL PROTOCOL LAYERS. HOW SSL WORKS. - PowerPoint PPT Presentation
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: SECURE SOCKET LAYER (SSL)

SECURE SOCKET LAYER (SSL)

By: Hassan Waqar

Page 2: SECURE SOCKET LAYER (SSL)

WHAT IS SECURE SOCET LAYER (SSL) ? A PROTOCOL for securely

transmitting data via the internet. NETWORK LAYER application. Developed by NETSCAPE.

Page 3: SECURE SOCKET LAYER (SSL)

SSL PROTOCOL LAYERS

Page 4: SECURE SOCKET LAYER (SSL)

HOW SSL WORKSWhen a web browser accesses a site secured by an SSL certificate, the following events happen:

“SSL Handshake”

Page 5: SECURE SOCKET LAYER (SSL)

THE SSL HANDSHAKE

Browser (client) asks the server (website) for its identity.

Server provides its SSL Certificate. Browser examines validity of the

certificate.

Page 6: SECURE SOCKET LAYER (SSL)

THE SSL HANDSHAKE (cont’d)

If trusted, the browser sends confirmation to server.

The web server replies with a digitally-signed message that starts SSL-encrypted exchange of information (“session”).

Page 7: SECURE SOCKET LAYER (SSL)

SSL CRYPTOGRAPHIC SYSTEM

Uses PUBLIC KEY and PRIVATE KEY to encrypt data.

Server sends the public key. 

Browser (client) checks to ensure it trusts the server.

Page 8: SECURE SOCKET LAYER (SSL)

SSL CRYPTOGRAPHIC SYSTEM

The private key is used to encrypt information passed to the browser, which can then be decrypted with the public key.

Page 9: SECURE SOCKET LAYER (SSL)

Encryption Strength

128-bit keys It allows

340,282,366,920,938,463,463,374,607,431,768,211,456 unique encryptions codes.

Page 10: SECURE SOCKET LAYER (SSL)

SSL OBJECTIVES

1. Authentication between client and server: cryptographic techniques.

2. Ensuring data integrity.3. Securing data privacy.

Page 11: SECURE SOCKET LAYER (SSL)

Types of SSL Certificates

1. Domain Validation (DV) For the domain to approve the CSR. Validate domain owner and what they

intend to use the domain for.

Page 12: SECURE SOCKET LAYER (SSL)

Types of SSL Certificates

2. Organization Validation (OV) “high assurance” certificates ensures the identity of the domain

owner aids in identifying potential “phishing”

activities.

Page 13: SECURE SOCKET LAYER (SSL)

Types of SSL Certificates

3. Extended Validation (EV) display the green URL bar promise users the safest possible

experience checks the identity and confirms the

authenticity.

Page 14: SECURE SOCKET LAYER (SSL)

Setting up a new SSL Certificate Admin issues a Certificate Signing

Request. CA validates information and issues

SSL Certificate Admin installs certificate on the

server. Expires within 1 to 3 years.

Page 15: SECURE SOCKET LAYER (SSL)

Transport Layer Security

SSL has more recently known as Transport Layer Security (TLS).

Page 16: SECURE SOCKET LAYER (SSL)

THE END