sslOverview.html 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402
  1. {
  2. title: 'SSL Overview',
  3. crumbs: [
  4. { "User's Guide": '../users/' },
  5. ],
  6. }
  7. <h1>Secure Socket Layer (SSL) Overview</h1>
  8. <p>GoAhead supports the Secure Sockets Layer (SSL) protocol for authenticating systems and encrypting data.
  9. Use of this protocol enables secure data transmission to and from clients in a standards-based manner. The
  10. Secure Sockets Layer protocol is a protocol layer which may be placed between a reliable
  11. connection-oriented network layer protocol (e.g. TCP/IP) and the application protocol layer (e.g. HTTP).
  12. SSL provides for secure communication between client and server by allowing mutual authentication, the use
  13. of digital signatures for integrity, and encryption for privacy.</p>
  14. <p>This following document explains SSL and how to configure SSL in GoAhead. It has heavily borrowed from
  15. the Apache Documentation. Many thanks to the fine folks at Apache for this excellent base material and for
  16. Frederick Hirsch who authored quite a bit of the original material.</p>
  17. <p>If you have a good understanding of SSL and now you want to configure SSL for GoAhead, you may wish
  18. to skip the background and read immediately how to setup
  19. <a href="ssl.html">SSL for GoAhead</a>.</p>
  20. <a id="cryptographicTechniques"></a>
  21. <h2 >Cryptographic Techniques</h2>
  22. <p>Understanding SSL requires an understanding of cryptographic algorithms, message digest functions (aka.
  23. one-way or hash functions), and digital signatures. The following section provides a brief introduction to
  24. the cryptographic foundations of SSL. If you are already familiar with this material, please skip forward
  25. to the <a href="#sslOverview">SSL Overview</a> section.</p>
  26. <h3>Cryptographic Algorithms</h3>
  27. <p>Consider the example of Alice who wants to send a message to her bank to transfer some money. She would
  28. like the message to be private, since it will include information such as her account number and transfer
  29. amount. One solution is to use a cryptographic algorithm, a technique that would transform her message into
  30. an encrypted form, unreadable except by those it is intended for. Once in this form, the message may only
  31. be interpreted through the use of a secret key. Without the key, the message is useless: good cryptographic
  32. algorithms make it so difficult for intruders to decode the original text that it isn't worth their
  33. effort.</p>
  34. <p>There are two categories of cryptographic algorithms: conventional and public key.</p>
  35. <h4><a id="symmetricCryptography"></a>Symmetric Cryptography</h4>
  36. <p>Symmetric cryptography, requires the sender and receiver to share a key: a secret piece of information
  37. that may be used to encrypt or decrypt a message. If this key is secret, then nobody other than the sender
  38. or receiver may read the message. If Alice and the bank know a secret key, then they may send each other
  39. private messages. The task of privately choosing a key before communicating, however, can be
  40. problematic.</p>
  41. <h4><a id="publicKeyCryptography"></a>Public Key Cryptography</h4>
  42. <p>Public key cryptography also known as asymmetric cryptography, solves the key exchange problem by
  43. defining an algorithm which uses two keys, each of which may be used to encrypt a message. If one key is
  44. used to encrypt a message then the other may be used to decrypt it. This makes it possible to receive
  45. secure messages by simply publishing one key (the public key) and keeping the other secret (the private
  46. key).</p>
  47. <p>Anyone may encrypt a message using the public key, but only the owner of the private key will be able to
  48. read it. In this way, you may send private messages to the owner of a key-pair (the bank), by encrypting it
  49. using their public key. Only the bank will be able to decrypt it.</p>
  50. <h3><a id="messageDigests"></a>Message Digests</h3>
  51. <p>Although Alice may encrypt her message to make it private, there is still a concern that someone might
  52. modify her original message or substitute it with a different one, in order to transfer the money to
  53. themselves, for instance. One way of guaranteeing the integrity of Alice's message is to create a concise
  54. summary of her message and send this to the bank as well. Upon receipt of the message, the bank creates its
  55. own summary and compares it with the one Alice sent. If they agree then the message was received
  56. intact.</p>
  57. <p>A summary such as this is called a <b>message digest</b>, <em>one-way function</em> or <em>hash
  58. function</em>. Message digests are used to create short, fixed-length representations of longer,
  59. variable-length messages. Digest algorithms are designed to produce unique digests for different messages.
  60. Message digests are designed to make it too difficult to determine the message from the digest, and also
  61. impossible to find two different messages which create the same digest &mdash; thus eliminating the
  62. possibility of substituting one message for another while maintaining the same digest.</p>
  63. <p>Another challenge that Alice faces is finding a way to send the digest to the bank securely; when this
  64. is achieved, the integrity of the associated message is assured. One way to do this is to include the
  65. digest in a digital signature.</p>
  66. <h3><a id="digitalSignatures"></a>Digital Signatures</h3>
  67. <p>When Alice sends a message to the bank, the bank needs to ensure that the message is really from her, so
  68. an intruder does not request a transaction involving her account. A <em>digital signature</em>, created by
  69. Alice and included with the message, serves this purpose.</p>
  70. <p>Digital signatures are created by encrypting a digest of the message, and other information (such as a
  71. sequence number) with the sender's private key. Though anyone may <em>decrypt</em> the signature using the
  72. public key, only the signer knows the private key. This means that only they may have signed it. Including
  73. the digest in the signature means the signature is only good for that message; it also ensures the
  74. integrity of the message since no one can change the digest and still sign it.</p>
  75. <p>To guard against interception and reuse of the signature by an intruder at a later date, the signature
  76. contains a unique sequence number. This protects the bank from a fraudulent claim from Alice that she did
  77. not send the message &mdash; only she could have signed it (non-repudiation).</p><a id="certificates"></a>
  78. <h2 >Certificates</h2>
  79. <p>Although Alice could have sent a private message to the bank, signed it, and ensured the integrity of
  80. the message, she still needs to be sure that she is really communicating with the bank. This means that she
  81. needs to be sure that the public key she is using corresponds to the bank's private key. Similarly, the
  82. bank also needs to verify that the message signature really corresponds to Alice's signature.</p>
  83. <p>If each party has a certificate which validates the other's identity, confirms the public key, and is
  84. signed by a trusted agency, then they both will be assured that they are communicating with whom they think
  85. they are. Such a trusted agency is called a <em>Certificate Authority</em>, and certificates are used for
  86. authentication.</p>
  87. <h3>Certificate Contents</h3>
  88. <p>A certificate associates a public key with the real identity of an individual, server, or other entity,
  89. known as the subject. As shown in <a href="#table1">Table 1</a>, information about the subject includes
  90. identifying information (the distinguished name), and the public key. It also includes the identification
  91. and signature of the Certificate Authority that issued the certificate, and the period of time during which
  92. the certificate is valid. It may have additional information (or extensions) as well as administrative
  93. information for the Certificate Authority's use, such as a serial number.</p>
  94. <h4><a id="table1"></a>Table 1: Certificate Information</h4>
  95. <table title="cert" class="ui table segment">
  96. <tbody>
  97. <tr>
  98. <td class="four wide">Subject</td>
  99. <td>Distinguished Name, Public Key</td>
  100. </tr>
  101. <tr>
  102. <td>Issuer</td>
  103. <td>Distinguished Name, Signature</td>
  104. </tr>
  105. <tr>
  106. <td>Period of Validity</td>
  107. <td>Not Before Date, Not After Date</td>
  108. </tr>
  109. <tr>
  110. <td class="pivot class">Administrative Information</td>
  111. <td>Version, Serial Number</td>
  112. </tr>
  113. <tr>
  114. <td>Extended Information</td>
  115. <td>Basic Constraints, Netscape Flags, etc.</td>
  116. </tr>
  117. </tbody>
  118. </table>
  119. <p>A distinguished name is used to provide an identity in a specific context &mdash; for instance, an
  120. individual might have a personal certificate as well as one for their identity as an employee.
  121. Distinguished names are defined by the X.509 standard, which defines the fields, field names, and
  122. abbreviations used to refer to the fields (see <a href="#table2">Table 2</a>).</p>
  123. <h4><a id="table2"></a>Table 2: Distinguished Name Information</h4>
  124. <table title="info" class="ui table segment">
  125. <thead>
  126. <tr>
  127. <th>DN Field</th>
  128. <th>Abbrev.</th>
  129. <th>Description</th>
  130. <th>Example</th>
  131. </tr>
  132. </thead>
  133. <tbody>
  134. <tr>
  135. <td>Common Name</td>
  136. <td>CN</td>
  137. <td>Name being certified</td>
  138. <td>CN=Joe Average</td>
  139. </tr>
  140. <tr>
  141. <td>Organization or Company</td>
  142. <td>O</td>
  143. <td>Name is associated with this organization</td>
  144. <td>O=Snake Oil, Ltd.</td>
  145. </tr>
  146. <tr>
  147. <td>Organizational Unit</td>
  148. <td>OU</td>
  149. <td>Name is associated with this organization unit, such as a department</td>
  150. <td>OU=Research Institute</td>
  151. </tr>
  152. <tr>
  153. <td>City/Locality</td>
  154. <td>L</td>
  155. <td>Name is located in this City</td>
  156. <td>L=Snake City</td>
  157. </tr>
  158. <tr>
  159. <td>State/Province</td>
  160. <td>ST</td>
  161. <td>Name is located in this State/Province</td>
  162. <td>ST=Desert</td>
  163. </tr>
  164. <tr>
  165. <td>Country</td>
  166. <td>C</td>
  167. <td>Name is located in this Country (ISO code)</td>
  168. <td>C=XZ</td>
  169. </tr>
  170. </tbody>
  171. </table>
  172. <p>A Certificate Authority may define a policy specifying which distinguished field names are optional, and
  173. which are required. It may also place requirements upon the field contents, as may users of certificates.
  174. As an example, a Netscape browser requires that the Common Name for a certificate representing a server has
  175. a name which matches a wildcard pattern for the domain name of that server, such as
  176. <code>*.snakeoil.com</code></p>
  177. <p>The binary format of a certificate is defined using the ASN.1 notation. This notation defines how to
  178. specify the contents, and encoding rules define how this information is translated into binary form. The
  179. binary encoding of the certificate is defined using Distinguished Encoding Rules (DER), which are based on
  180. the more general Basic Encoding Rules (BER). For those transmissions which cannot handle binary, the binary
  181. form may be translated into an ASCII form by using Base64 encoding. This encoded version is called PEM
  182. encoded (the name comes from "Privacy Enhanced Mail"), when placed between begin and end delimiter lines as
  183. illustrated in the following example.</p>
  184. <h3>Example of a PEM-encoded certificate (snakeoil.crt)</h3>
  185. <pre class="ui code segment">
  186. -----BEGIN CERTIFICATE-----
  187. MIIC7jCCAlegAwIBAgIBATANBgkqhkiG9w0BAQQFADCBqTELMAkGA1UEBhMCWFkx
  188. FTATBgNVBAgTDFNuYWtlIERlc2VydDETMBEGA1PEBxMKU25ha2UgVG93bjEXMBUG
  189. A1UEChMOU25ha2UgT2lsLCBMdGQxHjAcBgNVBAsTFUNlcnRpZmljYXRlIEF1dGhv
  190. cml0eTEVMBMGA1UEAxMMU25ha2UgT2lsIENBMR4wHAYJKoZIhvcNAQkBFg9jYUBz
  191. bmFrZW9pbC5kb20wHhcNOTgxMDIxMDg1ODM2WhcNOTkxMDIxMDg1ODM2WjCBpzEL
  192. MAkGA1UEBhMCWFkxFTATBgNVBAgTDFNuYWtlIELlc2VydDETMBEGA1UEBxMKU25h
  193. a2UgVG93bjEXMBAGA1UEChMOU25ha2UgT2lsLCBMdGQxFzAVBgNVBAsTDldlYnNl
  194. cnZlciBUZWFtMRkwFwYDVQQDExB3d3cuc25ha2VvaWwuZG9tMR8wHQYJKoZIhvcN
  195. AQkBFhB3d3dAc25ha2VvaWwuZG9tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKB
  196. gQDH9Ge/s2zcH+da+rPTx/DPRp3xGjHZ4GG6pCmvADIEtBtKBFAcZ64n+Dy7Np8b
  197. vKR+yy5DGQiijsH1D/j8HlGE+q4TZ8OFk7BNBFazHxFbYI4OKMiCxdKzdif1yfaa
  198. lWoANFlAzlSdbxeEVHoT0K+gT5w3UxwZKv2DLbETzLZyPwIDAQABoyYwJDAPBgNV
  199. HRMECDAGAQH/AgEAMBEGCWCGSAGG+EIBAQQEAwIAQDANBgkqhkiG9w0BAQQFAAOB
  200. gQAZUIHAL4D09oE6Lv2k56Gp38OBDuILvwLg1v1KL8mQR+KFjghCrtpqaztZqcDt
  201. 2q2QoyulCgSzHbEGmi0EsdkPfg6mp0penssIFePYNI+/8u9HT4LuKMJX15hxBam7
  202. dUHzICxBVC1lnHyYGjDuAMhe396lYAn8bCld1/L4NMGBCQ==
  203. -----END CERTIFICATE-----
  204. </pre>
  205. <h3><a id="certificateAuthorities"></a>Certificate Authorities</h3>
  206. <p>By first verifying the information in a certificate request before granting the certificate, the
  207. Certificate Authority assures the identity of the private key owner of a key-pair. For instance, if Alice
  208. requests a personal certificate, the Certificate Authority must first make sure that Alice really is the
  209. person the certificate request claims.</p>
  210. <h4>Certificate Chains</h4>
  211. <p>A Certificate Authority may also issue a certificate for another Certificate Authority. When examining a
  212. certificate, Alice may need to examine the certificate of the issuer, for each parent Certificate
  213. Authority, until reaching one which she has confidence in. She may decide to trust only certificates with a
  214. limited chain of issuers, to reduce her risk of a "bad" certificate in the chain.</p>
  215. <h4>Creating a Root-Level CA</h4>
  216. <p>As noted earlier, each certificate requires an issuer to assert the validity of the identity of the
  217. certificate subject, up to the top-level Certificate Authority (CA). This presents a problem: Since this is
  218. who vouches for the certificate of the top-level authority, which has no issuer? In this unique case, the
  219. certificate is "self-signed", so the issuer of the certificate is the same as the subject. As a result, one
  220. must exercise extra care in trusting a self-signed certificate. The wide publication of a public key by the
  221. root authority reduces the risk in trusting this key &mdash; it would be obvious if someone else publicized
  222. a key claiming to be the authority. Browsers are preconfigured to trust well-known certificate
  223. authorities.</p>
  224. <p>A number of companies, such as <a href="http://www.thawte.com/">Thawte</a> and <a href=
  225. "http://www.verisign.com/">VeriSign</a> have established themselves as Certificate Authorities. These
  226. companies provide the following services:</p>
  227. <ul>
  228. <li>Verifying certificate requests</li>
  229. <li>Processing certificate requests</li>
  230. <li>Issuing and managing certificates</li>
  231. </ul>
  232. <p>It is also possible to create your own Certificate Authority. Although risky in the Internet
  233. environment, it may be useful within an Intranet where the organization can easily verify the identities of
  234. individuals and servers.</p>
  235. <h4>Certificate Management</h4>
  236. <p>Establishing a Certificate Authority is a responsibility which requires a solid administrative,
  237. technical, and management framework. Certificate Authorities not only issue certificates, they also manage
  238. them &mdash; that is, they determine how long certificates are valid, they renew them, and they keep lists
  239. of certificates that have already been issued but are no longer valid (Certificate Revocation Lists, or
  240. CRLs). Say Alice is entitled to a certificate as an employee of a company. Say too, that the certificate
  241. needs to be revoked when Alice leaves the company. Since certificates are objects that get passed around,
  242. it is impossible to tell from the certificate alone that it has been revoked. When examining certificates
  243. for validity, therefore, it is necessary to contact the issuing Certificate Authority to check CRLs &mdash;
  244. this is not usually an automated part of the process.</p>
  245. <h3>Note</h3>
  246. <p>If you use a Certificate Authority that is not configured into browsers by default, it is necessary to
  247. load the Certificate Authority certificate into the browser, enabling the browser to validate server
  248. certificates signed by that Certificate Authority. Doing so may be dangerous, since once loaded, the
  249. browser will accept all certificates signed by that Certificate Authority.</p>
  250. <a id="sslOverview"></a>
  251. <h2 >Secure Sockets Layer (SSL) Overview</h2>
  252. <p>The Secure Sockets Layer protocols designed to support a range of choices for specific algorithms used for
  253. cryptography, digests, and signatures. This allows algorithm selection for specific servers to be made based on
  254. legal, export or other concerns, and also enables the protocol to take advantage of new algorithms. Choices are
  255. negotiated between client and server at the start of establishing a protocol session.</p>
  256. <h3>Table 4: Versions of the SSL protocol</h3>
  257. <a id="table4"></a>
  258. <table title="protocols" class="ui table segment">
  259. <thead>
  260. <tr>
  261. <th>Version</th>
  262. <th>Source</th>
  263. <th>Description</th>
  264. </tr>
  265. </thead>
  266. <tbody>
  267. <tr>
  268. <td>SSL v2.0</td>
  269. <td>Vendor Standard (from Netscape Corp.)</td>
  270. <td>First SSL protocol for which implementations exists</td>
  271. </tr>
  272. <tr>
  273. <td>SSL v3.0</td>
  274. <td>Expired Internet Draft (from Netscape Corp.)</td>
  275. <td>Revisions to prevent specific security attacks, add non-RSA ciphers, and support for
  276. certificate chains</td>
  277. </tr>
  278. <tr>
  279. <td>TLS v1.0</td>
  280. <td>Proposed Internet Standard (from IETF)</td>
  281. <td>Revision of SSL 3.0 to update the MAC layer to HMAC, add block padding for block ciphers,
  282. message order standardization and more alert messages.</td>
  283. </tr>
  284. </tbody>
  285. </table>
  286. <p>There are a number of versions of the SSL protocol, as shown in <a href="#table4">Table 4</a>. As noted
  287. there, one of the benefits in SSL 3.0 is that it adds support of certificate chain loading. This feature allows
  288. a server to pass a server certificate along with issuer certificates to the browser. Chain loading also permits
  289. the browser to validate the server certificate, even if Certificate Authority certificates are not installed
  290. for the intermediate issuers, since they are included in the certificate chain. SSL 3.0 is the basis for the
  291. Transport Layer Security protocol standard, currently in development by the Internet Engineering Task Force
  292. (IETF).</p>
  293. <h3>Session Establishment</h3>
  294. <p>The SSL session is established by following a handshake sequence between client and server. This sequence
  295. may vary, depending on whether the server is configured to provide a server certificate or request a client
  296. certificate. Though cases exist where additional handshake steps are required for management of cipher
  297. information, this article summarizes one common scenario: see the SSL specification for the full range of
  298. possibilities.</p>
  299. <h3>Note</h3>
  300. <p>Once an SSL session has been established it may be reused, thus avoiding the performance penalty of
  301. repeating the many steps needed to start a session. For this the server assigns each SSL session a unique
  302. session identifier which is cached in the server and which the client can use on forthcoming connections to
  303. reduce the handshake (until the session identifier expires in the cache of the server).</p>
  304. <p class="figure">The elements of the handshake sequence, as used by the client and server, are listed
  305. below:</p>
  306. <ol>
  307. <li>Negotiate the Cipher Suite to be used during data transfer</li>
  308. <li>Establish and share a session key between client and server</li>
  309. <li>Optionally authenticate the server to the client</li>
  310. <li>Optionally authenticate the client to the server</li>
  311. </ol>
  312. <p>The first step, Cipher Suite Negotiation, allows the client and server to choose a Cipher Suite supportable
  313. by both of them. The SSL3.0 protocol specification defines 31 Cipher Suites. A Cipher Suite is defined by the
  314. following components:</p>
  315. <ul>
  316. <li>Key Exchange Method</li>
  317. <li>Cipher for Data Transfer</li>
  318. <li>Message Digest for creating the Message Authentication Code (MAC)</li>
  319. </ul>
  320. <p>These three elements are described in the sections that follow.</p>
  321. <h3>Key Exchange Method</h3>
  322. <p>The key exchange method defines how the shared secret symmetric cryptography key used for application data
  323. transfer will be agreed upon by client and server. SSL 2.0 uses RSA key exchange only, while SSL 3.0 supports a
  324. choice of key exchange algorithms including the RSA key exchange when certificates are used, and Diffie-Hellman
  325. key exchange for exchanging keys without certificates and without prior communication between client and
  326. server.</p>
  327. <p>One variable in the choice of key exchange methods is digital signatures &mdash; whether or not to use them,
  328. and if so, what kind of signatures to use. Signing with a private key provides assurance against a
  329. man-in-the-middle-attack during the information exchange used in generating the shared key.</p>
  330. <h3>Cipher for Data Transfer</h3>
  331. <p>SSL uses the conventional cryptography algorithm (symmetric cryptography) described earlier for encrypting
  332. messages in a session. There are nine choices, including the choice to perform no encryption:</p>
  333. <ul>
  334. <li>No encryption</li>
  335. <li>Stream Ciphers
  336. <ul>
  337. <li>RC4 with 40-bit keys</li>
  338. <li>RC4 with 128-bit keys</li>
  339. </ul>
  340. </li>
  341. <li>CBC Block Ciphers
  342. <ul>
  343. <li>RC2 with 40 bit key</li>
  344. <li>DES with 40 bit key</li>
  345. <li>DES with 56 bit key</li>
  346. <li>Triple-DES with 168 bit key</li>
  347. <li>Idea (128 bit key)</li>
  348. <li>Fortezza (96 bit key)</li>
  349. </ul>
  350. </li>
  351. </ul>
  352. <p>Here "CBC" refers to Cipher Block Chaining, which means that a portion of the previously encrypted cipher
  353. text is used in the encryption of the current block. "DES" refers to the Data Encryption Standard, which has a
  354. number of variants (including DES40 and 3DES_EDE). "Idea" is one of the best and cryptographically strongest
  355. available algorithms, and "RC2" is a proprietary algorithm from RSA DSI.</p>
  356. <h3>Digest Function</h3>
  357. <p>The choice of digest function determines how a digest is created from a record unit. SSL supports the
  358. following:</p>
  359. <ul>
  360. <li>No digest (Null choice)</li>
  361. <li>MD5, a 128-bit hash</li>
  362. <li>Secure Hash Algorithm (SHA-1), a 160-bit hash</li>
  363. </ul>
  364. <p>The message digest is used to create a Message Authentication Code (MAC) which is encrypted with the message
  365. to provide integrity and to prevent against replay attacks.</p>
  366. <h3>Handshake Sequence Protocol</h3>
  367. <p>The handshake sequence uses three protocols:</p>
  368. <ul>
  369. <li>The <dfn>SSL Handshake Protocol</dfn> for performing the client and server SSL session
  370. establishment.</li>
  371. <li>The <dfn>SSL Change Cipher Spec Protocol</dfn> for actually establishing agreement on the Cipher Suite
  372. for the session.</li>
  373. <li>The <dfn>SSL Alert Protocol</dfn> for conveying SSL error messages between client and server.</li>
  374. </ul>
  375. <p>These protocols, as well as application protocol data, are encapsulated in the <dfn>SSL Record
  376. Protocol</dfn>. An encapsulated protocol is transferred as data by the lower layer protocol, which does not
  377. examine the data. The encapsulated protocol has no knowledge of the underlying protocol.</p>
  378. <p>The encapsulation of SSL control protocols by the record protocol means that if an active session is
  379. renegotiated the control protocols will be transmitted securely. If there were no session before, then the Null
  380. cipher suite is used, which means there is no encryption and messages have no integrity digests until the
  381. session has been established.</p>
  382. <h3>Data Transfer</h3>
  383. <p>The SSL Record Protocol is used to transfer application and SSL Control data between the client and server,
  384. possibly fragmenting this data into smaller units, or combining multiple higher level protocol data messages
  385. into single units. It may compress, attach digest signatures, and encrypt these units before transmitting them
  386. using the underlying reliable transport protocol (Note: currently all major SSL implementations lack support
  387. for compression).</p>
  388. <h3 class="figure">Securing HTTP Communication</h3>
  389. <p>One common use of SSL is to secure Web HTTP communication between a browser and a web server. This case does
  390. not preclude the use of non-secured HTTP. The secure version is mainly plain HTTP over SSL (named HTTPS), but
  391. with one major difference: it uses the URL scheme <i>https</i> rather than <i>http</i> and a
  392. different server port (by default 443).</p>