<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.8 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lamps-rfc6712bis-05" category="std" consensus="true" submissionType="IETF" xml:lang="en" obsoletes="6712 9480" tocDepth="4" tocInclude="true" sortRefs="false" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.20.1 -->
  <front>
    <title abbrev="RFC6712bis">Internet X.509 Public Key Infrastructure -- HTTP Transfer for the Certificate Management Protocol (CMP)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-rfc6712bis-05"/>
    <author initials="H." surname="Brockhaus" fullname="Hendrik Brockhaus">
      <organization abbrev="Siemens">Siemens</organization>
      <address>
        <postal>
          <street>Werner-von-Siemens-Strasse 1</street>
          <city>Munich</city>
          <code>80333</code>
          <country>Germany</country>
        </postal>
        <email>hendrik.brockhaus@siemens.com</email>
        <uri>https://www.siemens.com</uri>
      </address>
    </author>
    <author initials="D." surname="von Oheimb" fullname="David von Oheimb">
      <organization abbrev="Siemens">Siemens</organization>
      <address>
        <postal>
          <street>Werner-von-Siemens-Strasse 1</street>
          <city>Munich</city>
          <code>80333</code>
          <country>Germany</country>
        </postal>
        <email>david.von.oheimb@siemens.com</email>
        <uri>https://www.siemens.com</uri>
      </address>
    </author>
    <author initials="M." surname="Ounsworth" fullname="Mike Ounsworth">
      <organization abbrev="Entrust">Entrust</organization>
      <address>
        <postal>
          <street>1187 Park Place</street>
          <city>Minneapolis</city>
          <region>MN</region>
          <code>55379</code>
          <country>United States of America</country>
        </postal>
        <email>mike.ounsworth@entrust.com</email>
        <uri>https://www.entrust.com</uri>
      </address>
    </author>
    <author initials="J." surname="Gray" fullname="John Gray">
      <organization abbrev="Entrust">Entrust</organization>
      <address>
        <postal>
          <street>1187 Park Place</street>
          <city>Minneapolis</city>
          <region>MN</region>
          <code>55379</code>
          <country>United States of America</country>
        </postal>
        <email>john.gray@entrust.com</email>
        <uri>https://www.entrust.com</uri>
      </address>
    </author>
    <date year="2024"/>
    <workgroup>LAMPS Working Group</workgroup>
    <abstract>
      <?line 77?>

<t>This document describes how to layer the Certificate Management Protocol
(CMP) over HTTP.</t>
      <t>It includes the updates on RFC 6712 specified in CMP Updates RFC 9480 Section
3 and obsoleted both documents.  These updates introduce CMP URIs using a
Well-known prefix.</t>
    </abstract>
  </front>
  <middle>
    <?line 87?>

<section anchor="sect-1">
      <name>Introduction</name>
      <t>[RFC Editor: please delete:</t>
      <t>During IESG telechat the CMP Updates document was approved on condition that
LAMPS provides a RFC6712bis document.  Version -00 of this document shall
be identical to RFC 6712 and version -01 incorporates the changes specified
in CMP Updates Section 3.</t>
      <t>A history of changes is available in Appendix A of this document.</t>
      <t>The authors of this document wish to thank Tomi Kause and Martin Peylo, the
original authors of RFC 6712, for their work and invite them, next to further
volunteers, to join the -bis activity as co-authors.</t>
      <t>]</t>
      <t>[RFC Editor:</t>
      <t>Please perform the following substitution.</t>
      <ul spacing="normal">
        <li>
          <t>RFCXXXX ---&gt; the assigned numerical RFC value for this draft</t>
        </li>
        <li>
          <t>RFCCCCC ---&gt; the assigned numerical RFC value for <xref target="I-D.ietf-lamps-rfc4210bis"/></t>
        </li>
      </ul>
      <t>]</t>
      <t>The Certificate Management Protocol (CMP) [RFCCCCC] requires a well-defined
transfer mechanism to enable End Entities (EEs), Registration
Authorities (RAs), and Certification Authorities (CAs) to pass
PKIMessage sequences between them.</t>
      <t>The first version of the CMP specification <xref target="RFC2510"/> included a brief
description of a simple transfer protocol layer on top of TCP.  Its
features were simple transfer-level error handling and a mechanism to
poll for outstanding PKI messages.  Additionally, it was mentioned
that PKI messages could also be conveyed using file-, E-mail-, and
HTTP-based transfer, but those were not specified in detail.</t>
      <t>The second version of the CMP specification <xref target="RFC4210"/> incorporated
its own polling mechanism and thus the need for a transfer protocol
providing this functionality vanished.  The remaining features CMP
requires from its transfer protocols are connection and error
handling.</t>
      <t>CMP can benefit from utilizing a reliable transport and it requires connection and error handling
from the transfer protocol, which is all covered by HTTP.  Additionally,
delayed delivery of CMP response messages may be handled at transfer level,
regardless of the message contents.  Since <xref target="RFC9480"/> extends the polling
mechanism specified in the second version of <xref target="RFC4210">CMP</xref> to cover
all types of PKI management transactions, delays detected at application
level may also be handled within CMP, using pollReq and pollRep messages.</t>
      <t>The usage of HTTP for transferring CMP messages exclusively uses the
POST method for requests, effectively tunneling CMP over HTTP.  While
this is generally considered bad practice and should not be emulated,
there are good reasons to do so for transferring CMP.  HTTP is used
as it is generally easy to implement and it is able to traverse
network borders utilizing ubiquitous proxies.  Most importantly, HTTP
is already commonly used in existing CMP implementations.  Other HTTP
request methods, such as GET, are not used because PKI management
operations can only be triggered using CMP's PKI messages, which need
to be transferred using a POST request.</t>
      <t>With its status codes, HTTP provides needed error reporting
capabilities.  General problems on the server side, as well as those
directly caused by the respective request, can be reported to the
client.</t>
      <t>As CMP implements a transaction ID, identifying transactions spanning
over more than just a single request/response pair, the statelessness
of HTTP is not blocking its usage as the transfer protocol for CMP
messages.</t>
      <section anchor="sect-1.1">
        <name>Changes Since RFC 6712</name>
        <t>CMP Updates <xref target="RFC9480"/> updated <xref target="RFC6712"/>, supporting the PKI
management operations specified in the Lightweight CMP
Profile <xref target="RFC9483"/>, in the following areas:</t>
        <ul spacing="normal">
          <li>
            <t>Introduce the HTTP URI path prefix '/.well-known/cmp'.</t>
          </li>
          <li>
            <t>Add options for extending the URI structure with further segments and to
this end define a new protocol registry group.</t>
          </li>
        </ul>
      </section>
      <section anchor="sect-1.2">
        <name>Changes Made by This Document</name>
        <t>This document obsoletes <xref target="RFC6712">RFC 6712</xref>.
It includes the changes specified by CMP Updates <xref target="RFC9480"/> Section 3 as
described in <xref target="sect-1.1"/>.</t>
      </section>
    </section>
    <section anchor="sect-2">
      <name>Conventions Used in This Document</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

</section>
    <section anchor="sect-3">
      <name>HTTP-Based Protocol</name>
      <t>For direct interaction between two entities, where a reliable
transport protocol like TCP is available, HTTP <bcp14>SHOULD</bcp14> be utilized for
conveying CMP messages.</t>
      <section anchor="sect-3.1">
        <name>HTTP Versions</name>
        <t>Implementations <bcp14>MUST</bcp14> support HTTP/1.0 <xref target="RFC1945"/> and <bcp14>SHOULD</bcp14> support
HTTP/1.1 <xref target="RFC9112"/>.</t>
      </section>
      <section anchor="sect-3.2">
        <name>Persistent Connections</name>
        <t>HTTP persistent connections <xref target="RFC9112"/> allow multiple interactions to
take place on the same HTTP connection.  However, neither HTTP nor
the protocol specified in this document are designed to correlate
messages on the same connection in any meaningful way; persistent
connections are only a performance optimization.  In particular,
intermediaries can do things like mix connections from different
clients into one "upstream" connection, terminate persistent
connections, and forward requests as non-persistent requests, etc.
As such, implementations <bcp14>MUST NOT</bcp14> infer that requests on the same
connection come from the same client (e.g., for correlating PKI
messages with ongoing transactions); every message is to be evaluated
in isolation.</t>
      </section>
      <section anchor="sect-3.3">
        <name>General Form</name>
        <t>A DER-encoded <xref target="ITU.X690.1994"/> PKIMessage [RFCCCCC] is sent as the
entity-body of an HTTP POST request.  If this HTTP request is
successful, the server returns the CMP response in the body of the
HTTP response.  The HTTP response status code in this case <bcp14>MUST</bcp14> be
200; other "Successful 2xx" codes <bcp14>MUST NOT</bcp14> be used for this purpose.
HTTP responses to pushed CMP Announcement messages (i.e., CA
Certificate Announcement, Certificate Announcement, Revocation
Announcement, and Certificate Revocation List (CRL) Announcement)
utilize the status codes 201 and 202 to identify whether the received
information was processed.</t>
        <t>While "Redirection 3xx" status codes <bcp14>MAY</bcp14> be supported by
implementations, clients should only be enabled to automatically
follow them after careful consideration of possible security
implications.  As described in <xref target="sect-5"/>, "301 Moved Permanently"
could be misused for permanent denial of service.</t>
        <t>All applicable "Client Error 4xx" or "Server Error 5xx" status codes
<bcp14>MAY</bcp14> be used to inform the client about errors.</t>
      </section>
      <section anchor="sect-3.4">
        <name>Header Fields</name>
        <t>The Internet Media Type "application/pkixcmp" <bcp14>MUST</bcp14> be set in the HTTP
Content-Type header field when conveying a PKIMessage.</t>
        <t>The Content-Length header field <bcp14>SHOULD</bcp14> be provided, giving the length of
the ASN.1-encoded PKIMessages.</t>
      </section>
      <section anchor="sect-3.5">
        <name>Communication Workflow</name>
        <t>In CMP, most communication is initiated by the EEs where every CMP
request triggers a CMP response message from the CA or RA.</t>
        <t>The CMP Announcement messages described in <xref target="sect-3.7"/> are an
exception.  Their creation may be triggered by certain events or done
on a regular basis by a CA.  The recipient of the Announcement only
replies with an HTTP status code acknowledging the receipt or
indicating an error, but not with a CMP response.</t>
        <t>If the receipt of an HTTP request is not confirmed by receiving an
HTTP response, it <bcp14>MUST</bcp14> be assumed that the transferred CMP message
was not successfully delivered to its destination.</t>
      </section>
      <section anchor="sect-3.6">
        <name>HTTP Request-URI</name>
        <t>Each CMP server on a PKI management entity supporting HTTP or HTTPS transfer
<bcp14>MUST</bcp14> support the use of the path prefix '/.well-known/' as defined in
<xref target="RFC8615"/> and the registered name 'cmp' to ease interworking
in a multi-vendor environment.</t>
        <t>The CMP client needs to be configured with sufficient information to form
the CMP server URI.  This is at least the authority portion of the URI, e.g.,
'www.example.com:80', or the full operation path segment of the PKI management
entity. Additionally, <bcp14>OPTIONAL</bcp14> path segments <bcp14>MAY</bcp14> be added after the registered
application name as part of the full operation path to provide further distinction.
The path segment 'p' followed by an arbitraryLabel &lt;name&gt; could, for example,
support the differentiation of specific CAs or certificate profiles. Further
path segments, e.g., as specified in the Lightweight CMP Profile <xref target="RFC9483"/>,
could indicate PKI management operations using an operationLabel &lt;operation&gt;.
A valid, full CMP URI can look like this:</t>
        <ul empty="true">
          <li>
            <t>http://www.example.com/.well-known/cmp</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>http://www.example.com/.well-known/cmp/&lt;operation&gt;</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>http://www.example.com/.well-known/cmp/p/&lt;name&gt;</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>http://www.example.com/.well-known/cmp/p/&lt;name&gt;/&lt;operation&gt;</t>
          </li>
        </ul>
      </section>
      <section anchor="sect-3.7">
        <name>Pushing of Announcements</name>
        <t>A CMP server may create event-triggered announcements or generate
them on a regular basis.  It <bcp14>MAY</bcp14> utilize HTTP transfer to convey them
to a suitable recipient.  In this use case, the CMP server acts as an
HTTP client, and the recipient needs to utilize an HTTP server.  As
no request messages are specified for those announcements, they can
only be pushed to the recipient.</t>
        <t>If an EE wants to poll for a potential CA Key Update Announcement or
the current CRL, a PKI Information Request using a General Message as
described in Appendix E.5 of [RFCCCCC] can be used.</t>
        <t>When pushing Announcement messages, PKIMessage structures are sent as
the entity-body of an HTTP POST request.</t>
        <t>Suitable recipients for CMP announcements might, for example, be
repositories storing the announced information, such as directory
services.  Those services listen for incoming messages, utilizing the
same HTTP Request-URI scheme as defined in <xref target="sect-3.6"/>.</t>
        <t>The following PKIMessages are announcements that may be pushed by a
CA.  The prefixed numbers reflect ASN.1 numbering of the respective
element.</t>
        <artwork><![CDATA[
   [15] CA Key Update Announcement
   [16] Certificate Announcement
   [17] Revocation Announcement
   [18] CRL Announcement
]]></artwork>
        <t>CMP Announcement messages do not require any CMP response.  However,
the recipient <bcp14>MUST</bcp14> acknowledge receipt with an HTTP response having
an appropriate status code and an empty body.  When not receiving
such a response, it <bcp14>MUST</bcp14> be assumed that the delivery was not
successful.  If applicable, the sending side <bcp14>MAY</bcp14> try sending the
Announcement again after waiting for an appropriate time span.</t>
        <t>If the announced issue was successfully stored in a database or was
already present, the answer <bcp14>MUST</bcp14> be an HTTP response with a "201 Created"
status code and an empty message body.</t>
        <t>In case the announced information was only accepted for further
processing, the status code of the returned HTTP response <bcp14>MAY</bcp14> also be
"202 Accepted".  After an appropriate delay, the sender may then try
to send the Announcement again and may repeat this until it receives
a confirmation that it has been successfully processed.  The
appropriate duration of the delay and the option to increase it
between consecutive attempts should be carefully considered.</t>
        <t>A receiver <bcp14>MUST</bcp14> answer with a suitable 4xx or 5xx HTTP error code
when a problem occurs.</t>
      </section>
      <section anchor="sect-3.8">
        <name>HTTP Considerations</name>
        <t>While all defined features of the HTTP protocol are available to
implementations, they <bcp14>SHOULD</bcp14> keep the protocol utilization as simple
as possible.  For example, there is no benefit in using chunked
Transfer-Encoding, as the length of an ASN.1 sequence is known when
starting to send it.</t>
        <t>There is no need for the clients to send an "Expect" request-header
field with the "100-continue" expectation and wait for a "100 Continue" status
as described in Section 8.2.3 of <xref target="RFC9112"/>.  The CMP
payload sent by a client is relatively small, so having extra
messages exchanged is inefficient, as the server will only seldom
reject a message without evaluating the body.</t>
      </section>
    </section>
    <section anchor="sect-4">
      <name>Implementation Considerations</name>
      <t>Implementors should be aware that implementations might exist that
use a different approach for transferring CMP over HTTP, because
<xref target="RFC6712">RFC 6712</xref> has been under development for more than a decade.
Further, implementations based on earlier drafts of
<xref target="RFC6712">RFC 6712</xref> might use an unregistered
"application/pkixcmp-poll" MIME type.</t>
    </section>
    <section anchor="sect-5">
      <name>Security Considerations</name>
      <t>The following aspects need to be considered by implementers and
users:</t>
      <ol spacing="normal" type="1"><li>
          <t>There is the risk for denial-of-service attacks through resource
  consumption by opening many connections to an HTTP server.
  Therefore, idle connections should be terminated after an
  appropriate timeout; this may also depend on the available free
  resources.  After sending a CMP Error Message, the server should
  close the connection, even if the CMP transaction is not yet
  fully completed.</t>
        </li>
        <li>
          <t>Without being encapsulated in effective security protocols, such
  as Transport Layer Security (TLS) <xref target="RFC5246"/> or <xref target="RFC8446"/>, there is no
  integrity protection at the HTTP protocol level.  Therefore,
  information from the HTTP protocol should not be used to change
  state of the transaction.</t>
        </li>
        <li>
          <t>Client users should be aware that storing the target location of
  an HTTP response with the "301 Moved Permanently" status code
  could be exploited by a man-in-the-middle attacker trying to
  block them permanently from contacting the correct server.</t>
        </li>
        <li>
          <t>If no measures to authenticate and protect the HTTP responses to
  pushed Announcement messages are in place, their information
  regarding the Announcement's processing state may not be trusted.
  In that case, the overall design of the PKI system must not
  depend on the Announcements being reliably received and processed
  by their destination.</t>
        </li>
        <li>
          <t>CMP provides inbuilt integrity protection and authentication.
  The information communicated unencrypted in CMP messages does not
  contain sensitive information endangering the security of the PKI
  when intercepted.  However, it might be possible for an
  eavesdropper to utilize the available information to gather
  confidential technical or business critical information.
  Therefore, users of the HTTP transfer for CMP might want to
  consider using HTTP over TLS according to <xref target="RFC9110"/> or virtual
  private networks created, for example, by utilizing Internet
  Protocol Security according to <xref target="RFC4301"/>.  Compliant
  implementations <bcp14>MUST</bcp14> support TLS with the option to authenticate
  both server and client.</t>
        </li>
      </ol>
    </section>
    <section anchor="sect-6">
      <name>IANA Considerations</name>
      <t>The reference to <xref target="RFC2510"/> at https://www.iana.org/assignments/media-types/media-types.xhtml should be replaced with a reference to this document.</t>
      <t>The reference to <xref target="RFC4210"/> at https://www.iana.org/assignments/core-parameters/core-parameters.xhtml should be replaced with a reference to this document.</t>
      <t>No further action by the IANA is necessary for this document or any anticipated
updates.</t>
    </section>
    <section anchor="sect-7">
      <name>Acknowledgments</name>
      <t>The authors of this document wish to thank Tomi Kause and Martin Peylo, the
original authors of <xref target="RFC6712"/>, for their work.</t>
      <t>We also thank all reviewers of this document for their valuable feedback.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC1945">
          <front>
            <title>Hypertext Transfer Protocol -- HTTP/1.0</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="H. Frystyk" initials="H." surname="Frystyk"/>
            <date month="May" year="1996"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is an application-level protocol with the lightness and speed necessary for distributed, collaborative, hypermedia information systems. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1945"/>
          <seriesInfo name="DOI" value="10.17487/RFC1945"/>
        </reference>
        <reference anchor="RFC8615">
          <front>
            <title>Well-Known Uniform Resource Identifiers (URIs)</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="May" year="2019"/>
            <abstract>
              <t>This memo defines a path prefix for "well-known locations", "/.well-known/", in selected Uniform Resource Identifier (URI) schemes.</t>
              <t>In doing so, it obsoletes RFC 5785 and updates the URI schemes defined in RFC 7230 to reserve that space. It also updates RFC 7595 to track URI schemes that support well-known URIs in their registry.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8615"/>
          <seriesInfo name="DOI" value="10.17487/RFC8615"/>
        </reference>
        <reference anchor="RFC9112">
          <front>
            <title>HTTP/1.1</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document specifies the HTTP/1.1 message syntax, message parsing, connection management, and related security concerns.</t>
              <t>This document obsoletes portions of RFC 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="99"/>
          <seriesInfo name="RFC" value="9112"/>
          <seriesInfo name="DOI" value="10.17487/RFC9112"/>
        </reference>
        <reference anchor="I-D.ietf-lamps-rfc4210bis">
          <front>
            <title>Internet X.509 Public Key Infrastructure -- Certificate Management Protocol (CMP)</title>
            <author fullname="Hendrik Brockhaus" initials="H." surname="Brockhaus">
              <organization>Siemens</organization>
            </author>
            <author fullname="David von Oheimb" initials="D." surname="von Oheimb">
              <organization>Siemens</organization>
            </author>
            <author fullname="Mike Ounsworth" initials="M." surname="Ounsworth">
              <organization>Entrust</organization>
            </author>
            <author fullname="John Gray" initials="J." surname="Gray">
              <organization>Entrust</organization>
            </author>
            <date day="1" month="March" year="2024"/>
            <abstract>
              <t>   This document describes the Internet X.509 Public Key Infrastructure
   (PKI) Certificate Management Protocol (CMP).  Protocol messages are
   defined for X.509v3 certificate creation and management.  CMP
   provides interactions between client systems and PKI components such
   as a Registration Authority (RA) and a Certification Authority (CA).

   This document obsoletes RFC 4210 by including the updates specified
   by CMP Updates RFC 9480 Section 2 and Appendix A.2 maintaining
   backward compatibility with CMP version 2 wherever possible and
   obsoletes both documents.  Updates to CMP version 2 are: improving
   crypto agility, extending the polling mechanism, adding new general
   message types, and adding extended key usages to identify special CMP
   server authorizations.  Introducing CMP version 3 to be used only for
   changes to the ASN.1 syntax, which are: support of EnvelopedData
   instead of EncryptedValue and hashAlg for indicating a hash
   AlgorithmIdentifier in certConf messages.

   In addition to the changes specified in CMP Updates RFC 9480 this
   document adds support for management of KEM certificates.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-rfc4210bis-08"/>
        </reference>
        <reference anchor="ITU.X690.1994">
          <front>
            <title>Information Technology - ASN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)</title>
            <author>
              <organization>International Telecommunications Union</organization>
            </author>
            <date year="1994"/>
          </front>
          <seriesInfo name="ITU-T" value="Recommendation X.690"/>
        </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"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC9480">
          <front>
            <title>Certificate Management Protocol (CMP) Updates</title>
            <author fullname="H. Brockhaus" initials="H." surname="Brockhaus"/>
            <author fullname="D. von Oheimb" initials="D." surname="von Oheimb"/>
            <author fullname="J. Gray" initials="J." surname="Gray"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>This document contains a set of updates to the syntax of Certificate Management Protocol (CMP) version 2 and its HTTP transfer mechanism. This document updates RFCs 4210, 5912, and 6712.</t>
              <t>The aspects of CMP updated in this document are using EnvelopedData instead of EncryptedValue, clarifying the handling of p10cr messages, improving the crypto agility, as well as adding new general message types, extended key usages to identify certificates for use with CMP, and well-known URI path segments.</t>
              <t>CMP version 3 is introduced to enable signaling support of EnvelopedData instead of EncryptedValue and signal the use of an explicit hash AlgorithmIdentifier in certConf messages, as far as needed.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9480"/>
          <seriesInfo name="DOI" value="10.17487/RFC9480"/>
        </reference>
        <reference anchor="RFC9483">
          <front>
            <title>Lightweight Certificate Management Protocol (CMP) Profile</title>
            <author fullname="H. Brockhaus" initials="H." surname="Brockhaus"/>
            <author fullname="D. von Oheimb" initials="D." surname="von Oheimb"/>
            <author fullname="S. Fries" initials="S." surname="Fries"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>This document aims at simple, interoperable, and automated PKI management operations covering typical use cases of industrial and Internet of Things (IoT) scenarios. This is achieved by profiling the Certificate Management Protocol (CMP), the related Certificate Request Message Format (CRMF), and transfer based on HTTP or Constrained Application Protocol (CoAP) in a succinct but sufficiently detailed and self-contained way. To make secure certificate management for simple scenarios and constrained devices as lightweight as possible, only the most crucial types of operations and options are specified as mandatory. More specialized or complex use cases are supported with optional features.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9483"/>
          <seriesInfo name="DOI" value="10.17487/RFC9483"/>
        </reference>
        <reference anchor="RFC2510">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate Management Protocols</title>
            <author fullname="C. Adams" initials="C." surname="Adams"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <date month="March" year="1999"/>
            <abstract>
              <t>This document describes the Internet X.509 Public Key Infrastructure (PKI) Certificate Management Protocols. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2510"/>
          <seriesInfo name="DOI" value="10.17487/RFC2510"/>
        </reference>
        <reference anchor="RFC4210">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate Management Protocol (CMP)</title>
            <author fullname="C. Adams" initials="C." surname="Adams"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="T. Kause" initials="T." surname="Kause"/>
            <author fullname="T. Mononen" initials="T." surname="Mononen"/>
            <date month="September" year="2005"/>
            <abstract>
              <t>This document describes the Internet X.509 Public Key Infrastructure (PKI) Certificate Management Protocol (CMP). Protocol messages are defined for X.509v3 certificate creation and management. CMP provides on-line interactions between PKI components, including an exchange between a Certification Authority (CA) and a client system. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4210"/>
          <seriesInfo name="DOI" value="10.17487/RFC4210"/>
        </reference>
        <reference anchor="RFC4301">
          <front>
            <title>Security Architecture for the Internet Protocol</title>
            <author fullname="S. Kent" initials="S." surname="Kent"/>
            <author fullname="K. Seo" initials="K." surname="Seo"/>
            <date month="December" year="2005"/>
            <abstract>
              <t>This document describes an updated version of the "Security Architecture for IP", which is designed to provide security services for traffic at the IP layer. This document obsoletes RFC 2401 (November 1998). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4301"/>
          <seriesInfo name="DOI" value="10.17487/RFC4301"/>
        </reference>
        <reference anchor="RFC5246">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
            <author fullname="T. Dierks" initials="T." surname="Dierks"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2008"/>
            <abstract>
              <t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol. The TLS protocol provides communications security over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5246"/>
          <seriesInfo name="DOI" value="10.17487/RFC5246"/>
        </reference>
        <reference anchor="RFC6712">
          <front>
            <title>Internet X.509 Public Key Infrastructure -- HTTP Transfer for the Certificate Management Protocol (CMP)</title>
            <author fullname="T. Kause" initials="T." surname="Kause"/>
            <author fullname="M. Peylo" initials="M." surname="Peylo"/>
            <date month="September" year="2012"/>
            <abstract>
              <t>This document describes how to layer the Certificate Management Protocol (CMP) over HTTP. It is the "CMPtrans" document referenced in RFC 4210; therefore, this document updates the reference given therein. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6712"/>
          <seriesInfo name="DOI" value="10.17487/RFC6712"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
      </references>
    </references>
    <?line 470?>

<section anchor="History">
      <name>History of Changes</name>
      <t>Note: This appendix will be deleted in the final version of the document.</t>
      <t>From version 04 -&gt; 05:</t>
      <ul spacing="normal">
        <li>
          <t>Added IANA considerations addressing IANA early review.</t>
        </li>
      </ul>
      <t>From version 03 -&gt; 04:</t>
      <ul spacing="normal">
        <li>
          <t>Aligned with released RFC 9480 - RFC 9483.</t>
        </li>
      </ul>
      <t>From version 02 -&gt; 03:</t>
      <ul spacing="normal">
        <li>
          <t>Fixing one formatting nit.</t>
        </li>
      </ul>
      <t>From version 01 -&gt; 02:</t>
      <ul spacing="normal">
        <li>
          <t>Updated Section 3.4 including the requirement to add the content-length filed
into the HTTP header.</t>
        </li>
        <li>
          <t>Added a reference to TLS 1.3.</t>
        </li>
        <li>
          <t>Addressed idnits feedback, specifically changing the following RFC references:
RFC2616 -&gt; RFC9112; RFC2818 -&gt; RFC9110, and RFC5246 -&gt; RFC8446</t>
        </li>
      </ul>
      <t>From version 00 -&gt; 01:</t>
      <ul spacing="normal">
        <li>
          <t>Performed all updates specified in CMP Updates Section 3.</t>
        </li>
      </ul>
      <t>Version 00:</t>
      <t>This version consists of the text of RFC6712 with the following changes:</t>
      <ul spacing="normal">
        <li>
          <t>Introduced the authors of this document and thanked the authors of RFC6712
for their work.</t>
        </li>
        <li>
          <t>Added a paragraph to the introduction explaining the background of this document.</t>
        </li>
        <li>
          <t>Added the change history to this appendix.</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA81c63YbuZH+j6fAan7Y3kPSoi6+aGadKLI8o41lay05k5xZ
/wC7QRKjZnenL6IYr/ZZ8ix5sq2vCkB3U1J2Jnv2nMxJMlR3AyjU9atCIePx
WN0c6X3lyupIN1VbN3u7u69391RaJLlZ2SOdVmbejJ1t5uPMrMp6XM2TFy+n
ezNXj3cPVWKaI103qSpmdZHZxtZH+gne69cHr3afqKTIa5vXLR7T/PaJqtvZ
ytW1K/JmU9ICZ6dX71Rm8sWRtrkq3ZHSuimS+D3/ldqyWdKjA/xdb1aVnde9
L+qiavyjuclqeta4JqPJ39DLs7yxVW4b/cfJ4e5rfdHOMpfo39sNvZlXpqZJ
kqatrCZmaP3D1dWFvqpMXs9tpedFpZul1Se2atzc0W6tPje5WdiVzRt9URVE
XJHppyfnF8+Umc0qS/z89O7Es0itaVvvj88vLvWPRXXt8oX+viraUqU005He
2907UKZtlkV1pMZaOP6DzdPKXevfVUVyvTRtTVQVFc1z6bAq/gwLdU9oF9aS
KH7EVqvxTZGP/cvxZUObrK2e0mdJkdIKT17t7u/vg3GJazZH+rzNXbLk123e
VPTke1utTL6hR3ZlXHakl0LUZBaI+m0t00+SYkWftZWjj5qmrI+eP1+v15P+
67Czt+bGpfq/NFGnPy6tW83+GbaWgqoJTTspmKZ/ZGfn7trqj21er0kTl2FX
pzmbVG9X3ZOwq+n01Ut9YaprfZGZxNKbyi7IOGjOD92uDg/3X77u7crluTVl
kbm6v7XPuWtsqi8bUq5aF3N9vLIVKW231xXROSkCnb+1Qs5jO+2/Djv992KZ
kw6bzT/vJn8mEicLIvHX7M/lZOsr07gbCw9EJgwH1v3c9z/3Dqfh6cFe93N/
d+p/Hu4dvPA/4QT8z1cH8enrKYblW6tNXx8chm9fTA+7b3mGs/HbydAHY3Fy
MPzy6vPkjy9e706mr18fHCk1Ho9JFsR7kzRKqaulqzX585ZdVmrrpHIzYt2y
WJNr1ZnZ2F/k5BQ7OV3c0OfwkhOlzhrt8iRraVKeoS1TkUoO4jXHgbq0Cc1K
InO5phn0Z/8RvgCP9aVNGlIGta9NnuoQSFI9K5plJLyeaH21tHW3iCPpFWmb
WJn101mt2xoe1qgfbZaNr/NineuS4oK7nQhXVi5NM6vUNwgKPBgL66/f1ETC
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
3+gOkzbxPkG8JR4carBm+vp/AJpULRlwRgAA

-->

</rfc>
