Difference between revisions of "SSL"

From Hackepedia
Jump to navigationJump to search
Line 1: Line 1:
Originally created by the people at Netscape, the Secure Socket Layer (SSL) has been adopted as a standard for transfering data over the internet. If you've ever been to a website where the URL starts with <nowiki>https://</nowiki> instead of the typical <nowiki>http://</nowiki>, you are using SSL. This means there is an encrypted tunnel between you and the remote machine, so everything transferred can not be read trivially if someone is [[sniffing]]. You will want to install SSL on your webserver if you intend on [[Registration:Host| allowing users to register for anything]] on your website.
+
Originally created by the people at Netscape, the Secure Socket Layer (SSL) has been adopted as a standard for transfering data over the internet. If you've ever been to a website where the URL starts with <nowiki>https://</nowiki> instead of the typical <nowiki>http://</nowiki>, you are using SSL. This means there is an encrypted tunnel between you and the remote machine, so everything transferred can not be read trivially if someone is [[sniffing]]. You will want to install SSL on your webserver if you intend on [[Registration:Host| allowing users to register]] for anything on your website.
  
 
Only enter personal information or credit card information into a website that is using <nowiki>https://</nowiki> in the URL, this is covered in the [[Registration:User|User Registration]] process.
 
Only enter personal information or credit card information into a website that is using <nowiki>https://</nowiki> in the URL, this is covered in the [[Registration:User|User Registration]] process.
Line 5: Line 5:
 
To get an idea of what happens behind the scenes when you surf the web using your browser to an SSL website:
 
To get an idea of what happens behind the scenes when you surf the web using your browser to an SSL website:
 
  $ openssl s_client -connect [[variables|http://www.example.com]]:443
 
  $ openssl s_client -connect [[variables|http://www.example.com]]:443
 +
 +
SSL can be used for almost any transport layer protocol, but http is the most common.

Revision as of 20:37, 29 November 2005

Originally created by the people at Netscape, the Secure Socket Layer (SSL) has been adopted as a standard for transfering data over the internet. If you've ever been to a website where the URL starts with https:// instead of the typical http://, you are using SSL. This means there is an encrypted tunnel between you and the remote machine, so everything transferred can not be read trivially if someone is sniffing. You will want to install SSL on your webserver if you intend on allowing users to register for anything on your website.

Only enter personal information or credit card information into a website that is using https:// in the URL, this is covered in the User Registration process.

To get an idea of what happens behind the scenes when you surf the web using your browser to an SSL website:

$ openssl s_client -connect http://www.example.com:443

SSL can be used for almost any transport layer protocol, but http is the most common.