vote up 0 vote down star

What is difference between https protocol and SSL Certificate that we use in web browser?

Aren't both of these used to encrypt communication between client (browser) and server?

flag

11% accept rate
3  
This is like asking, "What's the difference between driver's license and driving?" – Matthew Flaschen May 13 at 5:53
So suppose there is a webapp running already on SSL port (https). Why would you want to have a Certificate for this webapp? – vicky21 May 14 at 0:29

3 Answers

vote up 5 vote down

HTTPS is HTTP (HyperText Transfer Protocol) plus SSL (Secure Socket Layer). You need a certificate to use any protocol that uses SSL.

SSL allows arbitrary protocols to be communicated securely. It enables clients to (a) verify that they are indeed communicating with the server they expect and not a man-in-the-middle and (b) encrypt the network traffic so that parties other than the client and server cannot see the communication.

An SSL certificate contains a public key and certificate issuer. Not only can clients use the certificate to communicate with a server, clients can verify that the certificate was cryptographically signed by an official Certificate Authority. For example, if your browser trusts the VeriSign Certificate Authority, and VeriSign signs my SSL certificate, your browser will inherently trust my SSL certificate.

There's some good reading here: http://en.wikipedia.org/wiki/Transport_Layer_Security

link|flag
vote up 2 vote down

Two pieces of one solution.

https is the protocol that defines how the client and server are going to negotiate a secure connection.

The SSL Certificate is the document that they will use to agree upon the servers authenticity.

link|flag
vote up 0 vote down

Another difference is that it may not even be and old-school style SSL cert but instead contains a TLS certificate which doesn't use https protocol, but uses http instead.

http://en.wikipedia.org/wiki/Transport_Layer_Security

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.