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]].
 
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]].
  
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 [[User Registration|Registration:User]] 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.
  
 
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

Revision as of 20:34, 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.

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