Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How does SSL work?

Where is the certificate installed on the client (or browser?) and the server (or web server?)?

How does the trust/encryption/authentication process start when you enter the URL into the browser and get the page from the server?

How does the HTTPS protocol recognize the certificate? Why can't HTTP work with certificates when it is the certificates which do all the trust/encryption/authentication work?

share|improve this question
Can you explain how this is related to a particular programming problem? – StingyJack Jan 22 '09 at 19:45
9  
I think this is a reasonable question - understanding how SSL works is step 1, implementing it correctly is step 2 through step infinity. – synthesizerpatel Feb 22 '12 at 12:35
3  
Here's a good run-through of the https handshake process at a byte level – Rob Church Apr 29 at 13:55

1 Answer

SSL does two things:

  1. Encrypts your http session.
  2. Authenticates the server to the client.

You seem to be focusing on #2. An SSL certificate is a bunch of information about a website (it's domain name, the company that owns it, etc.) that is signed cryptographically using a private key.

This file is stored on the server. When your browser requests a site using the HTTPS protocol, that server sends it's certificate to the browser.

The browser validates that the domain name on the certificate matches the domain name of the site, also makes sure that it's not expired, etc., and validates that the cryptographic signature on the certificate is correct.

Now the problem is that we can tell if the signature is correct, but how do we know WHO signed it? In order to solve this problem, each browser (and some operating systems) automatically trust a number of so-called "root" certificates. There are over a hundred root certificates on most computers. When an administrator generates an SSL certificate, he has his certificate signed by the owner of one of these root certificates. This includes companies like Verisign and Thawte as well as a hundred others around the world (including some government agencies).

The browser validates that the certificate is signed by one of the root certificates that it already trusts. The browser may also check a revocation list to see if a previously valid certificate has been revoked (which may happen if a certificate is issued erroneously to the wrong person). If any of these validation steps fails, the browser will display an error message to the user.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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