<?xml version='1.0' encoding='utf-8'?>
<rfc submissionType="IETF" number="3230" category="std" xmlns:x="http://purl.org/net/xml2rfc/ext">
  <!-- Generated by id2xml 1.4.4 on 2019-09-06T08:48:45Z -->
	<?rfc compact="yes"?>
	<?rfc text-list-symbols="o-*+"?>
	<?rfc subcompact="no"?>
	<?rfc sortrefs="no"?>
	<?rfc symrefs="no"?>
	<?rfc strict="yes"?>
  <?rfc toc="yes"?>
  <x:assign-section-number number="10" builtin-target="authors"/>
	<front>
	<title>Instance Digests in HTTP</title>
	<author fullname="Jeffrey C. Mogul" initials="J." surname="Mogul">
	<organization abbrev="Compaq WRL">Western Research Laboratory</organization>
	<address><postal><street>Compaq Computer Corporation</street>
	<street>250 University Avenue</street>
	<street>Palo Alto, California, 94305, U.S.A.</street>
	</postal>
	<phone>1 650 617 3304 (email preferred)</phone>
	<email>JeffMogul@acm.org</email>
	</address>
	</author>

	<author fullname="Arthur van Hoff" initials="A." surname="Van Hoff">
  
	<organization abbrev="Marimba">Marimba, Inc.</organization>
	<address><postal><street>440 Clyde Avenue</street>
	<street>Mountain View, CA 94043</street>
	</postal>
	<phone>1 (650) 930 5283</phone>
	<email>avh@marimba.com</email>
	</address>
	</author>

	<date month="January" year="2002"/>
	<abstract>
  <t>
   HTTP/1.1 defines a Content-MD5 header that allows a server to include
   a digest of the response body.  However, this is specifically defined
   to cover the body of the actual message, not the contents of the full
   file (which might be quite different, if the response is a Content-Range,
   or uses a delta encoding).  Also, the Content-MD5 is limited
   to one specific digest algorithm; other algorithms, such as SHA-1
   (Secure Hash Standard), may be more appropriate in some
   circumstances.  Finally, HTTP/1.1 provides no explicit mechanism by
   which a client may request a digest.  This document proposes HTTP
   extensions that solve these problems.
  </t>
	</abstract>
	</front>

	<middle>
	<section title="Introduction" anchor="section-1">
  <t>
   Although HTTP is typically layered over a reliable transport
   protocol, such as TCP, this does not guarantee reliable transport of
   information from sender to receiver.  Various problems, including
   undetected transmission errors, programming errors, corruption of
   stored data, and malicious intervention can cause errors in the
   transmitted information.
  </t>
	<t>
   A common approach to the problem of data integrity in a network
   protocol or distributed system, such as HTTP, is the use of digests,
   checksums, or hash values.  The sender computes a digest and sends it
   with the data; the recipient computes a digest of the received data,
   and then verifies the integrity of this data by comparing the
   digests.
  </t>
	<t>
   Checksums are used at virtually all layers of the IP stack.  However,
   different digest algorithms might be used at each layer, for reasons
   of computational cost, because the size and nature of the data being
   protected varies, and because the possible threats to data integrity
   vary.  For example, Ethernet uses a Cyclic Redundancy Check (CRC).
   The IPv4 protocol uses a ones-complement checksum over the IP header
   (but not the rest of the packet).  TCP uses a ones-complement
   checksum over the TCP header and data, and includes a "pseudo-header"
   to detect certain kinds of programming errors.
  </t>
	<t>
   HTTP/1.1 <xref target="RFC2616"/> includes a mechanism for ensuring message integrity, the
   Content-MD5 header.  This header is actually defined for MIME-conformant
   messages in a standalone specification <xref target="RFC1864"/>.  According to
   the HTTP/1.1 specification,
  </t>
  <blockquote>
    <t>
      The Content-MD5 entity-header field [...] is an MD5 digest of the
	    entity-body for the purpose of providing an end-to-end message
      integrity check (MIC) of the entity-body.
    </t>
  </blockquote>
	<t>
   HTTP/1.1 borrowed Content-MD5 from the MIME world based on an analogy
   between MIME messages (e.g., electronic mail messages) and HTTP
   messages (requests to or responses from an HTTP server).
  </t>
	<t>
   As discussed in more detail in section <xref target="section-3" format="counter"/>, this analogy between MIME
   messages and HTTP messages has resulted in some confusion.  In
   particular, while a MIME message is self-contained, an HTTP message
   might not contain the entire representation of the current state of a
   resource.  (More precisely, an HTTP response might not contain an
   entire "instance"; see section <xref target="section-3" format="counter"/> for a definition of this term.)
  </t>
	<t>
    There are at least two situations where this distinction is an issue:
  </t>
  <ol>
	  <li>When an HTTP server sends a 206 (Partial Content) response, as
         defined in HTTP/1.1.  The client may form its view of an
         instance (e.g., an HTML document) by combining a cache entry
         with the partial content in the message.</li>
	  <li>When an HTTP server uses a "delta encoding", as proposed in a
         separate document <xref target="RFC3229"/>.  A delta encoding represents the changes
         between the current instance of a resource and a previous
         instance, and is an efficient way of reducing the bandwidth
         required for cache updates.  The client forms its view of an
         instance by applying the delta in the message to one of its
         cache entries.</li>
  </ol>
	<t>
   We include these two kinds of transformations in a potentially
   broader category we call "instance manipulations."
  </t>
	<t>
   In each of these cases, the server might use a Content-MD5 header to
   protect the integrity of the response message.  However, because the
   MIC in a Content-MD5 header field applies only to the entity in that
   message, and not to the entire instance being reassembled, it cannot
   protect against errors due to data corruption (e.g., of cache
   entries), programming errors (e.g., improper application of a partial
   content or delta), certain malicious attacks <xref target="RFC3229"/>, or corruption of
   certain HTTP headers in transit.
  </t>
	<t>
   Thus, the Content-MD5 header, while useful and sufficient in many
   cases, is not sufficient for verifying instance integrity in all uses
   of HTTP.
  </t>
	<t>
   The Digest Authentication mechanism <xref target="RFC2617"/> provides (in addition to its
   other goals) a message-digest function similar to Content-MD5, except
   that it includes certain header fields.  Like Content-MD5, it covers
   a specific message, not an entire instance.
  </t>

	<section title="Other limitations of HTTP/1.1" anchor="section-1.1">
  <t>
   Checksums are not free.  Computing a digest takes CPU resources, and
   might add latency to the generation of a message.  (Some of these
   costs can be avoided by careful caching at the sender's end, but in
   many cases such a cache would not have a useful hit ratio.)
   Transmitting a digest consumes HTTP header space (and therefore
   increases latency and network bandwidth requirements.)  If the
   message recipient does not intend to use the digest, why should the
   message sender waste resources computing and sending it?
  </t>
	<t>
   The Content-MD5 header, of course, implies the use of the MD5
   algorithm <xref target="RFC1321"/>.  Other algorithms, however, might be more appropriate
   for some purposes.  These include the SHA-1 algorithm <xref target="SECHASH"/> and
   various "fingerprinting" algorithms <xref target="FINGER"/>.  HTTP currently provides no
   standardized support for the use of these algorithms.
  </t>
	<t>
   HTTP/1.1 apparently assumes that the choice to generate a digest is
   up to the sender, and provides no mechanism for the recipient to
   indicate whether a checksum would be useful, or what checksum
   algorithms it would understand.
  </t>
	</section>

	</section>

	<section title="Goals" anchor="section-2">
  <t>The goals of this proposal are:</t>
  <ol>
	  <li>Digest coverage for entire instances communicated via HTTP.</li>
	  <li>Support for multiple digest algorithms.</li>
	  <li>Negotiation of the use of digests.</li>
  </ol>

	<t>The goals do not include:</t>
  <dl newline="true">
    <dt>header integrity</dt>
    <dd>The digest mechanisms described here cover only the bodies of
         instances, and do not protect the integrity of associated
         "entity headers" or other message headers.</dd>
    <dt>authentication</dt>
    <dd>The digest mechanisms described here are not meant to support
         authentication of the source of a digest or of a message or
         instance.  These mechanisms, therefore, are not sufficient
         defense against many kinds of malicious attacks.</dd>
    <dt>privacy</dt>
    <dd>Digest mechanisms do not provide message privacy.</dd>
    <dt>authorization</dt>
    <dd>The digest mechanisms described here are not meant to support
         authorization or other kinds of access controls.</dd>
  </dl>
	<t>
   The Digest Access Authentication mechanism <xref target="RFC2617"/> can provide some
   integrity for certain HTTP headers, and does provide authentication.
  </t>
	</section>

	<section title="Terminology" anchor="section-3">
  <t>
   HTTP/1.1 <xref target="RFC2616"/> defines the following terms:
  </t>
  <dl>
    <dt>resource</dt>
    <dd>A network data object or service that can be
                     identified by a URI, as defined in section <xref target="RFC2616" x:sec="3.2" x:fmt="number"/>.
                     Resources may be available in multiple
                     representations (e.g. multiple languages, data
                     formats, size, resolutions) or vary in other ways.</dd>
    <dt>entity</dt>
    <dd>The information transferred as the payload of a
	                   request or response.  An entity consists of
                     metainformation in the form of entity-header fields
                     and content in the form of an entity-body, as
                     described in section <xref target="RFC2616" x:sec="7" x:fmt="number"/>.</dd>
    <dt>variant</dt>
    <dd>A resource may have one, or more than one,
	                   representation(s) associated with it at any given
                     instant.  Each of these representations is termed a
                     `variant.' Use of the term `variant' does not
                     necessarily imply that the resource is subject to
                     content negotiation.</dd>
  </dl>
	<t>
   The dictionary definition for "entity" is "something that has separate and distinct existence and objective or conceptual reality"
   <xref target="WEBSTDIC"/>.  Unfortunately, the definition for "entity" in HTTP/1.1 is
   similar to that used in MIME <xref target="RFC2045"/>, based on an entirely false analogy
   between MIME and HTTP.
  </t>
	<t>
   In MIME, electronic mail messages do have distinct and separate
   existences. MIME defines "entity" as something that "refers specifically
   to the MIME-defined header fields and contents of either a message or one
   of the parts in the body of a multipart entity."
  </t>
	<t>
   In HTTP, however, a response message to a GET does not have a
   distinct and separate existence.  Rather, it is describing the
   current state of a resource (or a variant, subject to a set of
   constraints).  The HTTP/1.1 specification provides no term to
   describe "the value that would be returned in response to a GET request
   at the current time for the selected variant of the specified resource."
   This leads to awkward wordings in the HTTP/1.1
   specification in places where this concept is necessary.
  </t>
	<t>
   It is too late to fix the terminological failure in the HTTP/1.1
   specification, so we instead define a new term, for use in this
   document:
  </t>
  <dl>
    <dt>instance</dt>
    <dd>The entity that would be returned in a status-200
	                   response to a GET request, at the current time, for
                     the selected variant of the specified resource,
                     with the application of zero or more content-codings,
                     but without the application of any
                     instance manipulations or transfer-codings.</dd>
  </dl>
	<t>
   It is convenient to think of an entity tag, in HTTP/1.1, as being
   associated with an instance, rather than an entity.  That is, for a
   given resource, two different response messages might include the
   same entity tag, but two different instances of the resource should
   never be associated with the same (strong) entity tag.
  </t>
	<t>
   We also define this term:
  </t>
  <dl>
    <dt>instance manipulation</dt>
    <dd>An operation on one or more instances which may
                     result in an instance being conveyed from server to
                     client in parts, or in more than one response
                     message.  For example, a range selection or a delta
                     encoding.  Instance manipulations are end-to-end,
                     and often involve the use of a cache at the client.</dd>
  </dl>
	</section>

	<section title="Specification" anchor="section-4">
  <t>
   In this specification, the key words "MUST", "MUST NOT", "SHOULD",
   "SHOULD NOT", and "MAY" are to be interpreted as described in RFC
   2119 <xref target="RFC2119"/>.
  </t>

	<section title="Protocol parameter specifications" anchor="section-4.1">
  <section title="Digest algorithms" anchor="section-4.1.1">
  <t>
   Digest algorithm values are used to indicate a specific digest
   computation.  For some algorithms, one or more parameters may be
   supplied.
  </t>
	<sourcecode type="abnf2616">
   digest-algorithm = token
</sourcecode>
	<t>
   The BNF for "parameter" is as is used in RFC 2616 <xref target="RFC2616"/>.
   All digest-algorithm values are case-insensitive.
  </t>
	<t>
   The Internet Assigned Numbers Authority (IANA) acts as a registry for
   digest-algorithm values.  Initially, the registry contains the
   following tokens:
  </t>
  <dl>
    <dt>MD5</dt>
    <dd>The MD5 algorithm, as specified in RFC 1321 <xref target="RFC1321"/>.
      	The output of this algorithm is encoded using the base64 encoding 
        <xref target="RFC2049"/>.</dd>
    <dt>SHA</dt>
    <dd>The SHA-1 algorithm <xref target="SECHASH"/>. The output of this
    algorithm is encoded using the base64 encoding <xref target="RFC2049"/>.</dd>
    <dt>UNIXsum</dt>
    <dd>The algorithm computed by the UNIX "sum" command,
	                   as defined by the Single UNIX Specification,
                     Version 2 <xref target="UNIX"/>.  The output of this algorithm is an
                     ASCII decimal-digit string representing the 16-bit
                     checksum, which is the first word of the output of
                     the UNIX "sum" command.</dd>
    <dt>UNIXcksum</dt>
    <dd>The algorithm computed by the UNIX "cksum" command,
	                   as defined by the Single UNIX Specification,
                     Version 2 <xref target="UNIX"/>.  The output of this algorithm is an
                     ASCII digit string representing the 32-bit CRC,
                     which is the first word of the output of the UNIX
                     "cksum" command.</dd>
  </dl>
	<t>
   If other digest-algorithm values are defined, the associated encoding
   MUST either be represented as a quoted string, or MUST NOT include
   ";" or "," in the character sets used for the encoding.
  </t>
	</section>

	</section>

	<section title="Instance digests" anchor="section-4.2">
  <t>
   An instance digest is the representation of the output of a digest
   algorithm, together with an indication of the algorithm used (and any
   parameters).
  </t>
	<sourcecode type="abnf2616"><![CDATA[
    instance-digest = digest-algorithm "="
                            <encoded digest output>
]]></sourcecode>
	<t>
   The digest is computed on the entire instance associated with the
   message.  The instance is a snapshot of the resource prior to the
   application of of any instance manipulation or transfer-coding (see
   section <xref target="section-3" format="counter"/>).  The byte order used to compute the digest is the
   transmission byte order defined for the content-type of the instance.
  </t>
  <aside>
	  <t>
      Note: the digest is computed before the application of any
      instance manipulation.  If a range or a delta-coding <xref target="RFC3229"/> is used,
      the computation of the digest after the computation of the range
      or delta would not provide a digest useful for checking the
      integrity of the reassembled instance.
    </t>
  </aside>
	<t>
   The encoded digest output uses the encoding format defined for the
   specific digest-algorithm.  For example, if the digest-algorithm is
   "MD5", the encoding is base64; if the digest-algorithm is "UNIXsum",
   the encoding is an ASCII string of decimal digits.
  </t>
  <t>
    Examples:
  </t>
	<artwork type="example"><![CDATA[
   MD5=HUXZLQLMuI/KZ5KDcJPcOA==
   sha=thvDyvhfIqlvFe+A9MYgxAfm1q5=
   UNIXsum=30637
]]></artwork>
	</section>

	<section title="Header specifications" anchor="section-4.3">
  <t>
   The following headers are defined.
  </t>

	<section title="Want-Digest" anchor="section-4.3.1">
  <t>
   The Want-Digest message header field indicates the sender's desire to
   receive an instance digest on messages associated with the Request-URI.
  </t>
	<sourcecode type="abnf2616"><![CDATA[
    Want-Digest = "Want-Digest" ":"
                     #(digest-algorithm [ ";" "q" "=" qvalue])
]]></sourcecode>
	<t>
   If a digest-algorithm is not accompanied by a qvalue, it is treated
   as if its associated qvalue were 1.0.
  </t>
	<t>
   The sender is willing to accept a digest-algorithm if and only if it
   is listed in a Want-Digest header field of a message, and its qvalue
   is non-zero.
  </t>
	<t>
   If multiple acceptable digest-algorithm values are given, the
   sender's preferred digest-algorithm is the one (or ones) with the
   highest qvalue.
  </t>
  <t>
   Examples:
  </t>
	<artwork type="example"><![CDATA[
   Want-Digest: md5
   Want-Digest: MD5;q=0.3, sha;q=1
]]></artwork>
	</section>

	<section title="Digest" anchor="section-4.3.2">
  <t>
   The Digest message header field provides a message digest of the
   instance described by the message.
  </t>
	<sourcecode type="abnf2616"><![CDATA[
   Digest = "Digest" ":" #(instance-digest)
]]></sourcecode>
	<t>
   The instance described by a message might be fully contained in the
   message-body, partially-contained in the message-body, or not at all
   contained in the message-body.  The instance is specified by the
   Request-URI and any cache-validator contained in the message.
  </t>
	<t>
   A Digest header field MAY contain multiple instance-digest values.
   This could be useful for responses expected to reside in caches
   shared by users with different browsers, for example.
  </t>
	<t>
   A recipient MAY ignore any or all of the instance-digests in a Digest
   header field.
  </t>
	<t>
   A sender MAY send an instance-digest using a digest-algorithm without
   knowing whether the recipient supports the digest-algorithm, or even
   knowing that the recipient will ignore it.
  </t>
  <t>
   Examples:
  </t>
  <artwork type="example">
   Digest: md5=HUXZLQLMuI/KZ5KDcJPcOA==
   Digest: SHA=thvDyvhfIqlvFe+A9MYgxAfm1q5=,unixsum=30637
</artwork>
	</section>
	</section>
	</section>

	<section title="Negotiation of Content-MD5" anchor="section-5">
  <t>
   HTTP/1.1 provides a Content-MD5 header field, but does not provide
   any mechanism for requesting its use (or non-use).  The Want-Digest
   header field defined in this document provides the basis for such a
   mechanism.
  </t>
	<t>
   First, we add to the set of digest-algorithm values (in section
   <xref target="section-4.1.1" format="counter"/>) the token "contentMD5",
   with the provision that this digest-algorithm MUST NOT be used in a Digest
   header field.
  </t>
	<t>
   The presence of the "contentMD5" digest-algorithm with a non-zero
   qvalue in a Want-Digest header field indicates that the sender wishes
   to receive a Content-MD5 header on messages associated with the
   Request-URI.
  </t>
	<t>
   The presence of the "contentMD5" digest-algorithm with a zero qvalue
   in a Want-Digest header field indicates that the sender will ignore
   Content-MD5 headers on messages associated with the Request-URI.
  </t>
	</section>

	<section title="IANA Considerations" anchor="section-6">
  <t>
   The Internet Assigned Numbers Authority (IANA) administers the name
   space for digest-algorithm values.  Values and their meaning must be
   documented in an RFC or other peer-reviewed, permanent, and readily
   available reference, in sufficient detail so that interoperability
   between independent implementations is possible.  Subject to these
   constraints, name assignments are First Come, First Served (see RFC
   2434 <xref target="RFC2434"/>).
  </t>
	</section>

	<section title="Security Considerations" anchor="section-7">
  <t>
   This document specifies a data integrity mechanism that protects HTTP
   instance data, but not HTTP entity headers, from certain kinds of
   accidental corruption.  It is also useful in detecting at least one
   spoofing attack <xref target="RFC3229"/>.  However, it is not intended as general
   protection against malicious tampering with HTTP messages.
  </t>
	<t>
   The HTTP Digest Access Authentication mechanism <xref target="RFC2617"/> provides some
   protection against malicious tampering.
  </t>
	</section>

	<section title="Acknowledgements" anchor="section-8">
  <t>
   It is not clear who first realized that the Content-MD5 header field
   is not sufficient to provide data integrity when ranges or deltas are
   used.
  </t>
	<t>
   Laurent Demailly may have been the first to suggest an algorithm-independent
   checksum header for HTTP <xref target="ref-3"/>.  Dave Raggett suggested the
   use of the term "digest" instead of "checksum" <xref target="ref-14"/>.
  </t>
	</section>

	</middle>

	<back>
	<references title="References">

<reference anchor="RFC2049">
  <front>
    <title>MIME (Multipurpose Internet Mail Extensions) Part One:  Mechanisms for Specifying and Describing the Format of Internet Message Bodies</title>
    <author surname="Freed" initials="N."/>
    <author surname="Borenstein, N." initials="N."/>
    <date month="November" year="1996"/>
  </front>
  <seriesInfo name="RFC" value="2049"/>
</reference>

<reference anchor="RFC2119">
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname="S. Bradner" initials="S." surname="Bradner"/>
    <date month="March" year="1997"/>
  </front>  
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="2119"/>
</reference>

<reference anchor="ref-3" target="http://www.ics.uci.edu/pub/ietf/http/hypermail/1995q4/0165.html">
  <front>
    <title>Re: Revised Charter</title>
    <author surname="Demailly" initials="L."/>
    <date/>
  </front>
</reference>

<reference anchor="RFC2616">
  <front>
    <title>Hypertext Transfer Protocol -- HTTP/1.1.</title>
    <author fullname="R. Fielding" initials="R." surname="Fielding"/>
    <author fullname="J. Gettys" initials="J." surname="Gettys"/>
    <author fullname="J. Mogul" initials="J." surname="Mogul"/>
    <author fullname="H. Frystyk" initials="H." surname="Frystyk"/>
    <author fullname="L. Masinter" initials="L." surname="Masinter"/>
    <author fullname="P. Leach" initials="P." surname="Leach"/>
    <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
    <date month="June" year="1999"/>
  </front>
  <seriesInfo name="RFC" value="2616"/>
</reference>

<reference anchor="RFC2617">
  <front>
  <title>HTTP Authentication: Basic and Digest Access Authentication</title>
    <author fullname="J. Franks" initials="J." surname="Franks"/>
    <author fullname="P. Hallam-Baker" initials="P." surname="Hallam-Baker"/>
    <author fullname="J. Hostetler" initials="J." surname="Hostetler"/>
    <author fullname="S. Lawrence" initials="S." surname="Lawrence"/>
    <author fullname="P. Leach" initials="P." surname="Leach"/>
    <author fullname="A. Luotonen" initials="A." surname="Luotonen"/>
    <author fullname="L. Stewart" initials="L." surname="Stewart"/>
  <date month="June" year="1999"/>
  </front>
  <seriesInfo name="RFC" value="2617"/>
</reference>

<reference anchor="RFC2045">
  <front>
    <title>Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies</title>
    <author fullname="N. Freed" initials="N." surname="Freed"/>
    <author fullname="N. Borenstein" initials="N." surname="Borenstein"/>
    <date month="November" year="1996"/>
  </front>
  <seriesInfo name="RFC" value="2045"/>
</reference>

<reference anchor="FINGER" target="http://www.cs.cmu.edu/afs/cs/user/nch/www/koala/main.html">
  <front>
    <title>Scalable Document Fingerprinting</title>
    <author surname="Heintze" initials="N."/>
    <date year="1996" month="November"/>
  </front>
  <seriesInfo name="Proc. Second USENIX Workshop on Electronic Commerce," value="USENIX, Oakland, CA"/>
  <seriesInfo name="pp." value="191-200"/>
</reference>

<reference anchor="WEBSTDIC">
  <front>
    <title>Webster's Seventh New Collegiate Dictionary</title>
    <author>
      <organization>Merriam-Webster</organization>
    </author>
    <date year="1963"/>
  </front>
  <seriesInfo name="G. &amp; C. Merriam Co.," value="Springfield, MA"/>
</reference>

<reference anchor="RFC3229">
  <front>
    <title>Delta encoding in HTTP</title>
    <author fullname="J. Mogul" initials="J." surname="Mogul"/>
    <author fullname="B. Krishnamurthy" initials="B." surname="Krishnamurthy"/>
    <author fullname="F. Douglis" initials="F." surname="Douglis"/>
    <author fullname="A. Feldmann" initials="A." surname="Feldmann"/>
    <author fullname="Y. Goland" initials="Y." surname="Goland"/>
    <author fullname="A. van Hoff" initials="A." surname="van Hoff"/>
    <date month="December" year="2001"/>
  </front>
  <seriesInfo name="RFC" value="3229"/>
</reference>

<reference anchor="RFC1864">
  <front>
    <title>The Content-MD5 Header Field</title>
    <author fullname="J. Myers" initials="J." surname="Myers"/>
    <author fullname="M. Rose" initials="M." surname="Rose"/>
    <date month="October" year="1995"/>
  </front>  
  <seriesInfo name="RFC" value="1864"/>
</reference>

<reference anchor="RFC2434">
  <front>
    <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
    <author fullname="T. Narten" initials="T." surname="Narten"/>
    <author fullname="H. Alvestrand" initials="H." surname="Alvestrand"/>
    <date month="October" year="1998"/>
  </front>  
  <seriesInfo name="BCP" value="26"/>
  <seriesInfo name="RFC" value="2434"/>
</reference>

<reference anchor="SECHASH" target="http://csrc.nist.gov/fips/fip180-1.txt">
  <front>
    <title>Secure Hash Standard</title>
      <author>
        <organization>National Institute of Standards and Technology</organization>
      </author>
    <date year="1995" month="April"/>
  </front>
  <seriesInfo name="FEDERAL INFORMATION PROCESSING STANDARDS PUBLICATION 180-1," value="U.S. Department of Commerce"/>
</reference>

<reference anchor="UNIX">
  <front>
    <title>The Single UNIX Specification, Version 2 - 6 Vol Set for UNIX 98</title>
    <author>
      <organization>The Open Group</organization>
    </author>
    <date year="1997" month="February"/>
  </front>
  <seriesInfo name="Document number T912," value="The Open Group"/>
</reference>

<reference anchor="ref-14" target="http://www.ics.uci.edu/pub/ietf/http/hypermail/1995q4/0182.html">
  <front>
    <title>Re: Revised Charter</title>
    <author surname="Raggett" initials="D."/>
    <date/>
  </front>
</reference>

<reference anchor="RFC1321">
  <front>
    <title>The MD5 Message-Digest Algorithm</title>
    <author fullname="R. Rivest" initials="R." surname="Rivest"/>
    <date month="April" year="1992"/>
  </front>
  <seriesInfo name="RFC" value="1321"/>
</reference>

	</references>
	</back>

	</rfc>
	
