source: draft-ietf-httpbis-authscheme-registrations/latest/draft-ietf-httpbis-authscheme-registrations.html @ 1852

Last change on this file since 1852 was 1845, checked in by julian.reschke@…, 11 years ago

update to latest version of rfc2629.xslt, bump up document dates

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/html;charset=utf-8
File size: 22.6 KB
Line 
1<!DOCTYPE html
2  PUBLIC "-//W3C//DTD HTML 4.01//EN">
3<html lang="en">
4   <head profile="http://www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">
5      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6      <title>Initial Hypertext&nbsp;Transfer&nbsp;Protocol&nbsp;(HTTP)
7         Authentication&nbsp;Scheme&nbsp;Registrations
8      </title><script>
9var buttonsAdded = false;
10
11function init() {
12  var fb = document.createElement("div");
13  fb.className = "feedback noprint";
14  fb.setAttribute("onclick", "feedback();");
15  fb.appendChild(document.createTextNode("feedback"));
16
17  var bodyl = document.getElementsByTagName("body");
18  bodyl.item(0).appendChild(fb);
19}
20
21function feedback() {
22  toggleButtonsToElementsByName("h1");
23  toggleButtonsToElementsByName("h2");
24  toggleButtonsToElementsByName("h3");
25  toggleButtonsToElementsByName("h4");
26 
27  buttonsAdded = !buttonsAdded;
28}
29
30function toggleButtonsToElementsByName(name) {
31  var list = document.getElementsByTagName(name);
32  for (var i = 0; i < list.length; i++) {
33    toggleButton(list.item(i));
34  }
35}
36
37function toggleButton(node) {
38  if (! buttonsAdded) {
39 
40    // docname
41    var template = "mailto:ietf-http-wg@w3.org?subject={docname},%20%22{section}%22&body=<{ref}>:";
42
43    var id = node.getAttribute("id");
44    // better id available?
45    var titlelinks = node.getElementsByTagName("a");
46    for (var i = 0; i < titlelinks.length; i++) {
47      var tl = titlelinks.item(i);
48      if (tl.getAttribute("id")) {
49        id = tl.getAttribute("id");
50      }
51    }
52
53    // ref
54    var ref = window.location.toString();
55    var hash = ref.indexOf("#");
56    if (hash != -1) {
57      ref = ref.substring(0, hash);
58    }
59    if (id != "") {
60      ref += "#" + id;
61    }
62   
63    // docname
64    var docname = "draft-ietf-httpbis-authscheme-registrations-latest";
65
66    // section
67    var section = node.textContent;
68    section = section.replace("\u00a0", " ");
69   
70    // build URI from template
71    var uri = template.replace("{docname}", encodeURIComponent(docname));
72    uri = uri.replace("{section}", encodeURIComponent(section));
73    uri = uri.replace("{ref}", encodeURIComponent(ref));
74 
75    var button = document.createElement("a");
76    button.className = "fbbutton noprint";
77    button.setAttribute("href", uri);
78    button.appendChild(document.createTextNode("send feedback"));
79    node.appendChild(button);
80  }
81  else {
82    var buttons = node.getElementsByTagName("a");
83    for (var i = 0; i < buttons.length; i++) {
84      var b = buttons.item(i);
85      if (b.className == "fbbutton noprint") {
86        node.removeChild(b);
87      }
88    }
89  }
90}</script><style type="text/css" title="Xml2Rfc (sans serif)">
91a {
92  text-decoration: none;
93}
94a.smpl {
95  color: black;
96}
97a:hover {
98  text-decoration: underline;
99}
100a:active {
101  text-decoration: underline;
102}
103address {
104  margin-top: 1em;
105  margin-left: 2em;
106  font-style: normal;
107}
108body {
109  color: black;
110  font-family: verdana, helvetica, arial, sans-serif;
111  font-size: 10pt;
112  margin-right: 2em;
113}
114cite {
115  font-style: normal;
116}
117dl {
118  margin-left: 2em;
119}
120ul.empty {
121  list-style-type: none;
122}
123ul.empty li {
124  margin-top: .5em;
125}
126dl p {
127  margin-left: 0em;
128}
129dt {
130  margin-top: .5em;
131}
132h1 {
133  font-size: 14pt;
134  line-height: 21pt;
135  page-break-after: avoid;
136}
137h1.np {
138  page-break-before: always;
139}
140h1 a {
141  color: #333333;
142}
143h2 {
144  font-size: 12pt;
145  line-height: 15pt;
146  page-break-after: avoid;
147}
148h3, h4, h5, h6 {
149  font-size: 10pt;
150  page-break-after: avoid;
151}
152h2 a, h3 a, h4 a, h5 a, h6 a {
153  color: black;
154}
155img {
156  margin-left: 3em;
157}
158li {
159  margin-left: 2em;
160}
161ol {
162  margin-left: 2em;
163}
164ol.la {
165  list-style-type: lower-alpha;
166}
167ol.ua {
168  list-style-type: upper-alpha;
169}
170ol p {
171  margin-left: 0em;
172}
173p {
174  margin-left: 2em;
175}
176pre {
177  margin-left: 3em;
178  background-color: lightyellow;
179  padding: .25em;
180  page-break-inside: avoid;
181}
182pre.text2 {
183  border-style: dotted;
184  border-width: 1px;
185  background-color: #f0f0f0;
186  width: 69em;
187}
188pre.inline {
189  background-color: white;
190  padding: 0em;
191}
192pre.text {
193  border-style: dotted;
194  border-width: 1px;
195  background-color: #f8f8f8;
196  width: 69em;
197}
198pre.drawing {
199  border-style: solid;
200  border-width: 1px;
201  background-color: #f8f8f8;
202  padding: 2em;
203}
204table {
205  margin-left: 2em;
206}
207table.tt {
208  vertical-align: top;
209}
210table.full {
211  border-style: outset;
212  border-width: 1px;
213}
214table.headers {
215  border-style: outset;
216  border-width: 1px;
217}
218table.tt td {
219  vertical-align: top;
220}
221table.full td {
222  border-style: inset;
223  border-width: 1px;
224}
225table.tt th {
226  vertical-align: top;
227}
228table.full th {
229  border-style: inset;
230  border-width: 1px;
231}
232table.headers th {
233  border-style: none none inset none;
234  border-width: 1px;
235}
236table.left {
237  margin-right: auto;
238}
239table.right {
240  margin-left: auto;
241}
242table.center {
243  margin-left: auto;
244  margin-right: auto;
245}
246caption {
247  caption-side: bottom;
248  font-weight: bold;
249  font-size: 9pt;
250  margin-top: .5em;
251}
252
253table.header {
254  border-spacing: 1px;
255  width: 95%;
256  font-size: 10pt;
257  color: white;
258}
259td.top {
260  vertical-align: top;
261}
262td.topnowrap {
263  vertical-align: top;
264  white-space: nowrap;
265}
266table.header td {
267  background-color: gray;
268  width: 50%;
269}
270td.reference {
271  vertical-align: top;
272  white-space: nowrap;
273  padding-right: 1em;
274}
275thead {
276  display:table-header-group;
277}
278ul.toc, ul.toc ul {
279  list-style: none;
280  margin-left: 1.5em;
281  padding-left: 0em;
282}
283ul.toc li {
284  line-height: 150%;
285  font-weight: bold;
286  font-size: 10pt;
287  margin-left: 0em;
288}
289ul.toc li li {
290  line-height: normal;
291  font-weight: normal;
292  font-size: 9pt;
293  margin-left: 0em;
294}
295li.excluded {
296  font-size: 0pt;
297}
298ul p {
299  margin-left: 0em;
300}
301
302.comment {
303  background-color: yellow;
304}
305.center {
306  text-align: center;
307}
308.error {
309  color: red;
310  font-style: italic;
311  font-weight: bold;
312}
313.figure {
314  font-weight: bold;
315  text-align: center;
316  font-size: 9pt;
317}
318.filename {
319  color: #333333;
320  font-weight: bold;
321  font-size: 12pt;
322  line-height: 21pt;
323  text-align: center;
324}
325.fn {
326  font-weight: bold;
327}
328.hidden {
329  display: none;
330}
331.left {
332  text-align: left;
333}
334.right {
335  text-align: right;
336}
337.title {
338  color: #990000;
339  font-size: 18pt;
340  line-height: 18pt;
341  font-weight: bold;
342  text-align: center;
343  margin-top: 36pt;
344}
345.vcardline {
346  display: block;
347}
348.warning {
349  font-size: 14pt;
350  background-color: yellow;
351}
352.feedback {
353  position: fixed;
354  bottom: 1%;
355  right: 1%;
356  padding: 3px 5px;
357  color: white;
358  border-radius: 5px;
359  background: #a00000;
360  border: 1px solid silver;
361}
362.fbbutton {
363  margin-left: 1em;
364  color: #303030;
365  font-size: small;
366  font-weight: normal;
367  background: #d0d000;
368  padding: 1px 4px;
369  border: 1px solid silver;
370  border-radius: 5px;
371}
372
373@media print {
374  .noprint {
375    display: none;
376  }
377 
378  a {
379    color: black;
380    text-decoration: none;
381  }
382
383  table.header {
384    width: 90%;
385  }
386
387  td.header {
388    width: 50%;
389    color: black;
390    background-color: white;
391    vertical-align: top;
392    font-size: 12pt;
393  }
394
395  ul.toc a:nth-child(2)::after {
396    content: leader('.') target-counter(attr(href), page);
397  }
398 
399  ul.ind li li a {
400    content: target-counter(attr(href), page);
401  }
402 
403  .print2col {
404    column-count: 2;
405    -moz-column-count: 2;
406    column-fill: auto;
407  }
408}
409
410@page {
411  @top-left {
412       content: "Internet-Draft";
413  }
414  @top-right {
415       content: "September 2012";
416  }
417  @top-center {
418       content: "HTTP Authentication Scheme Registrations";
419  }
420  @bottom-left {
421       content: "Reschke";
422  }
423  @bottom-center {
424       content: "Expires March 5, 2013";
425  }
426  @bottom-right {
427       content: "[Page " counter(page) "]";
428  }
429}
430
431@page:first {
432    @top-left {
433      content: normal;
434    }
435    @top-right {
436      content: normal;
437    }
438    @top-center {
439      content: normal;
440    }
441}
442</style><link rel="Contents" href="#rfc.toc">
443      <link rel="Author" href="#rfc.authors">
444      <link rel="Copyright" href="#rfc.copyrightnotice">
445      <link rel="Chapter" title="1 Introduction" href="#rfc.section.1">
446      <link rel="Chapter" title="2 Security Considerations" href="#rfc.section.2">
447      <link rel="Chapter" title="3 IANA Considerations" href="#rfc.section.3">
448      <link rel="Chapter" href="#rfc.section.4" title="4 Normative References">
449      <link rel="Appendix" title="A Initial Registry Contents" href="#rfc.section.A">
450      <link rel="Appendix" title="B Change Log (to be removed by RFC Editor before publication)" href="#rfc.section.B">
451      <meta name="generator" content="http://greenbytes.de/tech/webdav/rfc2629.xslt, Revision 1.588, 2012-08-25 12:28:24, XSLT vendor: SAXON 8.9 from Saxonica http://www.saxonica.com/">
452      <link rel="schema.dct" href="http://purl.org/dc/terms/">
453      <meta name="dct.creator" content="Reschke, J. F.">
454      <meta name="dct.identifier" content="urn:ietf:id:draft-ietf-httpbis-authscheme-registrations-latest">
455      <meta name="dct.issued" scheme="ISO8601" content="2012-09-01">
456      <meta name="dct.abstract" content="This document registers Hypertext Transfer Protocol (HTTP) authentication schemes which have been defined in standards-track RFCs before the IANA HTTP Authentication Scheme Registry was established.">
457      <meta name="description" content="This document registers Hypertext Transfer Protocol (HTTP) authentication schemes which have been defined in standards-track RFCs before the IANA HTTP Authentication Scheme Registry was established.">
458   </head>
459   <body onload="init();">
460      <table class="header">
461         <tbody>
462            <tr>
463               <td class="left">HTTPbis Working Group</td>
464               <td class="right">J. Reschke</td>
465            </tr>
466            <tr>
467               <td class="left">Internet-Draft</td>
468               <td class="right">greenbytes</td>
469            </tr>
470            <tr>
471               <td class="left">Intended status: Informational</td>
472               <td class="right">September 1, 2012</td>
473            </tr>
474            <tr>
475               <td class="left">Expires: March 5, 2013</td>
476               <td class="right"></td>
477            </tr>
478         </tbody>
479      </table>
480      <p class="title">Initial Hypertext&nbsp;Transfer&nbsp;Protocol&nbsp;(HTTP) Authentication&nbsp;Scheme&nbsp;Registrations<br><span class="filename">draft-ietf-httpbis-authscheme-registrations-latest</span></p>
481      <h1 id="rfc.abstract"><a href="#rfc.abstract">Abstract</a></h1>
482      <p>This document registers Hypertext Transfer Protocol (HTTP) authentication schemes which have been defined in standards-track
483         RFCs before the IANA HTTP Authentication Scheme Registry was established.
484      </p>
485      <h1 id="rfc.note.1"><a href="#rfc.note.1">Editorial Note (To be removed by RFC Editor)</a></h1>
486      <p>Discussion of this draft takes place on the HTTPBIS working group mailing list (ietf-http-wg@w3.org), which is archived at &lt;<a href="http://lists.w3.org/Archives/Public/ietf-http-wg/">http://lists.w3.org/Archives/Public/ietf-http-wg/</a>&gt;.
487      </p> 
488      <p>The current issues list is at &lt;<a href="http://trac.tools.ietf.org/wg/httpbis/trac/query?component=authscheme-registrations">http://trac.tools.ietf.org/wg/httpbis/trac/query?component=authscheme-registrations</a>&gt; and related documents (including fancy diffs) can be found at &lt;<a href="http://tools.ietf.org/wg/httpbis/">http://tools.ietf.org/wg/httpbis/</a>&gt;.
489      </p> 
490      <p>The changes in this draft are summarized in <a href="#changes.since.04" title="Since draft-ietf-httpbis-authscheme-registrations-04">Appendix&nbsp;B.5</a>.
491      </p>
492      <h1><a id="rfc.status" href="#rfc.status">Status of This Memo</a></h1>
493      <p>This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.</p>
494      <p>Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute
495         working documents as Internet-Drafts. The list of current Internet-Drafts is at <a href="http://datatracker.ietf.org/drafts/current/">http://datatracker.ietf.org/drafts/current/</a>.
496      </p>
497      <p>Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other
498         documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work
499         in progress”.
500      </p>
501      <p>This Internet-Draft will expire on March 5, 2013.</p>
502      <h1><a id="rfc.copyrightnotice" href="#rfc.copyrightnotice">Copyright Notice</a></h1>
503      <p>Copyright © 2012 IETF Trust and the persons identified as the document authors. All rights reserved.</p>
504      <p>This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights
505         and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License
506         text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified
507         BSD License.
508      </p>
509      <hr class="noprint">
510      <h1 class="np" id="rfc.toc"><a href="#rfc.toc">Table of Contents</a></h1>
511      <ul class="toc">
512         <li><a href="#rfc.section.1">1.</a>&nbsp;&nbsp;&nbsp;<a href="#introduction">Introduction</a></li>
513         <li><a href="#rfc.section.2">2.</a>&nbsp;&nbsp;&nbsp;<a href="#security.considerations">Security Considerations</a></li>
514         <li><a href="#rfc.section.3">3.</a>&nbsp;&nbsp;&nbsp;<a href="#iana.considerations">IANA Considerations</a></li>
515         <li><a href="#rfc.section.4">4.</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.references">Normative References</a></li>
516         <li><a href="#rfc.authors">Author's Address</a></li>
517         <li><a href="#rfc.section.A">A.</a>&nbsp;&nbsp;&nbsp;<a href="#initial.registry.contents">Initial Registry Contents</a></li>
518         <li><a href="#rfc.section.B">B.</a>&nbsp;&nbsp;&nbsp;<a href="#change.log">Change Log (to be removed by RFC Editor before publication)</a><ul>
519               <li><a href="#rfc.section.B.1">B.1</a>&nbsp;&nbsp;&nbsp;<a href="#changes.since.00">Since draft-ietf-httpbis-authscheme-registrations-00</a></li>
520               <li><a href="#rfc.section.B.2">B.2</a>&nbsp;&nbsp;&nbsp;<a href="#changes.since.01">Since draft-ietf-httpbis-authscheme-registrations-01</a></li>
521               <li><a href="#rfc.section.B.3">B.3</a>&nbsp;&nbsp;&nbsp;<a href="#changes.since.02">Since draft-ietf-httpbis-authscheme-registrations-02</a></li>
522               <li><a href="#rfc.section.B.4">B.4</a>&nbsp;&nbsp;&nbsp;<a href="#changes.since.03">Since draft-ietf-httpbis-authscheme-registrations-03</a></li>
523               <li><a href="#rfc.section.B.5">B.5</a>&nbsp;&nbsp;&nbsp;<a href="#changes.since.04">Since draft-ietf-httpbis-authscheme-registrations-04</a></li>
524            </ul>
525         </li>
526      </ul>
527      <h1 id="rfc.section.1" class="np"><a href="#rfc.section.1">1.</a>&nbsp;<a id="introduction" href="#introduction">Introduction</a></h1>
528      <p id="rfc.section.1.p.1">This document registers Hypertext Transfer Protocol (HTTP) authentication schemes which have been defined in standards-track
529         RFCs before the IANA HTTP Authentication Scheme Registry was established.
530      </p>
531      <h1 id="rfc.section.2"><a href="#rfc.section.2">2.</a>&nbsp;<a id="security.considerations" href="#security.considerations">Security Considerations</a></h1>
532      <p id="rfc.section.2.p.1">There are no security considerations related to the registration itself.</p>
533      <h1 id="rfc.section.3"><a href="#rfc.section.3">3.</a>&nbsp;<a id="iana.considerations" href="#iana.considerations">IANA Considerations</a></h1>
534      <p id="rfc.section.3.p.1"> <a href="#initial.registry.contents" title="Initial Registry Contents">Appendix&nbsp;A</a> provides initial registrations of HTTP authentication schemes for the IANA HTTP Authentication Scheme registry at &lt;<a href="http://www.iana.org/assignments/http-authschemes">http://www.iana.org/assignments/http-authschemes</a>&gt; (see <a href="draft-ietf-httpbis-p7-auth-20.html#authentication.scheme.registry" title="Authentication Scheme Registry">Section 2.3</a> of <a href="#draft-ietf-httpbis-p7-auth"><cite title="HTTP/1.1, part 7: Authentication">[draft-ietf-httpbis-p7-auth]</cite></a>).
535      </p>
536      <h1 id="rfc.references"><a href="#rfc.section.4" id="rfc.section.4">4.</a> Normative References
537      </h1>
538      <table>     
539         <tr>
540            <td class="reference"><b id="RFC2617">[RFC2617]</b></td>
541            <td class="top"><a href="mailto:john@math.nwu.edu" title="Northwestern University, Department of Mathematics">Franks, J.</a>, <a href="mailto:pbaker@verisign.com" title="Verisign Inc.">Hallam-Baker, P.</a>, <a href="mailto:jeff@AbiSource.com" title="AbiSource, Inc.">Hostetler, J.</a>, <a href="mailto:lawrence@agranat.com" title="Agranat Systems, Inc.">Lawrence, S.</a>, <a href="mailto:paulle@microsoft.com" title="Microsoft Corporation">Leach, P.</a>, Luotonen, A., and <a href="mailto:stewart@OpenMarket.com" title="Open Market, Inc.">L. Stewart</a>, “<a href="http://tools.ietf.org/html/rfc2617">HTTP Authentication: Basic and Digest Access Authentication</a>”, RFC&nbsp;2617, June&nbsp;1999.
542            </td>
543         </tr>
544         <tr>
545            <td class="reference"><b id="RFC4559">[RFC4559]</b></td>
546            <td class="top">Jaganathan, K., Zhu, L., and J. Brezak, “<a href="http://tools.ietf.org/html/rfc4559">SPNEGO-based Kerberos and NTLM HTTP Authentication in Microsoft Windows</a>”, RFC&nbsp;4559, June&nbsp;2006.
547            </td>
548         </tr>
549         <tr>
550            <td class="reference"><b id="draft-ietf-httpbis-p7-auth">[draft-ietf-httpbis-p7-auth]</b></td>
551            <td class="top"><a href="mailto:fielding@gbiv.com" title="Adobe Systems Incorporated">Fielding, R., Ed.</a>, <a href="mailto:ylafon@w3.org" title="World Wide Web Consortium">Lafon, Y., Ed.</a>, and <a href="mailto:julian.reschke@greenbytes.de" title="greenbytes GmbH">J. Reschke, Ed.</a>, “<a href="http://tools.ietf.org/html/draft-ietf-httpbis-p7-auth-20">HTTP/1.1, part 7: Authentication</a>”, Internet-Draft&nbsp;draft-ietf-httpbis-p7-auth-20 (work in progress), July&nbsp;2012.
552            </td>
553         </tr>
554      </table>
555      <div class="avoidbreak">
556         <h1 id="rfc.authors"><a href="#rfc.authors">Author's Address</a></h1>
557         <address class="vcard"><span class="vcardline"><span class="fn">Julian F. Reschke</span><span class="n hidden"><span class="family-name">Reschke</span><span class="given-name">Julian F.</span></span></span><span class="org vcardline">greenbytes GmbH</span><span class="adr"><span class="street-address vcardline">Hafenweg 16</span><span class="vcardline"><span class="locality">Muenster</span>, <span class="region">NW</span>&nbsp;<span class="postal-code">48155</span></span><span class="country-name vcardline">Germany</span></span><span class="vcardline">Email: <a href="mailto:julian.reschke@greenbytes.de"><span class="email">julian.reschke@greenbytes.de</span></a></span><span class="vcardline">URI: <a href="http://greenbytes.de/tech/webdav/" class="url">http://greenbytes.de/tech/webdav/</a></span></address>
558      </div>
559      <h1 id="rfc.section.A" class="np"><a href="#rfc.section.A">A.</a>&nbsp;<a id="initial.registry.contents" href="#initial.registry.contents">Initial Registry Contents</a></h1>
560      <div id="rfc.table.u.1">
561         <table class="tt full left" cellpadding="3" cellspacing="0">
562            <thead>
563               <tr>
564                  <th>Authentication Scheme Name</th>
565                  <th>Reference</th>
566                  <th>Notes</th>
567               </tr>
568            </thead>
569            <tbody>
570               <tr>
571                  <td class="left">Basic</td>
572                  <td class="left"><a href="#RFC2617"><cite title="HTTP Authentication: Basic and Digest Access Authentication">[RFC2617]</cite></a>, <a href="http://tools.ietf.org/html/rfc2617#section-2">Section 2</a></td>
573                  <td class="left"></td>
574               </tr>
575               <tr>
576                  <td class="left">Digest</td>
577                  <td class="left"><a href="#RFC2617"><cite title="HTTP Authentication: Basic and Digest Access Authentication">[RFC2617]</cite></a>, <a href="http://tools.ietf.org/html/rfc2617#section-3">Section 3</a></td>
578                  <td class="left"></td>
579               </tr>
580               <tr>
581                  <td class="left">Negotiate</td>
582                  <td class="left"><a href="#RFC4559"><cite title="SPNEGO-based Kerberos and NTLM HTTP Authentication in Microsoft Windows">[RFC4559]</cite></a>, <a href="http://tools.ietf.org/html/rfc4559#section-3">Section 3</a></td>
583                  <td class="left">This authentication scheme violates both HTTP semantics (being connection-oriented) and syntax (use of syntax incompatible
584                     with the WWW-Authenticate and Authorization header field syntax).
585                  </td>
586               </tr>
587            </tbody>
588         </table>
589      </div>
590      <h1 id="rfc.section.B"><a href="#rfc.section.B">B.</a>&nbsp;<a id="change.log" href="#change.log">Change Log (to be removed by RFC Editor before publication)</a></h1>
591      <h2 id="rfc.section.B.1"><a href="#rfc.section.B.1">B.1</a>&nbsp;<a id="changes.since.00" href="#changes.since.00">Since draft-ietf-httpbis-authscheme-registrations-00</a></h2>
592      <p id="rfc.section.B.1.p.1">Update draft-ietf-httpbis-p7-auth reference.</p>
593      <h2 id="rfc.section.B.2"><a href="#rfc.section.B.2">B.2</a>&nbsp;<a id="changes.since.01" href="#changes.since.01">Since draft-ietf-httpbis-authscheme-registrations-01</a></h2>
594      <p id="rfc.section.B.2.p.1">Update draft-ietf-httpbis-p7-auth reference.</p>
595      <p id="rfc.section.B.2.p.2">Closed issues: </p>
596      <ul>
597         <li> &lt;<a href="http://tools.ietf.org/wg/httpbis/trac/ticket/308">http://tools.ietf.org/wg/httpbis/trac/ticket/308</a>&gt;: "need to reserve 'negotiate' as auth scheme name"
598         </li>
599      </ul>
600      <h2 id="rfc.section.B.3"><a href="#rfc.section.B.3">B.3</a>&nbsp;<a id="changes.since.02" href="#changes.since.02">Since draft-ietf-httpbis-authscheme-registrations-02</a></h2>
601      <p id="rfc.section.B.3.p.1">Update draft-ietf-httpbis-p7-auth reference.</p>
602      <h2 id="rfc.section.B.4"><a href="#rfc.section.B.4">B.4</a>&nbsp;<a id="changes.since.03" href="#changes.since.03">Since draft-ietf-httpbis-authscheme-registrations-03</a></h2>
603      <p id="rfc.section.B.4.p.1">Update draft-ietf-httpbis-p7-auth reference.</p>
604      <h2 id="rfc.section.B.5"><a href="#rfc.section.B.5">B.5</a>&nbsp;<a id="changes.since.04" href="#changes.since.04">Since draft-ietf-httpbis-authscheme-registrations-04</a></h2>
605      <p id="rfc.section.B.5.p.1">None yet.</p>
606   </body>
607</html>
Note: See TracBrowser for help on using the repository browser.