sslOverview.html 35 KB

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