<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.6.4 (Ruby 2.6.6) -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-anima-constrained-voucher-17" category="std" consensus="true" updates="8366, 8995" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.5.0 -->
  <front>
    <title abbrev="Constrained BRSKI">Constrained Bootstrapping Remote Secure Key Infrastructure (BRSKI)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-anima-constrained-voucher-17"/>
    <author initials="M." surname="Richardson" fullname="Michael Richardson">
      <organization>Sandelman Software Works</organization>
      <address>
        <email>mcr+ietf@sandelman.ca</email>
      </address>
    </author>
    <author initials="P." surname="van der Stok" fullname="Peter van der Stok">
      <organization>vanderstok consultancy</organization>
      <address>
        <email>stokcons@bbhmail.nl</email>
      </address>
    </author>
    <author initials="P." surname="Kampanakis" fullname="Panos Kampanakis">
      <organization>Cisco Systems</organization>
      <address>
        <email>pkampana@cisco.com</email>
      </address>
    </author>
    <author initials="E." surname="Dijk" fullname="Esko Dijk">
      <organization>IoTconsultancy.nl</organization>
      <address>
        <email>esko.dijk@iotconsultancy.nl</email>
      </address>
    </author>
    <date year="2022" month="April" day="07"/>
    <area>Internet</area>
    <workgroup>anima Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document defines the Constrained Bootstrapping Remote Secure Key Infrastructure (Constrained BRSKI) protocol,
which provides a solution for secure zero-touch bootstrapping of resource-constrained (IoT) devices into the network
of a domain owner. This protocol is designed for constrained networks, which may have limited data throughput or may
experience frequent packet loss. Constrained BRSKI is a variant of the BRSKI protocol, which uses an artifact signed by the
device manufacturer called the "voucher" which enables a new device and the owner's network to mutually authenticate.
While the BRSKI voucher is typically encoded in JSON, Constrained BRSKI defines a compact CBOR-encoded voucher.
The BRSKI voucher is extended with new data types that allow for smaller voucher sizes.
The Enrollment over Secure Transport (EST) protocol, used in BRSKI, is replaced with EST-over-CoAPS;
and HTTPS used in BRSKI is replaced with CoAPS.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Secure enrollment of new nodes into constrained networks with constrained nodes presents unique challenges.
As explained in <xref target="RFC7228"/>, the networks are challenged and the nodes are constrained by energy, memory space, and code size.</t>
      <t>The Bootstrapping Remote Secure Key Infrastructure (BRSKI) protocol described in <xref target="RFC8995"/>
provides a solution for secure zero-touch (automated) bootstrap of new (unconfigured) devices.
In it, new devices, such as IoT devices, are called "pledges", and equipped with a factory-installed Initial Device Identifier (IDevID) (see <xref target="ieee802-1AR"/>), are enrolled into a network.</t>
      <t>The BRSKI solution described in <xref target="RFC8995"/> was designed to be modular, and this document describes a version scaled to the constraints of IoT deployments.</t>
      <t>Therefore, this document defines a constrained version of the voucher artifact (described in <xref target="RFC8366"/>), along with a constrained version of BRSKI.
This constrained-BRSKI protocol makes use of the constrained CoAP-based version of EST (EST-coaps from <xref target="I-D.ietf-ace-coap-est"/>) rather than the EST over HTTPS <xref target="RFC7030"/>.
Constrained-BRSKI is itself scalable to multiple resource levels through the definition of optional functions. <xref target="appendix-pledge-profiles"/> illustrates this.</t>
      <t>In BRSKI, the <xref target="RFC8366"/> voucher is by default serialized to JSON with a signature in CMS <xref target="RFC5652"/>.
This document defines a new voucher serialization to CBOR <xref target="RFC8949"/> with a signature in COSE <xref target="I-D.ietf-cose-rfc8152bis-struct"/>.</t>
      <t>This COSE-signed CBOR-encoded voucher is transported using both secured CoAP and HTTPS.
The CoAP connection (between Pledge and Registrar) is to be protected by either OSCORE+EDHOC <xref target="I-D.ietf-lake-edhoc"/> or DTLS (CoAPS).
The HTTP connection (between Registrar and MASA) is to be protected using TLS (HTTPS).</t>
      <t>This document specifies a constrained voucher-request artifact based on <xref section="3" sectionFormat="of" target="RFC8995"/>, and
voucher(-request) transport over CoAP based on <xref section="3" sectionFormat="of" target="RFC8995"/> and on <xref target="I-D.ietf-ace-coap-est"/>.</t>
      <t>The CBOR definitions for the constrained voucher format are defined using the mechanism described in <xref target="I-D.ietf-core-yang-cbor"/> using the SID mechanism explained in <xref target="I-D.ietf-core-sid"/>.
As the tooling to convert YANG documents into a list of SID keys is still in its infancy, the table of SID values presented here MUST be considered normative rather than the output of the tool specified in <xref target="I-D.ietf-core-sid"/>.</t>
    </section>
    <section anchor="Terminology">
      <name>Terminology</name>
      <t>The following terms are defined in <xref target="RFC8366"/>, and are used identically as in that document:
artifact, domain, imprint, Join Registrar/Coordinator (JRC), Manufacturer Authorized Signing Authority
(MASA), Pledge, Registrar, Trust of First Use (TOFU), and Voucher.</t>
      <t>The following terms from <xref target="RFC8995"/> are used identically as in that document:
Domain CA, enrollment, IDevID, Join Proxy, LDevID, manufacturer, nonced, nonceless, PKIX.</t>
      <t>The term Pledge Voucher Request, or acronym PVR, is introduced to refer to the voucher request between the pledge and the Registrar.</t>
      <t>The term Registrar Voucher Request, or acronym RVR, is introduced to refer to the voucher request between the Registrar and the MASA.</t>
      <t>In code examples, the string "&lt;CODE BEGINS&gt;" denotes the start of a code example and "&lt;CODE ENDS&gt;" the end of the code example.
Four dots ("....") in a CBOR diagnostic notation byte string denotes a further sequence of bytes that is not shown for brevity.</t>
    </section>
    <section anchor="reqlang">
      <name>Requirements Language</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP&nbsp;14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
    </section>
    <section anchor="survey">
      <name>Overview of Protocol</name>
      <t><xref target="RFC8366"/> provides for vouchers that assert proximity, authenticate the Registrar, and can offer varying levels of anti-replay protection.</t>
      <t>The proximity proof provided for in <xref target="RFC8366"/>, is an assertion that the Pledge and the Registrar are believed to be close together, from a network topology point of view.
Like in <xref target="RFC8995"/>, proximity is shown by making TLS connections between the Pledge and Registrar using IPv6 Link-Local addresses.</t>
      <t>The TLS connection is used to make a Voucher Request.
This request is verified by an agent of the Pledge's manufacturer, which then issues a voucher.
The voucher provides an authorization statement from the manufacturer indicating that the Registrar is the intended owner of the device.
The voucher refers to the Registrar through pinning of the Registrar's identity.</t>
      <t>This document does not make any extensions to the semantic meaning of vouchers, only the encoding has been changed to optimize for constrained devices and networks.
The two main parts of the BRSKI protocol are named separately in this document: BRSKI-EST for the protocol between Pledge and Registrar, and BRSKI-MASA for the
protocol between the Registrar and the MASA.</t>
      <t>Time-based vouchers are supported in this definition, but given that constrained devices are extremely unlikely to have accurate time, their use will be uncommon.
Most Pledges using constrained vouchers will be online during enrollment and will use live nonces to provide anti-replay protection rather than expiry times.</t>
      <t><xref target="RFC8366"/> defines the voucher artifact, while the Voucher Request artifact was defined in <xref target="RFC8995"/>.
This document defines both a constrained voucher and a constrained voucher-request.
They are presented in the order "voucher-request", followed by a "voucher" response as this is
the order that they occur in the protocol.</t>
      <t>The constrained voucher request MUST be signed by the Pledge.
It signs using the private key associated with its IDevID X.509 certificate, or if an IDevID is not available, then the private key associated with its manufacturer-installed raw public key (RPK).
<xref target="rpk-considerations"/> provides additional details on PKIX-less operations.</t>
      <t>The constrained voucher MUST be signed by the MASA.</t>
      <t>For the constrained voucher request this document defines two distinct methods for the Pledge to identify the Registrar: using either the Registrar's X.509 certificate, or using a raw public key (RPK) of the Registrar.</t>
      <t>For the constrained voucher both methods are supported to indicate (pin) a trusted domain identity: using either a pinned domain X.509 certificate, or a pinned raw public key (RPK).</t>
      <t>The BRSKI architectures mandates that the MASA be aware of the capabilities of the pledge.
This is not a drawback as the pledges are constructed by a manufacturer which also arranges for the MASA to be aware of the inventory of devices.</t>
      <t>The MASA therefore knows if the pledge supports PKIX operations, PKIX format certificates, or if the pledge is limited to Raw Public Keys (RPK).
Based upon this, the MASA can select which attributes to use in the voucher for certain operations, like the pinning of the Registrar identity.
This is described in more detail in <xref target="yang-voucher"/>, <xref target="pinning"/> and <xref target="pinned-with-rpk"/> (for RPK specifically).</t>
    </section>
    <section anchor="updates-to-rfc8366-and-rfc8995">
      <name>Updates to RFC8366 and RFC8995</name>
      <t>This section details the ways in which this document updates other RFCs.
The terminology for Updates is taken from <xref target="I-D.kuehlewind-update-tag"/>.</t>
      <t>This document Updates <xref target="RFC8366"/>. It Extends <xref target="RFC8366"/> by creating a new serialization format, and creates a mechanism to pin Raw Public Key (RPK).</t>
      <t>This document Updates <xref target="RFC8995"/>. It Amends <xref target="RFC8995"/></t>
      <ul spacing="normal">
        <li>by clarifying how pinning is done,</li>
        <li>adopts clearer explanation of the TLS Server Name Indicator (SNI), see <xref target="sni"/> and <xref target="sni-masa"/></li>
        <li>clarifies when new trust anchors should be retrieved (<xref target="brski-est-extensions-pledge"/>),</li>
        <li>clarified what kinds of Extended Key Usage attributes are appropriate for each certificate (<xref target="registrar-certificate-requirement"/>)</li>
      </ul>
      <t>It Extends <xref target="RFC8995"/> as follows:
* defines the CoAP version of the BRSKI protocol</t>
      <ul spacing="normal">
        <li>makes some messages optional if the results can be inferred from other validations (<xref target="brski-est-extensions"/>),</li>
        <li>provides the option to return trust anchors in a simpler format (<xref target="brski-est-extensions-registrar"/>)</li>
        <li>extends the BRSKI-MASA protocol to carry the new voucher-cose+cbor format.</li>
      </ul>
    </section>
    <section anchor="brski-est">
      <name>BRSKI-EST Protocol</name>
      <t>This section describes the constrained BRSKI extensions to EST-coaps <xref target="I-D.ietf-ace-coap-est"/> to transport the voucher between Registrar and Pledge (optionally via a Join Proxy) over CoAP.
The extensions are targeting low-resource networks with small packets.</t>
      <t>The constrained BRSKI-EST protocol described in this section is between the Pledge and the Registrar only.</t>
      <section anchor="sni">
        <name>Registrar and the Server Name Indicator (SNI)</name>
        <t>A DTLS connection is established between the Pledge and the Registrar, similar to the TLS connection
described in <xref section="5.1" sectionFormat="of" target="RFC8995"/>.
This may occur via a Join Proxy as described in <xref target="joinproxy"/>.
Regardless of the Join Proxy mechanism, the DTLS connection should operate identically.</t>
        <t>The SNI issue described below affects <xref target="RFC8995"/> as well, and is reported in errata: https://www.rfc-editor.org/errata/eid6648</t>
        <t>As the Registrar is discovered by IP address, and typically connected via a Join Proxy, the name of the Registrar is not known to the Pledge.
The Pledge will not know what the hostname for the Registrar is, so it cannot do RFC6125 DNS-ID validation on the Registrar's certificate.
Instead, it must do validation using the RFC8366 voucher.</t>
        <t>As the Pledge does not know the name of the Registrar, the Pledge cannot put any reasonable value into the <xref target="RFC6066"/> Server Name Indicator (SNI).
Threfore the Pledge SHOULD omit the SNI extension as per <xref section="9.2" sectionFormat="of" target="RFC8446"/>.</t>
        <t>In some cases, particularly while testing BRSKI, a Pledge may be given the hostname of a particular Registrar to connect to directly.
Such a bypass of the discovery process may result in the Pledge taking a different code branch to establish a DTLS connection, and may result in the SNI being inserted by a library.
The Registrar MUST ignore any SNI seen.</t>
        <t>A primary motivation for making the SNI ubiquitous in the public web is because it allows for multi-tenant hosting of HTTPS sites on a single (scarce) IPv4 address.
This consideration does not apply to the server function in the Registrar because:</t>
        <ul spacing="normal">
          <li>it uses DTLS and CoAP, not HTTPS</li>
          <li>it typically uses IPv6, often <xref target="RFC4193"/> Unique Local Address, which are plentiful</li>
          <li>the server port number is typically discovered, so multiple tenants can be accomodated via unique port numbers.</li>
        </ul>
        <t>As per <xref section="3.6.1" sectionFormat="of" target="RFC7030"/>, the Registrar certificate MUST have the Extended Key Usage (EKU) id-kp-cmcRA.
This certificate is also used as a TLS Server Certificate, so it MUST also have the EKU id-kp-serverAuth.</t>
      </section>
      <section anchor="tls-client-certificates-idevid-authentication">
        <name>TLS Client Certificates: IDevID authentication</name>
        <t>As described in <xref section="5.1" sectionFormat="of" target="RFC8995"/>, the Pledge makes a connection to the Registrar using a TLS Client Certificate for authentication.</t>
        <t>Subsequently the Pledge will send a Pledge Voucher Request (PVR).</t>
        <t>As explained below in <xref target="registrar-identity"/>, the "x5bag" element may be used in the RVR to communicate identity of the Registrar to MASA.
The Pledge SHOULD NOT use the x5bag attribute in this way in the PVR.
A Registrar that processes a PVR with an x5bag attribute MUST ignore it, and MUST use only the TLS Client Certificate extension for authentication of the Pledge.</t>
        <t>A situation where the Pledge MAY use the x5bag is for communication of certificate chains to the MASA.
This would arise in some vendor-specific situations involving outsourcing of MASA functionality, or rekeying of the IDevID certification authority.</t>
      </section>
      <section anchor="discovery">
        <name>Discovery, URIs and Content Formats</name>
        <t>To keep the protocol messages small the EST-coaps and constrained-BRSKI URIs are shorter than the respective EST and BRSKI URIs.</t>
        <t>The EST-coaps server URIs differ from the EST URIs by replacing the scheme https by coaps and by specifying shorter resource path names. Below are some examples;
the first two using a discovered short path name and the last one using the well-known URI of EST which requires no discovery.</t>
        <artwork><![CDATA[
  coaps://server.example.com/est/<short-name>
  coaps://server.example.com/e/<short-name>
  coaps://server.example.com/.well-known/est/<short-name>
]]></artwork>
        <t>Similarly the constrained BRSKI server URIs differ from the BRSKI URIs by replacing the scheme https by coaps and by specifying shorter resource path names. Below are some examples;
the first two using a discovered short path name and the last one using the well-known URI prefix which requires no discovery.
This is the same "/.well-known/brski" prefix as defined in <xref section="5" sectionFormat="of" target="RFC8995"/>.</t>
        <artwork><![CDATA[
  coaps://server.example.com/brski/<short-name>
  coaps://server.example.com/b/<short-name>
  coaps://server.example.com/.well-known/brski/<short-name>
]]></artwork>
        <t>Figure 5 in <xref section="3.2.2" sectionFormat="of" target="RFC7030"/> enumerates the operations supported by EST, for which Table 1 in <xref section="5.1" sectionFormat="of" target="I-D.ietf-ace-coap-est"/> enumerates the corresponding
EST-coaps short path names. Similarly, <xref target="brski-short-uri"/> below provides the mapping from the supported BRSKI extension URI paths to the constrained-BRSKI URI paths.</t>
        <table anchor="brski-short-uri">
          <name>BRSKI URI paths mapping to Constrained BRSKI URI paths</name>
          <thead>
            <tr>
              <th align="left">BRSKI resource</th>
              <th align="left">constrained-BRSKI resource</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">/requestvoucher</td>
              <td align="left">/rv</td>
            </tr>
            <tr>
              <td align="left">/voucher_status</td>
              <td align="left">/vs</td>
            </tr>
            <tr>
              <td align="left">/enrollstatus</td>
              <td align="left">/es</td>
            </tr>
          </tbody>
        </table>
        <t>Note that /requestvoucher indicated above occurs between the Pledge and Registrar (in scope of the BRSKI-EST protocol), but it also occurs between Registrar and MASA. However,
as described in <xref target="brski-est"/>, this section and above table addresses only the BRSKI-EST protocol.</t>
        <t>Pledges that wish to discover the available BRSKI bootstrap options/formats, or reduce the size of the CoAP headers by eliminating the "/.well-known/brski" path, can do a discovery operation using <xref target="RFC6690"/> Section 4 by sending a discovery query to the Registrar.</t>
        <t>For example, if the Registrar supports a short BRSKI URL (/b) and supports the voucher format "application/voucher-cose+cbor" (TBD3), and status reporting in both CBOR and JSON formats:</t>
        <artwork><![CDATA[
  REQ: GET /.well-known/core?rt=brski*

  RES: 2.05 Content
  Content-Format: 40
  Payload:
  </b>;rt=brski,
  </b/rv>;rt=brski.rv;ct=TBD3,
  </b/vs>;rt=brski.vs;ct="50 60",
  </b/es>;rt=brski.es;ct="50 60"
]]></artwork>
        <t>The Registrar is under no obligation to provide shorter URLs, and MAY respond to this query with only the "/.well-known/brski/&lt;short-name&gt;" resources for the short names as defined in <xref target="brski-short-uri"/>.</t>
        <t>Registrars that have implemented shorter URLs MUST also respond in equivalent ways to the corresponding "/.well-known/brski/&lt;short-name&gt;" URLs, and MUST NOT distinguish between them.
In particular, a Pledge MAY use the longer and shorter URLs in any combination.</t>
        <t>When responding to a discovery request for BRSKI resources, the server MAY in addition return
the full resource paths and the content types which are supported by these resources as shown in above example.
This is useful when multiple content types are specified for a particular resource on the server.
The server responds with only the root path for the BRSKI resources (rt=brski, resource /b in above example) and no others in case the client queries for only rt=brski type resources.
(So, a query for rt=brski, without the wildcard character.)</t>
        <t>Without discovery, a longer well-known URL can only be used, such as:</t>
        <artwork><![CDATA[
   REQ: GET /.well-known/brski/rv
]]></artwork>
        <t>while with discovery of shorter URLs, a request such as:</t>
        <artwork><![CDATA[
   REQ: GET /b/rv
]]></artwork>
        <t>is possible.</t>
        <t>The return of multiple content-types in the "ct" attribute allows the Pledge to choose the most appropriate one.
Note that Content-Format TBD3 ("application/voucher-cose+cbor") is defined in this document.</t>
        <t>Content-Format TBD3 MUST be supported by the Registrar for the /rv resource.
If the "ct" attribute is not indicated for the /rv resource in the link format description, this implies that at least TBD3 is supported.</t>
        <t>Note that this specification allows for voucher-cose+cbor format requests and vouchers to be transmitted over HTTPS, as well as for voucher-cms+json and other formats yet to be defined over CoAP.
The burden for this flexibility is placed upon the Registrar.
A Pledge on constrained hardware is expected to support a single format only.</t>
        <t>The Pledge and MASA need to support one or more formats (at least TBD3) for the voucher and for the voucher request.
The MASA needs to support all formats that the Pledge supports.</t>
        <t><xref target="discovery-considerations"/> details how the Pledge discovers the Registrar and Join Proxy in different deployment scenarios.</t>
        <section anchor="rfc8995-telemetry-returns">
          <name>RFC8995 Telemetry Returns</name>
          <t><xref target="RFC8995"/> defines two telemetry returns from the Pledge which are sent to the Registrar.
These are the BRSKI Status Telemetry <xref section="5.7" sectionFormat="comma" target="RFC8995"/> and the Enrollment Status Telemetry <xref section="5.9.4" sectionFormat="comma" target="RFC8995"/>.
These are two POST operations made the by Pledge at two key steps in the process.</t>
          <t><xref target="RFC8995"/> defines the content of these POST operations in CDDL, which are serialized as JSON.
This document extends the list of acceptable formats to CBOR as well as JSON, using the rules from <xref target="RFC8610"/>.</t>
          <t>The existing JSON format is described as CoAP Content-Format 50 ("application/json"), and it MAY be supported.
The new CBOR format described as CoAP Content-Format 60 ("application/cbor"), MUST be supported by the Registrar for both the /vs and /es resources.</t>
        </section>
      </section>
      <section anchor="joinproxy">
        <name>Join Proxy options</name>
        <t><xref target="I-D.ietf-anima-constrained-join-proxy"/> specifies a constrained Join Proxy that is optionally placed between Pledge and Registrar.
This includes methods for discovery of the Join Proxy by the Pledge and discovery of the Registrar by the Join Proxy.</t>
      </section>
      <section anchor="brski-extensions">
        <name>Extensions to BRSKI</name>
        <section anchor="brski-extensions-discovery">
          <name>Discovery</name>
          <t>The Pledge discovers an IP address and port number that connects to the Registrar (possibly via a Join Proxy), and it establishes a DTLS connection.</t>
          <t>No further discovery of hosts or port numbers is required, but a pledge that can do more than one kind of enrollment (future work offers protocols other than <xref target="I-D.ietf-ace-coap-est"/>), then a pledge may need to use CoAP Discovery to determine what other protocols are available.</t>
          <t>A Pledge that only supports the EST-coaps enrollment method SHOULD NOT use discovery for BRSKI resources.
It is more efficient to just try the supported enrollment method via the well-known BRSKI/EST-coaps resources.
This also avoids the Pledge doing any CoRE Link Format parsing, which is specified in <xref section="4.1" sectionFormat="comma" target="I-D.ietf-ace-coap-est"/>.</t>
          <t>The Registrar MUST support all of the EST resources at their default ".well-known" locations (on the specified port)
as well as any server-specific shorter form that might also be supported.</t>
          <t>However, when discovery is being done by the Pledge, it is possible for the Registrar to return references to resources which are on different port numbers.
The Registrar SHOULD NOT use different ports numbers by default, because a Pledge that is connected via a Join Proxy can only access a single UDP port.
A Registrar configured to never use Join Proxies MAY be configured to use multiple port numbers.
Therefore a Registrar MUST host all discoverable BRSKI resources on the same (UDP) server port that the Pledge's DTLS connection is using.
Using the same UDP server port for all resources allows the Pledge to continue via the same DTLS connection
which is more efficient.</t>
        </section>
        <section anchor="brski-coap-responses">
          <name>CoAP responses</name>
          <t><xref section="5" sectionFormat="comma" target="RFC8995"/> defines a number of HTTP response codes that the Registrar is to return when certain conditions occur.</t>
          <t>The 401, 403, 404, 406 and 415 response codes map directly to CoAP codes 4.01, 4.03, 4.04, 4.06 and 4.15.</t>
          <t>The 202 Retry process which occurs in the voucher request, is to be handled in the same way as <xref section="5.7" sectionFormat="of" target="I-D.ietf-ace-coap-est"/> process for Delayed Responses.</t>
        </section>
      </section>
      <section anchor="brski-est-extensions">
        <name>Extensions to EST-coaps</name>
        <t>This document extends <xref target="I-D.ietf-ace-coap-est"/>, and it inherits the functions described in that document:
specifically, the mandatory Simple (Re-)Enrollment (/sen and /sren) and Certification Authority certificates request (/crts).
Support for CSR Attributes Request (/att) and server-side key generation (/skg, /skc) remains optional for the EST server.</t>
        <t>Collecting the resource definitions from both <xref target="RFC8995"/>, <xref target="RFC7030"/>, and <xref target="I-D.ietf-ace-coap-est"/> results in the following shorter forms of URI paths
for the commonly used resources:</t>
        <!-- Table order is currently the order in which typically the resources are used by Pledge. Change if we want to -->

<table anchor="brski-est-short-uri">
          <name>BRSKI/EST URI paths mapping to Constrained BRSKI/EST short URI paths</name>
          <thead>
            <tr>
              <th align="left">BRSKI + EST</th>
              <th align="left">Constrained-BRSKI + EST</th>
              <th align="left">Well-known URI namespace</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">/requestvoucher</td>
              <td align="left">/rv</td>
              <td align="left">brski</td>
            </tr>
            <tr>
              <td align="left">/voucher_status</td>
              <td align="left">/vs</td>
              <td align="left">brski</td>
            </tr>
            <tr>
              <td align="left">/csrattrs</td>
              <td align="left">/att</td>
              <td align="left">est</td>
            </tr>
            <tr>
              <td align="left">/simpleenroll</td>
              <td align="left">/sen</td>
              <td align="left">est</td>
            </tr>
            <tr>
              <td align="left">/cacerts</td>
              <td align="left">/crts</td>
              <td align="left">est</td>
            </tr>
            <tr>
              <td align="left">/enrollstatus</td>
              <td align="left">/es</td>
              <td align="left">brski</td>
            </tr>
            <tr>
              <td align="left">/simplereenroll</td>
              <td align="left">/sren</td>
              <td align="left">est</td>
            </tr>
          </tbody>
        </table>
        <section anchor="brski-est-extensions-pledge">
          <name>Pledge Extensions</name>
          <t>This section defines extensions to the BRSKI Pledge, which are applicable during the BRSKI bootstrap procedure.
A Pledge which only supports the EST-coaps enrollment method, SHOULD NOT use discovery for EST-coaps resources, because it is more efficient to enroll (e.g. /sen) via the well-known EST resource on the current DTLS connection.
This avoids an additional round-trip of packets and avoids the Pledge having to unnecessarily implement CoRE Link Format parsing.</t>
          <t>A constrained Pledge SHOULD NOT perform the optional EST "CSR attributes request" (/att) to minimize network traffic. The Pledge selects which attributes to include in the CSR.</t>
          <t>One or more Subject Distinguished Name fields MUST be included.
If the Pledge has no specific information on what attributes/fields are desired in the CSR, it MUST use the Subject Distinguished Name fields from its IDevID unmodified.
The Pledge can receive such information via the voucher (encoded in a vendor-specific way) or via some other, out-of-band means.</t>
          <t>A constrained Pledge MAY use the following optimized EST-coaps procedure to minimize network traffic.</t>
          <ol spacing="normal" type="1"><li>if the voucher, that validates the current Registrar, contains a single pinned domain CA certificate, the Pledge provisionally considers this certificate as the EST trust anchor, as if it were the result of "CA certificates request" (/crts) to the Registrar.</li>
            <li>Using this CA certificate as trust anchor it proceeds with EST simple enrollment (/sen) to obtain its provisionally trusted LDevID certificate.</li>
            <li>If the Pledge validates that the trust anchor CA was used to sign its LDevID certificate, the Pledge accepts the pinned domain CA certificate as the legitimate trust anchor CA for the Registrar's domain and accepts the associated LDevID certificate.</li>
            <li>If the trust anchor CA was NOT used to sign its LDevID certificate, the Pledge MUST perform an actual "CA certificates request" (/crts) to the EST server to obtain the EST CA trust anchor(s) since these can differ from the (temporary) pinned domain CA.</li>
            <li>When doing this /crts request, the Pledge MAY use a CoAP Accept Option with value TBD287 ("application/pkix-cert") to limit the number of returned EST CA trust anchors to only one.
A constrained Pledge MAY support only this format in a /crts response, per <xref section="5.3" sectionFormat="of" target="I-D.ietf-ace-coap-est"/>.</li>
            <li>If the Pledge cannot obtain the single CA certificate or the finally validated CA certificate cannot be chained to the LDevID certificate, then the Pledge MUST abort the enrollment process and report the error using the enrollment status telemetry (/es).</li>
          </ol>
          <t>Note that even though the Pledge may avoid performing any /crts request using the above EST-coaps procedure during bootstrap, it SHOULD support retrieval of the trust anchor CA periodically as detailed in the next section.</t>
        </section>
        <section anchor="brski-est-extensions-estclient">
          <name>EST-client Extensions</name>
          <t>This section defines extensions to EST-coaps clients, used after the BRSKI bootstrap procedure is completed.
(Note that such client is not called "Pledge" in this section, since it is already enrolled into the domain.)
A constrained EST-coaps client MAY support only the Content-Format TBD287 ("application/pkix-cert") in a /crts response, per <xref section="5.3" sectionFormat="of" target="I-D.ietf-ace-coap-est"/>.
In this case, it can only store one trust anchor of the domain.</t>
          <t>An EST-coaps client that has an idea of the current time (internally, or via NTP) SHOULD consider the validity time of the trust anchor CA, and MAY begin requesting a new trust anchor CA using the /crts request when the CA has 50% of it's validity time (notAfter - notBefore) left.
A client without access to the current time cannot decide if the trust anchor CA has expired, and SHOULD poll periodically for a new trust anchor using the /crts request at an interval of approximately 1 month.
An EST-coaps server SHOULD include the CoAP ETag Option in every response to a /crts request, to enable clients to perform low-overhead validation whether their trust anchor CA is still valid.
The EST-coaps client SHOULD store the ETag resulting from a /crts response in memory and SHOULD use this value in an ETag Option in its next GET /crts request.</t>
          <t>The above-mentioned limitation that an EST-coaps client may support only one trust anchor CA is not an issue in case the domain trust anchor remains stable. However, special consideration is
needed for cases where the domain trust anchor can change over time. Such a change may happen due to relocation of the client device to a new domain, or due to key update of
the trust anchor as described in <xref section="4.4" sectionFormat="comma" target="RFC4210"/>.</t>
          <t>From the client's viewpoint, a trust anchor change typically happens during EST re-enrollment: a change of domain CA requires all devices
operating under the old domain CA to acquire a new LDevID issued by the new domain CA. A client's re-enrollment may be triggered by various events, such as an instruction to re-enroll sent by a domain entity, or an imminent expiry of its LDevID certificate.
How the re-enrollment is explicitly triggered on the client by a domain entity, such as a commissioner or a Registrar, is out of scope of this specification.</t>
          <t>The mechanism described in <xref section="4.4" sectionFormat="comma" target="RFC4210"/> for Root CA key update requires four certificates: OldWithOld, OldWithNew, NewWithOld, and NewWithNew. The OldWithOld certificate is already
stored in the EST client's trust store. The NewWithNew certificate will be distributed as the single certificate in a /crts response, during EST re-enrollment.
Since the EST client can only accept a single certificate in a /crts response it implies that the EST client
cannot obtain the certificates OldWithNew and NewWithOld in this way, to perform the complete verification of the new domain CA. Instead, the client only verifies the EST server (Registrar) using its
old domain CA certificate in its trust store as detailed below, and based on this trust in the active and valid DTLS connection it automatically trusts the
new (NewWithNew) domain CA certificate that the EST server provides in the /crts response.</t>
          <t>In this manner, even during rollover of trust anchors, it is possible to have only a single trust anchor provided in a /crts response.</t>
          <t>During the period of the certificate renewal, it is not possible to create new communication channels between devices with NewCA certificates devices with OldCA certificates.
One option is that devices should avoid restarting existing DTLS or OSCORE connections during this interval that new certificates are being deployed.
The recommended period for certificate renewal is 24 hours.
For re-enrollment, the constrained EST-coaps client MUST support the following EST-coaps procedure, where optional re-enrollment to a new domain is under control of the Registrar:</t>
          <ol spacing="normal" type="1"><li>The client connects with DTLS to the Registrar, and authenticates with its present domain certificate (LDevID certificate) as usual. The Registrar authenticates itself with its domain certificate that
is trusted by the client, i.e. it chains to the single trust anchor that the client has stored. This is the "old" trust anchor, the one that will be eventually replaced in case the Registrar
decides to re-enroll the client into a new domain.</li>
            <li>The client performs the simple re-enrollment request (/sren) and upon success it obtains a new LDevID.</li>
            <li>The client verifies the new LDevID against its (single) existing domain trust anchor. If it chains successfully, this means the trust anchor did not change and the client MAY skip retrieving the current CA certificate using the "CA certificates request" (/crts). If it does not chain successfully, this means the trust anchor was changed/updated and the client then MUST retrieve the new domain trust anchor using the "CA certificates request" (/crts).</li>
            <li>If the client retrieved a new trust anchor in step 3, then it MUST verify that the new trust anchor chains with the new LDevID certificate it obtained in step 2. If it chains successfully, the client stores both, accepts the new LDevID certificate and stops using it prior LDevID certificate. If it does not chain successfully, the client MUST NOT update its LDevID certificate, it MUST NOT update its (single) domain trust anchor, and the client MUST abort the enrollment process and report the error to the Registrar using enrollment status telemetry (/es).</li>
          </ol>
          <t>Note that even though the EST-coaps client may skip the /crts request in step 3, it SHOULD support retrieval of the trust anchor CA periodically as detailed earlier in this section.</t>
        </section>
        <section anchor="brski-est-extensions-registrar">
          <name>Registrar Extensions</name>
          <t>A Registrar SHOULD host any discoverable EST-coaps resources on the same (UDP) server port that the Pledge's DTLS initial connection is using.
This avoids the overhead of the Pledge reconnecting using DTLS, when it performs EST enrollment after the BRSKI voucher request.</t>
          <t>The Content-Format 50 (application/json) MUST be supported and 60 (application/cbor) MUST be supported by the Registrar for the /vs and /es resources.</t>
          <t>Content-Format TBD3 MUST be supported by the Registrar for the /rv resource.</t>
          <t>When a Registrar receives a "CA certificates request" (/crts) request with a CoAP Accept Option with value TBD287 ("application/pkix-cert") it SHOULD return only the
single CA certificate that is the envisioned or actual authority for the current, authenticated Pledge making the request.</t>
          <t>If the Pledge included in its request an Accept Option for only the TBD287 ("application/pkix-cert") Content Format, but the domain has been configured to operate with multiple CA trust anchors only, then the Registrar returns a 4.06 Not Acceptable error to signal that the Pledge needs to use the Content Format 281 ("application/pkcs7-mime; smime-type=certs-only") to retrieve all the certificates.</t>
          <t>If the current authenticated client is an EST-coaps client that was already enrolled in the domain, and the Registrar is configured to assign this client to a new domain CA trust anchor during the next EST re-enrollment procedure, then the Registrar MUST respond with the new domain CA certificate in case the client performs the "CA Certificates request" (/crts) with an Accept Option for TBD287 only. This signals the client that a new domain is assigned to it. The client follows the procedure as defined in <xref target="brski-est-extensions-estclient"/>.</t>
        </section>
      </section>
      <section anchor="dtls-fragments">
        <name>DTLS handshake fragmentation Considerations</name>
        <t>DTLS includes a mechanism to fragment the handshake messages.
This is described in <xref section="4.4" sectionFormat="of" target="I-D.ietf-tls-dtls13"/>.
The protocol described in this document will often be used with a Join Proxy described in <xref target="I-D.ietf-anima-constrained-join-proxy"/>.
The Join Proxy will need some overhead, while the maximum packet sized guaranteed on 802.15.4 networks is 1280 bytes.
It is RECOMMENDED that a PMTU of 1024 bytes be assumed for the DTLS handshake.
It is unlikely that any Packet Too Big indications <xref target="RFC4443"/> will be relayed by the Join Proxy.</t>
        <t>During the operation of the constrained BRSKI-EST protocol, the CoAP Blockwise transfer mechanism will be used when message sizes exceed the PMTU.
A Pledge/EST-client on a constrained network MUST use the (D)TLS maximum fragment length extension ("max_fragment_length") defined in Section 4 of <xref target="RFC6066"/> with the maximum fragment length set to a value of either 2^9 or 2^10.</t>
      </section>
    </section>
    <section anchor="brski-masa">
      <name>BRSKI-MASA Protocol</name>
      <t>This section describes extensions to and clarifications of the BRSKI-MASA protocol between Registrar and MASA.</t>
      <section anchor="brski-masa-protocol-format">
        <name>Protocol and Formats</name>
        <t><xref section="5.4" sectionFormat="of" target="RFC8995"/> describes a connection between the Registrar and the MASA as being a normal TLS connection using HTTPS.
This document does not change that. The Registrar MUST use the format "application/voucher-cose+cbor" in its voucher request to MASA, when the Pledge uses this format in its reauqtes to the Registrar <xref target="RFC8995"/>.</t>
        <t>The MASA only needs to support formats for which there are Pledges that use that format.</t>
        <t>The Registrar MUST use the same format for the RVR as the Pledge used for its PVR.</t>
        <t>The Registrar indicates the voucher format it wants to receive from MASA using the HTTP Accept header.
This format MUST be the same as the format of the PVR, so that the Pledge can parse it.</t>
        <t>At the moment of writing the creation of coaps based MASAs is deemed unrealistic.
The use of CoAP for the BRSKI-MASA connection can be the subject of another document.
Some consideration was made to specify CoAP support for consistency, but:</t>
        <ul spacing="normal">
          <li>the Registrar is not expected to be so constrained that it cannot support HTTPS client connections.</li>
          <li>the technology and experience to build Internet-scale HTTPS responders (which the MASA is) is common, while the experience doing the same for CoAP is much less common.</li>
          <li>a Registrar is likely to provide onboarding services to both constrained and non-constrained devices.  Such a Registrar would need to speak HTTPS anyway.</li>
          <li>a manufacturer is likely to offer both constrained and non-constrained devices, so there may in practice be no situation in which the MASA could be CoAP-only.  Additionally, as the MASA is intended to be a function that can easily be oursourced to a third-party service provider, reducing the complexity would also seem to reduce the cost of that function.</li>
          <li>security-related considerations: see <xref target="security-masa-coaps"/>.</li>
        </ul>
      </section>
      <section anchor="brski-masa-rvr">
        <name>Registrar Voucher Request</name>
        <t>If the PVR contains a proximity assertion, the Registrar MUST propagate this assertion into the RVR by including the "assertion" field with the value "proximity".
This conforms to the example in <xref section="3.3" sectionFormat="of" target="RFC8995"/> of carrying the assertion forward.</t>
      </section>
      <section anchor="sni-masa">
        <name>MASA and the Server Name Indicator (SNI)</name>
        <t>A TLS/HTTPS connection is established between the Registrar and MASA.</t>
        <t><xref section="5.4" sectionFormat="of" target="RFC8995"/> explains this process, and there are no externally visible changes.
A MASA that supports the unconstrained voucher formats should be able to support constrained voucher formats equally well.</t>
        <t>There is no requirement that a single MASA be used for both constrained and unconstrained voucher requests: the choice of MASA is determined by the id-mod-MASAURLExtn2016 extension contained in the IDevID.</t>
        <t>The Registrar MUST do <xref target="RFC6125"/> DNS-ID checks on the contents of the certificate provided by the MASA.</t>
        <t>In constrast to the Pledge/Registrar situation, the Registrar always knows the name of the MASA, and MUST always include an <xref target="RFC6066"/> Server Name Indicator.
The SNI is optional in TLS1.2, but common.
The SNI it considered mandatory with TLS1.3.</t>
        <t>The presence of the SNI is needed by the MASA, in order for the MASA's server to host multiple tenants (for different customers).</t>
        <t>The Registrar SHOULD use a TLS Client Certificate to authenticate to the MASA per <xref section="5.4.1" sectionFormat="of" target="RFC8995"/>.
If the certificate that the Registrar uses is marked as a id-kp-cmcRA certificate, via Extended Key Usage, then it MUST also have the id-kp-clientAuth EKU attribute set.</t>
        <section anchor="registrar-certificate-requirement">
          <name>Registrar Certificate Requirement</name>
          <t>In summary for typical Registrar use, where a single Registrar certificate is used, then the certificate MUST have EKU of: id-kp-cmcRA, id-kp-serverAuth, id-kp-clientAuth.</t>
          <!-- ******************************************************************** -->

</section>
      </section>
    </section>
    <section anchor="pinning">
      <name>Pinning in Voucher Artifacts</name>
      <t>The voucher is a statement by the MASA for use by the Pledge that provides the identity of the Pledge's owner.
This section describes how the owner's identity is determined and how it is specified within the voucher.</t>
      <section anchor="registrar-identity">
        <name>Registrar Identity Selection and Encoding</name>
        <t><xref section="5.5" sectionFormat="of" target="RFC8995"/> describes BRSKI policies for selection of the owner identity. It indicates some of the flexibility that is possible for the Registrar, and recommends the Registrar to include only certificates in the voucher request (CMS) signing structure that participate in the certificate chain that is to be pinned.</t>
        <t>The MASA is expected to evaluate the certificates included by the Registrar in its voucher request, forming them into a chain with the Registrar's (signing) identity on one end. Then, it pins a certificate selected from the chain.
For instance, for a domain with a two-level certification authority (see <xref target="fig-twoca"/>), where the voucher-request has been signed by "Registrar", its signing structure includes two additional CA certificates.
The arrows in the figure indicate the issuing of a certificate, i.e. author of (1) issued (2) and author of (2) issued (3).</t>
        <figure anchor="fig-twoca">
          <name>Two-Level CA PKI</name>
          <artwork><![CDATA[
 .------------------.
 |  domain CA (1)   |
 |  trust anchor    |
 '------------------'
           |
           v
    .------------.
    | domain (2) |
    | Sub-CA     |
    '------------'
           |
           |
           v
  .----------------.
  |   domain       |
  | Registrar (3)  |
  | EE certificate |
  '----------------'
]]></artwork>
        </figure>
        <t>When the Registrar is using a COSE-signed constrained voucher request towards MASA, instead of a regular CMS-signed voucher request, the COSE_Sign1 object contains a protected and an unprotected header.
The Registrar MUST place all the certificates needed to validate the signature chain from the Registrar on the RVR in an "x5bag" attribute in the unprotected header <xref target="I-D.ietf-cose-x509"/>.</t>
        <t>The "x5bag" attribute is very important as it provides the required signals from the Registrar to control what identity is pinned in the resulting voucher.
This is explained in the next section.</t>
      </section>
      <section anchor="masa-pinning-policy">
        <name>MASA Pinning Policy</name>
        <t>The MASA, having assembled and verified the chain in the signing structure of the voucher request needs to select a certificate to pin.
(For the case that only the Registrar's End-Entity certificate is included, only this certificate can be selected and this section does not apply.)
The BRSKI policy for pinning by the MASA as described in <xref section="5.5.2" sectionFormat="of" target="RFC8995"/> leaves much flexibility to the manufacturer.</t>
        <t>The present document adds the following rules to the MASA pinning policy to reduce the network load:</t>
        <ol spacing="normal" type="1"><li>for a voucher containing a nonce, it SHOULD select the most specific (lowest-level) CA certificate in the chain.</li>
          <li>for a nonceless voucher, it SHOULD select the least-specific (highest-level) CA certificate in the chain that is allowed under the MASA's policy for this specific domain.</li>
        </ol>
        <t>The rationale for 1. is that in case of a voucher with nonce, the voucher is valid only in scope of the present DTLS connection between Pledge and Registrar anyway, so there is no
benefit to pin a higher-level CA. By pinning the most specific CA the constrained Pledge can validate its DTLS connection using less crypto operations. The
rationale for pinning a CA instead of the Registrar's End-Entity certificate directly is based on the following benefit on constrained networks: the pinned certificate in the voucher
can in common cases be re-used as a Domain CA trust anchor during the EST enrollment and during the operational phase that follows after EST enrollment, as explained in <xref target="brski-est-extensions-pledge"/>.</t>
        <t>The rationale for 2. follows from the flexible BRSKI trust model for, and purpose of, nonceless vouchers (Sections 5.5.* and 7.4.1 of <xref target="RFC8995"/>).</t>
        <t>Refering to <xref target="fig-twoca"/> of a domain with a two-level certification authority, the most specific CA ("Sub-CA") is the identity that is pinned by MASA in a nonced voucher.
A Registrar that wished to have only the Registrar's End-Entity certificate pinned would omit the "domain CA" and "Sub-CA" certificates from the voucher-request.</t>
        <t>In case of a nonceless voucher, depending on the trust level, the MASA pins the "Registrar" certificate (low trust in customer), or the "Sub-CA" certificate (in case of
medium trust, implying that any Registrar of that sub-domain is acceptable), or even the "domain CA" certificate (in case of high trust in the customer, and possibly a pre-agreed need of the
customer to obtain flexible long-lived vouchers).</t>
      </section>
      <section anchor="pinned-with-rpk">
        <name>Pinning of Raw Public Keys</name>
        <t>Specifically for constrained use cases, the pinning of the raw public key (RPK) of the Registrar is also supported in the constrained voucher, instead of an X.509 certificate.
If an RPK is pinned it MUST be the RPK of the Registrar.</t>
        <t>When the Pledge is known by MASA to support RPK but not X.509 certificates, the voucher produced by the MASA pins the RPK of the Registrar in either the "pinned-domain-pubk"
or "pinned-domain-pubk-sha256" field of a voucher.
This is described in more detail in <xref target="yang-voucher"/>. A Pledge that does not support X.509 certificates cannot use EST to enroll; it has to use
another method for enrollment without certificates and the Registrar has to support this method also.
It is possible that the Pledge will not enroll, but instead only a network join operation will occur (See <xref target="RFC9031"/>).
How the Pledge discovers this method and details of the enrollment method are out of scope of this document.</t>
        <t>When the Pledge is known by MASA to support PKIX format certificates, the "pinned-domain-cert" field present in a voucher typically pins a domain certificate.
That can be either the End-Entity certificate of the Registrar, or the certificate of a domain CA of the Registrar's domain as specified in <xref target="masa-pinning-policy"/>.
However, if the Pledge is known to also support RPK pinning and the MASA intends to identify the Registrar in the voucher (not the CA), then MASA MUST pin the RPK (RPK3 in <xref target="fig-pinning"/>) of the Registrar instead of the Registrar's End-Entity certificate to save space in the voucher.</t>
        <figure anchor="fig-pinning">
          <name>Raw Public Key pinning</name>
          <artwork><![CDATA[
 .------------.
 | pub-CA (1) |
 '------------'
        |
        v
 .------------.
 | sub-CA (2) |
 '------------'
        |
        v
.--------------.
| Registrar(3) |
|    RPK3      |
'--------------'
]]></artwork>
        </figure>
      </section>
      <section anchor="registrar-idevid-issuer">
        <name>Considerations for use of IDevID-Issuer</name>
        <t><xref target="RFC8366"/> and <xref target="RFC8995"/> defines the idevid-issuer attribute for voucher and voucher-request (respectively), but they summarily explain when to use it.</t>
        <t>The use of idevid-issuer is provided so that the serial-number to which the issued voucher pertains can be relative to the entity that issued the devices' IDevID.
In most cases there is a one to one relationship between the trust anchor that signs vouchers (and is trusted by the pledge), and the Certification Authority that signs the IDevID.
In that case, the serial-number in the voucher must refer to the same device as the serial-number that is in IDevID certificate.</t>
        <t>However, there situations where the one to one relationship may be broken.
This occurs whenever a manufacturer has a common MASA, but different products (on different assembly lines) are produced with identical serial numbers.
A system of serial numbers which is just a simple counter is a good example of this.
A system of serial numbers where there is some prefix relating the product type does not fit into this, even if the lower digits are a counter.</t>
        <t>It is not possible for the Pledge or the Registrar to know which situation applies.
The question to be answered is whether or not to include the idevid-issuer in the PVR and the RVR.
A second question arisews as to what the format of the idevid-issuer contents are.</t>
        <t>Analysis of the situation shows that the pledge never needs to include the idevid-issuer in it's PVR, because the pledge's IDevID certificate is available to the Registrar, and the Authority Key Identifier is contained within that.
The pledge therefore has no need to repeat this.</t>
        <t>For the RVR, the Registrar has to examine the pledge's IDevID certificate to discover the serial number for the Registrar's Voucher Request (RVR).
This is clear in <xref section="5.5" sectionFormat="of" target="RFC8995"/>.
That section also clarifies that the idevid-issuer is to be included in the RVR.</t>
        <t>Concerning the Authority Key Identifier, <xref target="RFC8366"/> specifies that the entire object i.e. the extnValue OCTET STRING is to be included: comprising the AuthorityKeyIdentifier, SEQUENCE, Choice as well as the OCTET STRING that is the keyIdentifier.</t>
      </section>
    </section>
    <section anchor="artifacts">
      <name>Artifacts</name>
      <t>This section describes for both the voucher request and
the voucher first the abstract (tree) definition as explained
in <xref target="RFC8340"/>.  This provides a high-level
view of the contents of each artifact.</t>
      <t>Then the assigned SID values are presented. These have been assigned using
the rules in <xref target="I-D.ietf-core-sid"/>.</t>
      <section anchor="voucher-request-artifact">
        <name>Voucher Request artifact</name>
        <section anchor="tree-diagram">
          <name>Tree Diagram</name>
          <t>The following diagram is largely a duplicate of the contents of <xref target="RFC8366"/>,
with the addition of the fields proximity-registrar-pubk, proximity-registrar-pubk-sha256,
proximity-registrar-cert, and prior-signed-voucher-request.</t>
          <t>prior-signed-voucher-request is only used between the Registrar and the MASA.
proximity-registrar-pubk or proximity-registrar-pubk-sha256 optionally replaces proximity-registrar-cert
for the most constrained cases where RPK is used by the Pledge.</t>
          <artwork><![CDATA[
module: ietf-voucher-request-constrained

  grouping voucher-request-constrained-grouping
    +-- voucher
       +-- created-on?                        yang:date-and-time
       +-- expires-on?                        yang:date-and-time
       +-- assertion                          enumeration
       +-- serial-number                      string
       +-- idevid-issuer?                     binary
       +-- pinned-domain-cert?                binary
       +-- domain-cert-revocation-checks?     boolean
       +-- nonce?                             binary
       +-- last-renewal-date?                 yang:date-and-time
       +-- proximity-registrar-pubk?          binary
       +-- proximity-registrar-pubk-sha256?   binary
       +-- proximity-registrar-cert?          binary
       +-- prior-signed-voucher-request?      binary

]]></artwork>
        </section>
        <section anchor="request-sid-values">
          <name>SID values</name>
          <artwork><![CDATA[
           
      SID Assigned to
--------- -------------------------------------------------- 
     2501 data /ietf-voucher-request-constrained:voucher
     2502 data .../assertion
     2503 data .../created-on
     2504 data .../domain-cert-revocation-checks
     2505 data .../expires-on
     2506 data .../idevid-issuer
     2507 data .../last-renewal-date
     2508 data /ietf-voucher-request-constrained:voucher/nonce
     2509 data .../pinned-domain-cert
     2510 data .../prior-signed-voucher-request
     2511 data .../proximity-registrar-cert
     2513 data .../proximity-registrar-pubk
     2512 data .../proximity-registrar-pubk-sha256
     2514 data .../serial-number
           
 WARNING, obsolete definitions

]]></artwork>
          <t>The "assertion" attribute is an enumerated type <xref target="RFC8366"/>, and the current PYANG tooling does not document the valid values for this attribute.
In the JSON serialization, the literal strings from the enumerated types are used so there is no ambiguity.
In the CBOR serialization, a small integer is used.
This following values are documented here, but the YANG module should be considered authoritative. No IANA registry is provided or necessary because the YANG module provides for extensions.</t>
          <table anchor="assertion-enums">
            <name>CBOR integers for the "assertion" attribute enum</name>
            <thead>
              <tr>
                <th align="left">Integer</th>
                <th align="left">Assertion Type</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">0</td>
                <td align="left">verified</td>
              </tr>
              <tr>
                <td align="left">1</td>
                <td align="left">logged</td>
              </tr>
              <tr>
                <td align="left">2</td>
                <td align="left">proximity</td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="yang-voucher-request">
          <name>YANG Module</name>
          <t>In the voucher-request-constrained YANG module, the voucher is "augmented" within the "used" grouping statement such that one continuous set of SID values is generated for the voucher-request-constrained module name, all voucher attributes, and the voucher-request-constrained attributes. Two attributes of the voucher are "refined" to be optional.</t>
          <sourcecode markers="true" name="ietf-voucher-request-constrained@2021-04-15.yang"><![CDATA[
module ietf-voucher-request-constrained {
  yang-version 1.1;

  namespace
    "urn:ietf:params:xml:ns:yang:ietf-voucher-request-constrained";
  prefix "constrained";

  import ietf-restconf {
    prefix rc;
    description
      "This import statement is only present to access
       the yang-data extension defined in RFC 8040.";
    reference "RFC 8040: RESTCONF Protocol";
  }

  import ietf-voucher {
    prefix "v";
  }

  organization
   "IETF ANIMA Working Group";

  contact
   "WG Web:   <http://tools.ietf.org/wg/anima/>
    WG List:  <mailto:anima@ietf.org>
    Author:   Michael Richardson
              <mailto:mcr+ietf@sandelman.ca>
    Author:   Peter van der Stok
              <mailto: consultancy@vanderstok.org>
    Author:   Panos Kampanakis
              <mailto: pkampana@cisco.com>";

  description
   "This module defines the format for a voucher request,
    which is produced by a pledge to request a voucher.
    The voucher-request is sent to the potential owner's
    Registrar, which in turn sends the voucher request to
    the manufacturer or its delegate (MASA).

    A voucher is then returned to the pledge, binding the
    pledge to the owner.  This is a constrained version of the
    voucher-request present in
    {{I-D.ietf-anima-bootstrap-keyinfra}}

    This version provides a very restricted subset appropriate
    for very constrained devices.
    In particular, it assumes that nonce-ful operation is
    always required, that expiration dates are rather weak, as no
    clocks can be assumed, and that the Registrar is identified
    by either a pinned Raw Public Key of the Registrar, or by a
    pinned X.509 certificate of the Registrar or domain CA.

    The key words 'MUST', 'MUST NOT', 'REQUIRED', 'SHALL',
    'SHALL NOT', 'SHOULD', 'SHOULD NOT', 'RECOMMENDED', 'MAY',
    and 'OPTIONAL' in the module text are to be interpreted as
    described in RFC 2119.";

  revision "2021-04-15" {
    description
     "Initial version";
    reference
     "RFC XXXX: Voucher Profile for Constrained Devices";
  }

  rc:yang-data voucher-request-constrained-artifact {
    // YANG data template for a voucher.
    uses voucher-request-constrained-grouping;
  }

  // Grouping defined for future usage
  grouping voucher-request-constrained-grouping {
    description
      "Grouping to allow reuse/extensions in future work.";

    uses v:voucher-artifact-grouping {

      refine voucher/created-on {
          mandatory  false;
      }

      refine voucher/pinned-domain-cert {
          mandatory  false;
      }


      augment "voucher" {
        description "Base the constrained voucher-request upon the
          regular one";

        leaf proximity-registrar-pubk {
          type binary;
          description
            "The proximity-registrar-pubk replaces
             the proximity-registrar-cert in constrained uses of
             the voucher-request.
             The proximity-registrar-pubk is the
             Raw Public Key of the Registrar. This field is encoded
             as specified in RFC7250, section 3.
             The ECDSA algorithm MUST be supported.
             The EdDSA algorithm as specified in
             draft-ietf-tls-rfc4492bis-17 SHOULD be supported.
             Support for the DSA algorithm is not recommended.
             Support for the RSA algorithm is a MAY, but due to
             size is discouraged.";
        }

        leaf proximity-registrar-pubk-sha256 {
          type binary;
          description
            "The proximity-registrar-pubk-sha256
             is an alternative to both
             proximity-registrar-pubk and pinned-domain-cert.
             In many cases the public key of the domain has already
             been transmitted during the key agreement protocol,
             and it is wasteful to transmit the public key another
             two times.
             The use of a hash of public key info, at 32-bytes for
             sha256 is a significant savings compared to an RSA
             public key, but is only a minor savings compared to
             a 256-bit ECDSA public-key.
             Algorithm agility is provided by extensions to this
             specification which may define a new leaf for another
             hash type.";
        }

        leaf proximity-registrar-cert {
          type binary;
          description
            "An X.509 v3 certificate structure as specified by
             RFC 5280,
             Section 4 encoded using the ASN.1 distinguished encoding
             rules (DER), as specified in ITU-T X.690.

             The first certificate in the Registrar TLS server
             certificate_list sequence  (see [RFC5246]) presented by
             the Registrar to the Pledge. This field or one of its
             alternatives MUST be populated in a
             Pledge's voucher request if the proximity assertion is
             populated.";
        }

        leaf prior-signed-voucher-request {
          type binary;
          description
            "If it is necessary to change a voucher, or re-sign and
             forward a voucher that was previously provided along a
             protocol path, then the previously signed voucher
             SHOULD be included in this field.

             For example, a pledge might sign a proximity voucher,
             which an intermediate registrar then re-signs to
             make its own proximity assertion.  This is a simple
             mechanism for a chain of trusted parties to change a
             voucher, while maintaining the prior signature
             information.

             The pledge MUST ignore all prior voucher information
             when accepting a voucher for imprinting. Other
             parties MAY examine the prior signed voucher
             information for the purposes of policy decisions.
             For example, this information could be useful to a
             MASA to determine that both pledge and registrar
             agree on proximity assertions. The MASA SHOULD
             remove all prior-signed-voucher-request information when
             signing a voucher for imprinting so as to minimize the
             final voucher size.";
        }
      }
    }
  }
}

]]></sourcecode>
        </section>
        <section anchor="example2">
          <name>Example voucher request artifact</name>
          <t>Below is a CBOR serialization of an example constrained voucher request from a Pledge to a Registrar, shown in CBOR diagnostic notation. The enum value of the assertion field is calculated to be 2 by following the algorithm described in section 9.6.4.2 of <xref target="RFC7950"/>.</t>
          <artwork><![CDATA[
{
  2501: {
    +2 : "2016-10-07T19:31:42Z", / SID=2503, created-on /
    +4 : "2016-10-21T19:31:42Z", / SID=2505, expires-on /
    +1 : 2,                      / SID=2502, assertion "proximity" /
    +13: "JADA123456789",        / SID=2514, serial-number /
    +5 : h'08C2BF36....B3D2B3',  / SID=2506, idevid-issuer /
    +10: h'30820275....82c35f',  / SID=2511, proximity-registrar-cert/
    +3 : true,                   / SID=2504, domain-cert
                                                   -revocation-checks/
    +6 : "2017-10-07T19:31:42Z"  / SID=2507, last-renewal-date /
  }
}
]]></artwork>
        </section>
      </section>
      <section anchor="voucher-artifact">
        <name>Voucher artifact</name>
        <t>The voucher's primary purpose is to securely assign a Pledge to an
owner.  The voucher informs the Pledge which entity it should
consider to be its owner.</t>
        <section anchor="tree-diagram-1">
          <name>Tree Diagram</name>
          <t>The following diagram is largely a duplicate of the contents of <xref target="RFC8366"/>,
with only the addition of the fields pinned-domain-pubk and pinned-domain-pubk-sha256.</t>
          <artwork><![CDATA[
module: ietf-voucher-constrained

  grouping voucher-constrained-grouping
    +-- voucher
       +-- created-on?                      yang:date-and-time
       +-- expires-on?                      yang:date-and-time
       +-- assertion                        enumeration
       +-- serial-number                    string
       +-- idevid-issuer?                   binary
       +-- pinned-domain-cert?              binary
       +-- domain-cert-revocation-checks?   boolean
       +-- nonce?                           binary
       +-- last-renewal-date?               yang:date-and-time
       +-- pinned-domain-pubk?              binary
       +-- pinned-domain-pubk-sha256?       binary

]]></artwork>
        </section>
        <section anchor="sid-values">
          <name>SID values</name>
          <artwork><![CDATA[
           
      SID Assigned to
--------- -------------------------------------------------- 
     2451 data /ietf-voucher-constrained:voucher
     2452 data /ietf-voucher-constrained:voucher/assertion
     2453 data /ietf-voucher-constrained:voucher/created-on
     2454 data .../domain-cert-revocation-checks
     2455 data /ietf-voucher-constrained:voucher/expires-on
     2456 data /ietf-voucher-constrained:voucher/idevid-issuer
     2457 data .../last-renewal-date
     2458 data /ietf-voucher-constrained:voucher/nonce
     2459 data .../pinned-domain-cert
     2460 data .../pinned-domain-pubk
     2461 data .../pinned-domain-pubk-sha256
     2462 data /ietf-voucher-constrained:voucher/serial-number
           
 WARNING, obsolete definitions

]]></artwork>
          <t>The "assertion" enumerated attribute is numbered as per <xref target="request-sid-values"/>.</t>
        </section>
        <section anchor="yang-voucher">
          <name>YANG Module</name>
          <t>In the voucher-constrained YANG module, the voucher is "augmented" within the "used" grouping statement such that one continuous set of SID values is generated for the voucher-constrained module name, all voucher attributes, and the voucher-constrained attributes.
Two attributes of the voucher are "refined" to be optional.</t>
          <sourcecode markers="true" name="ietf-voucher-constrained@2021-04-15.yang"><![CDATA[
module ietf-voucher-constrained {
  yang-version 1.1;

  namespace
    "urn:ietf:params:xml:ns:yang:ietf-voucher-constrained";
  prefix "constrained";

  import ietf-restconf {
    prefix rc;
    description
      "This import statement is only present to access
       the yang-data extension defined in RFC 8040.";
    reference "RFC 8040: RESTCONF Protocol";
  }

  import ietf-voucher {
    prefix "v";
  }

  organization
   "IETF ANIMA Working Group";

  contact
   "WG Web:   <http://tools.ietf.org/wg/anima/>
    WG List:  <mailto:anima@ietf.org>
    Author:   Michael Richardson
              <mailto:mcr+ietf@sandelman.ca>
    Author:   Peter van der Stok
              <mailto: consultancy@vanderstok.org>
    Author:   Panos Kampanakis
              <mailto: pkampana@cisco.com>";

description
  "This module defines the format for a voucher, which
   is produced by a pledge's manufacturer or its delegate
   (MASA) to securely assign one or more pledges to an 'owner',
   so that a pledge may establish a secure connection to the
   owner's network infrastructure.

   This version provides a very restricted subset appropriate
   for very constrained devices.
   In particular, it assumes that nonce-ful operation is
   always required, that expiration dates are rather weak, as no
   clocks can be assumed, and that the Registrar is identified
   by either a pinned Raw Public Key of the Registrar, or by a
   pinned X.509 certificate of the Registrar or domain CA.

   The key words 'MUST', 'MUST NOT', 'REQUIRED', 'SHALL',
   'SHALL NOT', 'SHOULD', 'SHOULD NOT', 'RECOMMENDED', 'MAY',
   and 'OPTIONAL' in the module text are to be interpreted as
   described in RFC 2119.";

  revision "2021-04-15" {
    description
     "Initial version";
    reference
     "RFC XXXX: Voucher Profile for Constrained Devices";
  }

  rc:yang-data voucher-constrained-artifact {
    // YANG data template for a voucher.
    uses voucher-constrained-grouping;
  }

  // Grouping defined for future usage
  grouping voucher-constrained-grouping {
    description
      "Grouping to allow reuse/extensions in future work.";

    uses v:voucher-artifact-grouping {

      refine voucher/created-on {
          mandatory  false;
      }

      refine voucher/pinned-domain-cert {
          mandatory  false;
      }

      augment "voucher" {
        description "Base the constrained voucher
                                   upon the regular one";
        leaf pinned-domain-pubk {
          type binary;
          description
            "The pinned-domain-pubk may replace the
             pinned-domain-cert in constrained uses of
             the voucher. The pinned-domain-pubk
             is the Raw Public Key of the Registrar.
             This field is encoded as a Subject Public Key Info block
             as specified in RFC7250, in section 3.
             The ECDSA algorithm MUST be supported.
             The EdDSA algorithm as specified in
             draft-ietf-tls-rfc4492bis-17 SHOULD be supported.
             Support for the DSA algorithm is not recommended.
             Support for the RSA algorithm is a MAY.";
        }

        leaf pinned-domain-pubk-sha256 {
          type binary;
          description
            "The pinned-domain-pubk-sha256 is a second
             alternative to pinned-domain-cert.  In many cases the
             public key of the domain has already been transmitted
             during the key agreement process, and it is wasteful
             to transmit the public key another two times.
             The use of a hash of public key info, at 32-bytes for
             sha256 is a significant savings compared to an RSA
             public key, but is only a minor savings compared to
             a 256-bit ECDSA public-key.
             Algorithm agility is provided by extensions to this
             specification which can define a new leaf for another
             hash type.";
        }
      }
    }
  }
}

]]></sourcecode>
        </section>
        <section anchor="example1">
          <name>Example voucher artifacts</name>
          <t>Below the CBOR serialization of an example constrained voucher is shown in CBOR diagnostic notation.
The enum value of the assertion field is calculated to be zero by following the algorithm described in section 9.6.4.2 of <xref target="RFC7950"/>.</t>
          <artwork><![CDATA[
{
  2451: {
    +2 : "2016-10-07T19:31:42Z", / SID = 2453, created-on /
    +4 : "2016-10-21T19:31:42Z", / SID = 2455, expires-on /
    +1 : 0,                      / SID = 2452, assertion "verified" /
    +11: "JADA123456789",        / SID = 2462, serial-number /
    +5 : h'E40393B4....68A3',    / SID = 2456, idevid-issuer /
    +8 : h'30820275....C35F',    / SID = 2459, pinned-domain-cert/
    +3 : true,                   / SID = 2454, domain-cert /
                                 /               -revocation-checks /
    +6 : "2017-10-07T19:31:42Z"  / SID = 2457, last-renewal-date /
  }
}
]]></artwork>
        </section>
      </section>
      <section anchor="signing-voucher-and-voucher-request-artifacts-with-cose">
        <name>Signing voucher and voucher-request artifacts with COSE</name>
        <t>The COSE_Sign1 structure is discussed in <xref section="4.2" sectionFormat="of" target="I-D.ietf-cose-rfc8152bis-struct"/>.
The CBOR object that carries the body, the signature, and the information about the body  and signature is called the COSE_Sign1 structure.
It is used when only one signature is used on the body.</t>
        <t>Support for ECDSA with SHA2-256 using curve secp256r1 (aka prime256k1) is RECOMMENDED.
Most current low power hardware has support for acceleration of this algorithm.
Future hardware designs could omit this in favour of a newer algorithms.
This is the ES256 keytype from Table 1 of <xref target="I-D.ietf-cose-rfc8152bis-algs"/>.
Support for curve secp256k1 is OPTIONAL.</t>
        <t>Support for EdDSA using Curve 25519 is RECOMMENDED in new designs if hardware support is available.
This is keytype EDDSA (-8) from Table 2 of <xref target="I-D.ietf-cose-rfc8152bis-algs"/>.  A "crv" parameter is necessary to specify the Curve, which from Table 18.  The 'kty' field MUST be present, and it MUST be 'OKP'. (Table 17)</t>
        <t>A transition towards EdDSA is occuring in the industry.
Some hardware can accelerate only some algorithms with specific curves, other hardware can accelerate any curve, and still other kinds of hardware provide a tool kit for acceleration of any eliptic curve algorithm.</t>
        <t>In general, the Pledge is expected to support only a single algorithm, while the Registrar, usually not constrained, is expected to support a wide variety of algorithms: both legacy ones and up-and-coming ones via regular software updates.</t>
        <t>An example of the supported COSE_Sign1 object structure is shown in <xref target="fig-cose"/>.</t>
        <figure anchor="fig-cose">
          <name>COSE_Sign1 example in CBOR diagnostic notation</name>
          <artwork align="left"><![CDATA[
18( / COSE_Sign1 /
  [
    h'A101382E',        / protected header encoding: {1: -47}     /
    {                   /       which means { "alg": ES256K }     /
      4 : h'7890A03F1234'  / 4 is the "kid" binary key identifier /
    },
    h'1234....5678', / voucher-request binary content (CBOR)      /
    h'4567....1234'  / voucher-request binary public signature    /
  ]
)
]]></artwork>
        </figure>
        <t>The <xref target="COSE-registry"/> specifies the integers/encoding for the "alg" and "kid" fields in <xref target="fig-cose"/>. The "alg"
field restricts the key usage for verification of this COSE object to a particular cryptographic algorithm.</t>
        <t>The "kid" field is optionally present: it is an unprotected field that identifies the public key of the key pair that was used to sign this
message. The value of the key identifier "kid" parameter is an example value.
Usually a hash of the public key is used to identify the public key, but a device serial number may also be used. The choice of key identifier method is
vendor-specific. If "kid" is not present, then a verifying party needs to use other context information to
retrieve the right public key to verify the COSE_Sign1 object against. For example, this context information
may be a unique serial number encoded in the binary content (CBOR) field.</t>
        <t>A Registrar MAY use a "kid" parameter in its RVR to identify its signing key as used to sign the RVR.
The method of generating this "kid" is vendor-specific and SHOULD be configurable in the Registrar to
support commonly used methods.
In order to support future business cases and supply chain integrations, a Registrar MUST be configurable, on a per-manufacturer basis, to be able to configure the "kid" to a particular value.
Both binary and string values are to be supported, each being inserted using a CBOR bstr or tstr.
By default, a Registrar does not include a "kid" parameter in its RVR since the signing key
is already identified by the included signing certificates in the COSE "x5bag" structure.</t>
        <t>A Pledge normally SHOULD NOT use a "kid" parameter in its PVR, because its signing key is already identified
by the Pledge's unique serial number that is included in the PVR. Still, where needed the Pledge MAY use
a "kid" parameter in its PVR to help the MASA identify the right public key to verify against. This can occur
for example if a Pledge has multiple IDevID identities.
A Registrar normally SHOULD ignore a "kid" parameter used in a received PVR, as this information is intended for the MASA.
In other words, there is no need for the Registrar to verify the contents of this field, but it may include it in an audit log.</t>
        <t>In <xref target="cosesign"/> a binary COSE_Sign1 object is shown based on the voucher-request example of <xref target="example2"/>.</t>
      </section>
    </section>
    <section anchor="discovery-considerations">
      <name>Deployment-specific Discovery Considerations</name>
      <t>This section details how discovery is done in specific deployment scenarios.</t>
      <section anchor="tsch-deployments">
        <name>6TSCH Deployments</name>
        <t>In 6TISCH networks, the Constrained Join Proxy (CoJP) mechanism is described in <xref target="RFC9031"/>.
Such networks are expected to use a <xref target="I-D.ietf-lake-edhoc"/> to do key management.
This is the subject of future work.
The Enhanced Beacon has been extended in <xref target="RFC9032"/> to allow for discovery of the Join Proxy.</t>
      </section>
      <section anchor="generic-networks-using-grasp">
        <name>Generic networks using GRASP</name>
        <t><xref target="RFC8995"/> defines a mechanism for the Pledge to discover a Join Proxy by listening for <xref target="RFC8990"/> GRASP messages.
This mechanism can be used on any network which does not have another more specific mechanism.
This mechanism supports mesh networks, and can also be used over unencrypted WIFI.</t>
      </section>
      <section anchor="generic-networks-using-mdns">
        <name>Generic networks using mDNS</name>
        <t><xref target="RFC8995"/> also defines a non-normative mechanism for the Pledge to discover a Join Proxy by doing mDNS queries.
This mechanism can be used on any network which does not have another recommended mechanism.
This mechanism does not easily support mesh networks.  It can be used over unencrypted WIFI.</t>
      </section>
      <section anchor="thread-networks-using-mesh-link-establishment-mle">
        <name>Thread networks using Mesh Link Establishment (MLE)</name>
        <t>Thread <xref target="Thread"/> is a wireless mesh network protocol based on 6LoWPAN <xref target="RFC6282"/> and other IETF protocols. In Thread, a new device
discovers potential Thread networks and Thread routers to join by using the Mesh Link Establishment (MLE) <xref target="I-D.ietf-6lo-mesh-link-establishment"/> protocol.
MLE uses the UDP port number 19788. The new device sends discovery requests on different IEEE 802.15.4 radio channels, to which routers (if any present) respond with a discovery response containing information about
their respective network. Once a suitable router is selected the new device initiates a DTLS transport-layer secured connection to the network's commissioning application, over a link-local single radio hop to the selected
Thread router. This link is not yet secured at the radio level: link-layer security will be set up once the new device is approved by the commissioning application to join the Thread network, and it gets provisioned with
network access credentials.</t>
        <t>The Thread router acts here as a Join Proxy. The MLE discovery response message contains UDP port information to signal the new device which port to use for its DTLS connection.</t>
      </section>
      <section anchor="non-mesh-networks-using-coap-discovery">
        <name>Non-mesh networks using CoAP Discovery</name>
        <t>On unencrypted constrained networks such as 802.15.4, CoAP discover may be done using the mechanism detailed in <xref target="I-D.ietf-ace-coap-est"/> section 5.1.</t>
      </section>
    </section>
    <section anchor="design-considerations">
      <name>Design Considerations</name>
      <t>The design considerations for the CBOR encoding of vouchers are much the same as for JSON vouchers in <xref target="RFC8366"/>.
One key difference is that the names of the leaves in the YANG definition do not affect the size of the resulting CBOR, as the SID translation process assigns integers to the names.</t>
      <t>Any POST request to the Registrar with resource /vs or /es returns a 2.04 Changed response with empty payload. The client should be aware that the server may use a piggybacked CoAP response (ACK, 2.04) but may also respond with a separate CoAP response, i.e. first an (ACK, 0.0) that is an acknowledgement of the request reception followed by a (CON, 2.04) response in a separate CoAP message.</t>
    </section>
    <section anchor="rpk-considerations">
      <name>Raw Public Key Use Considerations</name>
      <t>This section explains techniques to reduce the number of bytes that are sent over the wire during the BRSKI bootstrap.
The use of a raw public key (RPK) in the pinning process can significantly reduce the number of bytes and round trips, but it comes with a few significant operational limitations.</t>
      <section anchor="the-registrar-trust-anchor">
        <name>The Registrar Trust Anchor</name>
        <t>When the Pledge first connects to the Registrar, the connection to the Registrar is provisional, as explained in <xref section="5.6.2" sectionFormat="of" target="RFC8995"/>.
The Registrar provides its public key in a TLSServerCertificate, and the Pledge uses that to validate that integrity of the (D)TLS connection, but it does not validate the identity of
the provided certificate.</t>
        <t>As the TLSServerCertificate object is never verified directly by the pledge, sending it can be considered superfluous.
Instead of using a (TLSServer)Certificate of type X509 (see section 4.4.2 of <xref target="RFC8446"/>),
a RawPublicKey object is used.</t>
        <t>A Registrar operating in a mixed environment can determine whether to send a Certificate or a Raw Public key: this is determined by the pledge including the server_certificate_type of RawPublicKey.
This is shown in section 5 of <xref target="RFC7250"/>.</t>
        <t>The Pledge continues to send a client_certificate_type of X509, so that the Registrar can properly identify the pledge and distill the MASA URI information from its certificate.</t>
      </section>
      <section anchor="the-pledge-voucher-request">
        <name>The Pledge Voucher Request</name>
        <t>The Pledge puts the Registrar's public key into the proximity-registrar-pubk
field of the voucher-request.
(The proximity-registrar-pubk-sha256 can also be used if the 32-bytes of a SHA256 hash turns out to be smaller than a typical ECDSA key.)</t>
        <t>As the format of the pubk field is identical to the TLS Certificate RawPublicKey, no manipulation at all is needed to insert this into a voucher-request.</t>
      </section>
      <section anchor="the-voucher-response">
        <name>The Voucher Response</name>
        <t>A returned voucher will have a pinned-domain-subk field with the identical key as was found in the proximity-registrar-pubk field above, as well as in the TLS connection.</t>
        <t>Validation of this key by the pledge is what takes the DTLS connection out of the provisional state see <xref section="5.6.2" sectionFormat="of" target="RFC8995"/>.</t>
        <t>The voucher needs to be validated first.
The Pledge needs to have a public key to validate the signature from the MASA on the voucher.</t>
        <t>In certain cases, the MASA's public key counterpart of the (private) signing key is already installed in the Pledge at manufacturing time.
In other cases, if the MASA signing key is based upon a PKI (see <xref target="I-D.richardson-anima-masa-considerations"/> Section 2.3), then a certificate chain may need to be included with the voucher in order for the pledge to validate the signature.
In CMS signed artifacts, the CMS structure has a place for such certificates.</t>
        <t>In the COSE-signed Constrained Vouchers described in this document, the x5bag attribute from <xref target="I-D.ietf-cose-x509"/> is to be used for this.</t>
      </section>
    </section>
    <section anchor="use-of-constrained-vouchers-with-https">
      <name>Use of constrained vouchers with HTTPS</name>
      <t>This specification contains two extensions to <xref target="RFC8995"/>: a constrained voucher format (COSE), and a constrained transfer protocol (CoAP).</t>
      <t>On constrained networks with constrained devices, it make senses to use both together.
However, this document does not mandate that this be the only way.</t>
      <t>A given constrained device design and software may be re-used for multiple device models, such as a model having only an IEEE 802.15.4 radio, or a model
having only an IEEE 802.11 (Wi-Fi) radio, or a model having both these radios.
A manufacturer of such device models may wish to have code only for the use of the constrained voucher format (COSE), and use it on all supported radios
including the IEEE 802.11 radio. For this radio, the software stack to support HTTP/TLS may be already integrated into the radio module hence it is
attractive for the manufacturer to reuse this. This type of approach is supported by this document.
In the case that HTTPS is used, the normal <xref target="RFC8995"/> resource names are used, together with the media types described in this document.</t>
      <t>Other combinations are possible, but they are not enumerated here.
New work such as <xref target="I-D.ietf-anima-jws-voucher"/> provides new formats that may be useable over a number of different transports.
In general, sending larger payloads over constrained networks makes less sense,
while sending smaller payloads over unconstrained networks is perfectly acceptable.</t>
      <t>The Pledge will in most cases support a single voucher format, which it uses without negotiation i.e. without discovery of formats supported.
The Registrar, being unconstrained, is expected to support all voucher formats.
There will be cases where a Registrar does not support a new format that a new Pledge uses, and this is an unfortunate situation that will result in lack of interoperation.</t>
      <t>The responsability for supporting new formats is on the Registrar.</t>
    </section>
    <section anchor="security">
      <name>Security Considerations</name>
      <section anchor="duplicate-serial-numbers">
        <name>Duplicate serial-numbers</name>
        <t>In the absense of correct use of idevid-issuer by the Registrar as detailed in <xref target="registrar-idevid-issuer"/>, it would be possible for a malicious Registrar to use an unauthorized voucher for a device.
This would apply only to the case where a Manufacturer Authorized Signing Authority (MASA) is trusted by different products from the same manufacturer, and the manufacturer has duplicated serial numbers as a result of a merge, acquisition or mis-management.</t>
        <t>For example, imagine the same manufacturer makes light bulbs as well as gas centrifuges,
and said manufacturer does not uniquely allocate product serial numbers.
This attack only works for nonceless vouchers.
The attacker has obtained a light bulb which happens to have the same serial-number as a gas centrofuge which it wishes to obtain access.
The attacker performs a normal BRSKI onboarding for the light bulb, but then uses the resulting voucher to onboard the gas centrofuge.
The attack requires that the gas centrofuge be returned to a state where it is willing to perform a new onboarding operation.</t>
        <t>This attack is prevented by the mechanism of having the Registrar include the idevid-issuer in the RVR, and the MASA including it in the resulting voucher.
The idevid-issuer is not included by default: a MASA needs to be aware if there are parts of the organization which duplicates serial numbers, and if so, include it.</t>
      </section>
      <section anchor="idevid-security-in-pledge">
        <name>IDevID security in Pledge</name>
        <t>The security of this protocol depends upon the Pledge identifying itself to the Registrar using it's manufacturer installed certificate: the IDevID certificate.
Associated with this certificate is the IDevID private key, known only to the Pledge.
Disclosure of this private key to an attacker would permit the attacker to impersonate the Pledge towards the Registrar, probably gaining access credentials to that Registrar's network.</t>
        <t>If the IDevID private key disclosure is known to the manufacturer, there is little recourse other than recall of the relevant part numbers.
The process for communicating this recall would be within the BRSKI-MASA protocol.
Neither this specification nor <xref target="RFC8995"/> provides for consultation of a Certification Revocation List (CRL) or Open Certificate Status Protocol (OCSP) by a Registrar when evaluating an IDevID certificate.
However, the BRSKI-MASA protocol submits the IDevID from the Registrar to the manufacturer's MASA and a manufacturer would have an opportunity to decline to issue a voucher for a device which they believe has become compromised.</t>
        <t>It may be difficult for a manufacturer to determine when an IDevID private key has been disclosed.
Two situations present themselves: in the first situation a compromised private key might be reused in a counterfeit device, which is sold to another customer.
This would present itself as an onboarding of the same device in two different networks.
The manufacturer may become suspicious seeing two voucher requests for the same device from different Registrars.
Such activity could be indistinguishable from a device which has been resold from one operator to another, or re-deployed by an operator from one location to another.</t>
        <t>In the second situation, an attacker having compromised the IDevID private key of a device might then install malware into the same device and attempt to return it to service.
The device, now blank, would go through a second onboarding process with the original Registrar.
Such a Registrar could notice that the device has been "factory reset" and alert the operator to this situation.
One remedy against the presence of malware is through the use of Remote Attestation such as described in <xref target="I-D.ietf-rats-architecture"/>.
Future work will need to specify a background-check Attestation flow as part of the voucher-request/voucher-response process.
Attestation may still require access to a private key (e.g. IDevID private key) in order to sign Evidence, so a primary goal should be to keep any private key safe within the Pledge.</t>
        <t>In larger, more expensive, systems there is budget (power, space, and bill of materials) to include more specific defenses for a private key.
For instance, this includes putting the IDevID private key in a Trusted Platform Module (TPM), or use of Trusted Execution Environments (TEE) for access to the key.
On smaller IoT devices, the cost and power budget for an extra part is often prohibitive.</t>
        <t>It is becoming more and more common for CPUs to have an internal set of one-time fuses that can be programmed (often they are "burnt" by a laser) at the factory.
This section of memory is only accessible in some priviledged CPU state.
The use of this kind of CPU is appropriate as it provides significant resistance against key disclosure even when the device can be disassembled by an attacker.</t>
        <t>In a number of industry verticals, there is increasing concern about counterfeit parts.
These may be look-alike parts created in a different factory, or parts which are created in the same factory during an illegal night-shift, but which are not subject to the appropriate level of quality control.
The use of a manufacturer-signed IDevID certificate provides for discovery of the pedigree of each part, and this often justifies the cost of the security measures associated with storing the private key.</t>
      </section>
      <section anchor="security-of-coap-and-udp-protocols">
        <name>Security of CoAP and UDP protocols</name>
        <t><xref target="brski-masa-protocol-format"/> explains that no CoAPS version of the BRSKI-MASA protocol is proposed.
The connection from the Registrar to the MASA continues to be HTTPS as in <xref target="RFC8995"/>.
This has been done to simplify the MASA deployment for the manufacturer, because no new protocol needs to be enabled on the server.</t>
        <t>The use of UDP protocols across the open Internet is sometimes fraught with security challenges.
Denial-of-service attacks against UDP based protocols are trivial as there is no three-way handshake as done for TCP.
The three-way handshake of TCP guarantees that the node sending the connection request is reachable using the origin IP address.
While DTLS contains an option to do a stateless challenge -- a process actually stronger than that done by TCP -- it is not yet common for this mechanism to be available in hardware at multigigabit speeds.
It is for this reason that this document defines using HTTPS for the Registrar to MASA connection.</t>
      </section>
      <section anchor="registrar-certificate-may-be-self-signed">
        <name>Registrar Certificate may be self-signed</name>
        <t>The provisional (D)TLS connection formed by the Pledge with the Registrar does not authenticate the Registrar's identity.
This Registrar's identity is validated by the <xref target="RFC8366"/> voucher that is issued by the MASA, signed with an anchor that was built-in to the Pledge.</t>
        <t>The Registrar may therefore use any certificate, including a self-signed one.
The only restrictions on the certificate is that it MUST have EKU bits set as detailed in <xref target="registrar-certificate-requirement"/>.</t>
      </section>
      <section anchor="use-of-rpk-alternatives-to-proximity-registrar-cert">
        <name>Use of RPK alternatives to proximity-registrar-cert</name>
        <t>In <xref target="voucher-request-artifact"/> two compact alternative fields for proximity-registrar-cert are defined that include an RPK: proximity-registrar-pubk and proximity-registrar-pubk-sha256.
The Pledge can use these fields in its PVR to identify the Registrar based on its public key only. Since the full certificate of the proximate Registrar is not included, use of these fields
by a Pledge implies that a Registrar could insert another certificate with the same public key identity into the RVR. For example, an older or a newer version of its certificate.
The MASA will not be able to detect such act by the Registrar. But since any 'other' certificate the Registrar could insert in this way still encodes its identity the additional risk
of using the RPK alternatives is neglible.</t>
        <t>When a Registrar sees a PVR that uses one of proximity-registrar-pubk or proximity-registrar-pubk-sha256 fields, this implies the Registrar must include the certificate identified by these fields into its RVR.
Otherwise, the MASA is unable to verify proximity. This requirement is already implied by the "MUST" requirement in <xref target="registrar-identity"/>.</t>
      </section>
      <section anchor="security-masa-coaps">
        <name>MASA support of CoAPS</name>
        <t>The use of CoAP for the BRSKI-MASA connection is not in scope of the current document.
The following security considerations have led to this choice of scope:</t>
        <ul spacing="normal">
          <li>the technology and experience to build secure Internet-scale HTTPS responders (which the MASA is) is common, while the experience in doing the same for CoAP is much less common.</li>
          <li>in many enterprise networks, outgoing UDP connections are often treated as suspicious, which could effectively block CoAP connections for some firewall configurations.</li>
          <li>reducing the complexity of MASA (i.e. less protocols supported) would also reduce its potential attack surface, which is relevant since the MASA is 24/7 exposed on the Internet and accepting (untrusted) incoming connections.</li>
        </ul>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="resource-type-registry">
        <name>Resource Type Registry</name>
        <t>Additions to the sub-registry "Resource Type Link Target Attribute Values", within the "CoRE Parameters" IANA registry are specified below.</t>
        <t>Reference: [This RFC]</t>
        <table anchor="iana-core-rt-values">
          <name>Resource Type (rt) link target attribute values for IANA registration</name>
          <thead>
            <tr>
              <th align="left">Attribute</th>
              <th align="left">Description</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">brski</td>
              <td align="left">Root path of Bootstrapping Remote Secure Key Infrastructure (BRSKI) resources</td>
            </tr>
            <tr>
              <td align="left">brski.rv</td>
              <td align="left">BRSKI request voucher resource</td>
            </tr>
            <tr>
              <td align="left">brski.vs</td>
              <td align="left">BRSKI voucher status telemetry resource</td>
            </tr>
            <tr>
              <td align="left">brski.es</td>
              <td align="left">BRSKI enrollment status telemetry resource</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="the-ietf-xml-registry">
        <name>The IETF XML Registry</name>
        <t>This document registers two URIs in the IETF XML registry <xref target="RFC3688"/>.
Following the format in <xref target="RFC3688"/>, the following registration is requested:</t>
        <artwork><![CDATA[
  URI: urn:ietf:params:xml:ns:yang:ietf-voucher-constrained
  Registrant Contact: The ANIMA WG of the IETF.
  XML: N/A, the requested URI is an XML namespace.

  URI: urn:ietf:params:xml:ns:yang:ietf-voucher-request-constrained
  Registrant Contact: The ANIMA WG of the IETF.
  XML: N/A, the requested URI is an XML namespace.
]]></artwork>
      </section>
      <section anchor="the-yang-module-names-registry">
        <name>The YANG Module Names Registry</name>
        <t>This document registers two YANG modules in the YANG Module Names registry <xref target="RFC6020"/>.  Following the format defined in <xref target="RFC6020"/>, the the following registration is requested:</t>
        <artwork><![CDATA[
  name:         ietf-voucher-constrained
  namespace:    urn:ietf:params:xml:ns:yang:ietf-voucher-constrained
  prefix:       vch
  reference:    RFC XXXX

  name:         ietf-voucher-request-constrained
  namespace:    urn:ietf:params:xml:ns:yang:ietf-voucher-
                                           request-constrained
  prefix:       vch
  reference:    RFC XXXX
]]></artwork>
      </section>
      <section anchor="the-rfc-sid-range-assignment-sub-registry">
        <name>The RFC SID range assignment sub-registry</name>
        <artwork><![CDATA[
------------ ------ --------------------------- ------------
Entry-point | Size | Module name               | RFC Number
------------ ------ --------------------------- ------------
2450          50     ietf-voucher-constrained    [This RFC]
2500          50     ietf-voucher-request        [This RFC]
                                 -constrained
----------- ------  --------------------------- ------------
]]></artwork>
        <t>Warning: These SID values are defined in <xref target="I-D.ietf-core-sid"/>, not as an Early Allocation.</t>
        <t>IANA: please update the names in the Registry to match these revised names, if they have not already  been revised.</t>
      </section>
      <section anchor="media-types-registry">
        <name>Media Types Registry</name>
        <t>This section registers the 'application/voucher-cose+cbor' in the IANA "Media Types" registry.
This media type is used to indicate that the content is a CBOR voucher or voucher request
signed with a COSE_Sign1 structure <xref target="I-D.ietf-cose-rfc8152bis-struct"/>.</t>
        <section anchor="applicationvoucher-cosecbor">
          <name>application/voucher-cose+cbor</name>
          <artwork><![CDATA[
Type name:  application
Subtype name:  voucher-cose+cbor
Required parameters:  N/A
Optional parameters:  N/A
Encoding considerations:  binary (CBOR)
Security considerations:  Security Considerations of [This RFC].
Interoperability considerations:  The format is designed to be
  broadly interoperable.
Published specification:  [This RFC]
Applications that use this media type:  ANIMA, 6tisch, and other
  zero-touch onboarding systems
Fragment identifier considerations:  The syntax and semantics of
  fragment identifiers specified for application/voucher-cose+cbor
  are as specified for application/cbor.  (At publication of this
  document, there is no fragment identification syntax defined for
  application/cbor.)
Additional information:
  Deprecated alias names for this type: N/A
  Magic number(s):  N/A
  File extension(s):  .vch
  Macintosh file type code(s):  N/A
Person & email address to contact for further information:  IETF
  ANIMA Working Group (anima@ietf.org) or IETF Operations and
  Management Area Working Group (opsawg@ietf.org)
Intended usage:  COMMON
Restrictions on usage:  N/A
Author:  ANIMA WG
Change controller:  IETF
Provisional registration? (standards tree only):  NO
]]></artwork>
        </section>
      </section>
      <section anchor="coap-content-format-registry">
        <name>CoAP Content-Format Registry</name>
        <t>One addition to the sub-registry "CoAP Content-Formats", within the "CoRE
Parameters" registry is needed for a new content-format. It can be registered
in the Expert Review range (0-255) or the IETF Review range (256-9999).</t>
        <artwork><![CDATA[
Media type                     Encoding   ID   Reference
-----------------------------  --------- ----  ----------
application/voucher-cose+cbor  -         TBD3  [This RFC]
]]></artwork>
      </section>
      <section anchor="update-to-brski-parameters-registry">
        <name>Update to BRSKI Parameters Registry</name>
        <t>This section updates the BRSKI Well-Known URIs sub-registry of the IANA Bootstrapping Remote Secure Key Infrastructures (BRSKI) Parameters Registry
by adding a new column "Short URI". The contents of this field MUST be specified for any newly registered URI as follows:</t>
        <t>Short URI: A short name for the "URI" resource that can be used by a Constrained BRSKI Pledge in a CoAP request to the Registrar. In case the "URI" resource is only used between Registrar and MASA, the value "--" is registered denoting that a short name is not applicable.</t>
        <t>The initial contents of the sub-registry including the new column are as follows:</t>
        <table anchor="brski-wellknown-uri">
          <name>Update of the BRSKI Well-Known URI Sub-Registry</name>
          <thead>
            <tr>
              <th align="left">URI</th>
              <th align="left">Short URI</th>
              <th align="left">Description</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">requestvoucher</td>
              <td align="left">rv</td>
              <td align="left">Request voucher: Pledge to Registrar, and Registrar to MASA</td>
              <td align="left">
                <xref target="RFC8995"/>, [This RFC]</td>
            </tr>
            <tr>
              <td align="left">voucher_status</td>
              <td align="left">vs</td>
              <td align="left">Voucher status telemetry: Pledge to Registrar</td>
              <td align="left">
                <xref target="RFC8995"/>, [This RFC]</td>
            </tr>
            <tr>
              <td align="left">requestauditlog</td>
              <td align="left">--</td>
              <td align="left">Request audit log: Registrar to MASA</td>
              <td align="left">
                <xref target="RFC8995"/></td>
            </tr>
            <tr>
              <td align="left">enrollstatus</td>
              <td align="left">es</td>
              <td align="left">Enrollment status telemetry: Pledge to Registrar</td>
              <td align="left">
                <xref target="RFC8995"/>, [This RFC]</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>We are very grateful to Jim Schaad for explaining COSE and CMS choices.
Also thanks to Jim Schaad for correcting earlier versions of the COSE_Sign1 objects.</t>
      <t>Michel Veillette did extensive work on <em>pyang</em> to extend it to support the SID allocation process, and this document was among its first users.</t>
      <t>Daniel Franke and Henk Birkholtz provided review feedback.</t>
      <t>The BRSKI design team has met on many Thursdays for document review.
It includes:
Aurelio Schellenbaum,
David von Oheimb
Steffen Fries,
Thomas Werner,
Toerless Eckert,</t>
    </section>
    <section anchor="changelog">
      <name>Changelog</name>
      <t>-11 to -16
    (For change details see GitHub issues https://github.com/anima-wg/constrained-voucher/issues)</t>
      <t>-10
    Design considerations extended
    Examples made consistent</t>
      <t>-08
    Examples for cose_sign1 are completed and improved.</t>
      <t>-06
    New SID values assigned; regenerated examples</t>
      <t>-04
    voucher and request-voucher MUST be signed
    examples for signed request are added in appendix
    IANA SID registration is updated
    SID values in examples are aligned
    signed cms examples aligned with new SIDs</t>
      <t>-03</t>
      <artwork><![CDATA[
Examples are inverted.
]]></artwork>
      <t>-02</t>
      <artwork><![CDATA[
Example of requestvoucher with unsigned appllication/cbor is added
attributes of voucher "refined" to optional
CBOR serialization of vouchers improved
Discovery port numbers are specified
]]></artwork>
      <t>-01</t>
      <artwork><![CDATA[
application/json is optional, application/cbor is compulsory
Cms and cose mediatypes are introduced
]]></artwork>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC3688" target="https://www.rfc-editor.org/info/rfc3688">
          <front>
            <title>The IETF XML Registry</title>
            <author fullname="M. Mealling" initials="M." surname="Mealling">
              <organization/>
            </author>
            <date month="January" year="2004"/>
            <abstract>
              <t>This document describes an IANA maintained registry for IETF standards which use Extensible Markup Language (XML) related items such as Namespaces, Document Type Declarations (DTDs), Schemas, and Resource Description Framework (RDF) Schemas.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="81"/>
          <seriesInfo name="RFC" value="3688"/>
          <seriesInfo name="DOI" value="10.17487/RFC3688"/>
        </reference>
        <reference anchor="RFC4193" target="https://www.rfc-editor.org/info/rfc4193">
          <front>
            <title>Unique Local IPv6 Unicast Addresses</title>
            <author fullname="R. Hinden" initials="R." surname="Hinden">
              <organization/>
            </author>
            <author fullname="B. Haberman" initials="B." surname="Haberman">
              <organization/>
            </author>
            <date month="October" year="2005"/>
            <abstract>
              <t>This document defines an IPv6 unicast address format that is globally unique and is intended for local communications, usually inside of a site. These addresses are not expected to be routable on the global Internet.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4193"/>
          <seriesInfo name="DOI" value="10.17487/RFC4193"/>
        </reference>
        <reference anchor="RFC4210" target="https://www.rfc-editor.org/info/rfc4210">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate Management Protocol (CMP)</title>
            <author fullname="C. Adams" initials="C." surname="Adams">
              <organization/>
            </author>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <author fullname="T. Kause" initials="T." surname="Kause">
              <organization/>
            </author>
            <author fullname="T. Mononen" initials="T." surname="Mononen">
              <organization/>
            </author>
            <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="RFC5280" target="https://www.rfc-editor.org/info/rfc5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper">
              <organization/>
            </author>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="W. Polk" initials="W." surname="Polk">
              <organization/>
            </author>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC5652" target="https://www.rfc-editor.org/info/rfc5652">
          <front>
            <title>Cryptographic Message Syntax (CMS)</title>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <date month="September" year="2009"/>
            <abstract>
              <t>This document describes the Cryptographic Message Syntax (CMS).  This syntax is used to digitally sign, digest, authenticate, or encrypt arbitrary message content.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="70"/>
          <seriesInfo name="RFC" value="5652"/>
          <seriesInfo name="DOI" value="10.17487/RFC5652"/>
        </reference>
        <reference anchor="RFC6020" target="https://www.rfc-editor.org/info/rfc6020">
          <front>
            <title>YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)</title>
            <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund">
              <organization/>
            </author>
            <date month="October" year="2010"/>
            <abstract>
              <t>YANG is a data modeling language used to model configuration and state data manipulated by the Network Configuration Protocol (NETCONF), NETCONF remote procedure calls, and NETCONF notifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6020"/>
          <seriesInfo name="DOI" value="10.17487/RFC6020"/>
        </reference>
        <reference anchor="RFC6066" target="https://www.rfc-editor.org/info/rfc6066">
          <front>
            <title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <date month="January" year="2011"/>
            <abstract>
              <t>This document provides specifications for existing TLS extensions.  It is a companion document for RFC 5246, "The Transport Layer Security (TLS) Protocol Version 1.2".  The extensions specified are server_name, max_fragment_length, client_certificate_url, trusted_ca_keys, truncated_hmac, and status_request.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6066"/>
          <seriesInfo name="DOI" value="10.17487/RFC6066"/>
        </reference>
        <reference anchor="RFC6125" target="https://www.rfc-editor.org/info/rfc6125">
          <front>
            <title>Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS)</title>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre">
              <organization/>
            </author>
            <author fullname="J. Hodges" initials="J." surname="Hodges">
              <organization/>
            </author>
            <date month="March" year="2011"/>
            <abstract>
              <t>Many application technologies enable secure communication between two entities by means of Internet Public Key Infrastructure Using X.509 (PKIX) certificates in the context of Transport Layer Security (TLS). This document specifies procedures for representing and verifying the identity of application services in such interactions.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6125"/>
          <seriesInfo name="DOI" value="10.17487/RFC6125"/>
        </reference>
        <reference anchor="RFC7250" target="https://www.rfc-editor.org/info/rfc7250">
          <front>
            <title>Using Raw Public Keys in Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
            <author fullname="P. Wouters" initials="P." role="editor" surname="Wouters">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." role="editor" surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="J. Gilmore" initials="J." surname="Gilmore">
              <organization/>
            </author>
            <author fullname="S. Weiler" initials="S." surname="Weiler">
              <organization/>
            </author>
            <author fullname="T. Kivinen" initials="T." surname="Kivinen">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>This document specifies a new certificate type and two TLS extensions for exchanging raw public keys in Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS).  The new certificate type allows raw public keys to be used for authentication.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7250"/>
          <seriesInfo name="DOI" value="10.17487/RFC7250"/>
        </reference>
        <reference anchor="RFC7950" target="https://www.rfc-editor.org/info/rfc7950">
          <front>
            <title>The YANG 1.1 Data Modeling Language</title>
            <author fullname="M. Bjorklund" initials="M." role="editor" surname="Bjorklund">
              <organization/>
            </author>
            <date month="August" year="2016"/>
            <abstract>
              <t>YANG is a data modeling language used to model configuration data, state data, Remote Procedure Calls, and notifications for network management protocols.  This document describes the syntax and semantics of version 1.1 of the YANG language.  YANG version 1.1 is a maintenance release of the YANG language, addressing ambiguities and defects in the original specification.  There are a small number of backward incompatibilities from YANG version 1.  This document also specifies the YANG mappings to the Network Configuration Protocol (NETCONF).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7950"/>
          <seriesInfo name="DOI" value="10.17487/RFC7950"/>
        </reference>
        <reference anchor="RFC8366" target="https://www.rfc-editor.org/info/rfc8366">
          <front>
            <title>A Voucher Artifact for Bootstrapping Protocols</title>
            <author fullname="K. Watsen" initials="K." surname="Watsen">
              <organization/>
            </author>
            <author fullname="M. Richardson" initials="M." surname="Richardson">
              <organization/>
            </author>
            <author fullname="M. Pritikin" initials="M." surname="Pritikin">
              <organization/>
            </author>
            <author fullname="T. Eckert" initials="T." surname="Eckert">
              <organization/>
            </author>
            <date month="May" year="2018"/>
            <abstract>
              <t>This document defines a strategy to securely assign a pledge to an owner using an artifact signed, directly or indirectly, by the pledge's manufacturer.  This artifact is known as a "voucher".</t>
              <t>This document defines an artifact format as a YANG-defined JSON document that has been signed using a Cryptographic Message Syntax (CMS) structure.  Other YANG-derived formats are possible.  The voucher artifact is normally generated by the pledge's manufacturer (i.e., the Manufacturer Authorized Signing Authority (MASA)).</t>
              <t>This document only defines the voucher artifact, leaving it to other documents to describe specialized protocols for accessing it.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8366"/>
          <seriesInfo name="DOI" value="10.17487/RFC8366"/>
        </reference>
        <reference anchor="RFC8446" target="https://www.rfc-editor.org/info/rfc8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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="RFC8610" target="https://www.rfc-editor.org/info/rfc8610">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz">
              <organization/>
            </author>
            <author fullname="C. Vigano" initials="C." surname="Vigano">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049).  Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC8949" target="https://www.rfc-editor.org/info/rfc8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049.  It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="RFC8995" target="https://www.rfc-editor.org/info/rfc8995">
          <front>
            <title>Bootstrapping Remote Secure Key Infrastructure (BRSKI)</title>
            <author fullname="M. Pritikin" initials="M." surname="Pritikin">
              <organization/>
            </author>
            <author fullname="M. Richardson" initials="M." surname="Richardson">
              <organization/>
            </author>
            <author fullname="T. Eckert" initials="T." surname="Eckert">
              <organization/>
            </author>
            <author fullname="M. Behringer" initials="M." surname="Behringer">
              <organization/>
            </author>
            <author fullname="K. Watsen" initials="K." surname="Watsen">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document specifies automated bootstrapping of an Autonomic Control Plane.  To do this, a Secure Key Infrastructure is bootstrapped.  This is done using manufacturer-installed X.509 certificates, in combination with a manufacturer's authorizing service, both online and offline.  We call this process the Bootstrapping Remote Secure Key Infrastructure (BRSKI) protocol. Bootstrapping a new device can occur when using a routable address and a cloud service, only link-local connectivity, or limited/disconnected networks. Support for deployment models with less stringent security requirements is included. Bootstrapping is complete when the cryptographic identity of the new key infrastructure is successfully deployed to the device.  The established secure connection can be used to deploy a locally issued certificate to the device as well.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8995"/>
          <seriesInfo name="DOI" value="10.17487/RFC8995"/>
        </reference>
        <reference anchor="RFC9031" target="https://www.rfc-editor.org/info/rfc9031">
          <front>
            <title>Constrained Join Protocol (CoJP) for 6TiSCH</title>
            <author fullname="M. Vučinić" initials="M." role="editor" surname="Vučinić">
              <organization/>
            </author>
            <author fullname="J. Simon" initials="J." surname="Simon">
              <organization/>
            </author>
            <author fullname="K. Pister" initials="K." surname="Pister">
              <organization/>
            </author>
            <author fullname="M. Richardson" initials="M." surname="Richardson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes the minimal framework required for a new device, called a "pledge", to securely join a 6TiSCH (IPv6 over the Time-Slotted Channel Hopping mode of IEEE 802.15.4) network. The framework requires that the pledge and the JRC (Join Registrar/Coordinator, a central entity), share a symmetric key. How this key is provisioned is out of scope of this document. Through a single CoAP (Constrained Application Protocol) request-response exchange secured by OSCORE (Object Security for Constrained RESTful Environments), the pledge requests admission into the network, and the JRC configures it with link-layer keying material and other parameters. The JRC may at any time update the parameters through another request-response exchange secured by OSCORE. This specification defines the Constrained Join Protocol and its CBOR (Concise Binary Object Representation) data structures, and it describes how to configure the rest of the 6TiSCH communication stack for this join process to occur in a secure manner. Additional security mechanisms may be added on top of this minimal framework.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9031"/>
          <seriesInfo name="DOI" value="10.17487/RFC9031"/>
        </reference>
        <reference anchor="RFC9032" target="https://www.rfc-editor.org/info/rfc9032">
          <front>
            <title>Encapsulation of 6TiSCH Join and Enrollment Information Elements</title>
            <author fullname="D. Dujovne" initials="D." role="editor" surname="Dujovne">
              <organization/>
            </author>
            <author fullname="M. Richardson" initials="M." surname="Richardson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>In the Time-Slotted Channel Hopping (TSCH) mode of IEEE Std 802.15.4, opportunities for broadcasts are limited to specific times and specific channels.  Routers in a TSCH network transmit Enhanced Beacon (EB) frames to announce the presence of the network.  This document provides a mechanism by which additional information critical for new nodes (pledges) and long-sleeping nodes may be carried within the EB in order to conserve use of broadcast opportunities.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9032"/>
          <seriesInfo name="DOI" value="10.17487/RFC9032"/>
        </reference>
        <reference anchor="I-D.ietf-core-yang-cbor" target="https://www.ietf.org/archive/id/draft-ietf-core-yang-cbor-19.txt">
          <front>
            <title>CBOR Encoding of Data Modeled with YANG</title>
            <author fullname="Michel Veillette">
              <organization>Trilliant Networks Inc.</organization>
            </author>
            <author fullname="Ivaylo Petrov">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Alexander Pelov">
              <organization>Acklio</organization>
            </author>
            <author fullname="Carsten Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <author fullname="Michael Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <date day="20" month="March" year="2022"/>
            <abstract>
              <t>   Based on the Concise Binary Object Representation (CBOR, RFC 8949),
   this document defines encoding rules for representing configuration
   data, state data, parameters and results of Remote Procedure Call
   (RPC) operations or actions, and notifications, defined using YANG
   (RFC 7950).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-yang-cbor-19"/>
        </reference>
        <reference anchor="I-D.ietf-core-sid" target="https://www.ietf.org/archive/id/draft-ietf-core-sid-18.txt">
          <front>
            <title>YANG Schema Item iDentifier (YANG SID)</title>
            <author fullname="Michel Veillette">
              <organization>Trilliant Networks Inc.</organization>
            </author>
            <author fullname="Alexander Pelov">
              <organization>Acklio</organization>
            </author>
            <author fullname="Ivaylo Petrov">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Carsten Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <author fullname="Michael Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <date day="18" month="November" year="2021"/>
            <abstract>
              <t>   YANG Schema Item iDentifiers (YANG SID) are globally unique 63-bit
   unsigned integers used to identify YANG items, as a more compact
   method to identify YANG items that can be used for efficiency and in
   constrained environments (RFC 7228).  This document defines the
   semantics, the registration, and assignment processes of YANG SIDs
   for IETF managed YANG modules.  To enable the implementation of these
   processes, this document also defines a file format used to persist
   and publish assigned YANG SIDs.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-sid-18"/>
        </reference>
        <reference anchor="I-D.ietf-cose-rfc8152bis-struct" target="https://www.ietf.org/archive/id/draft-ietf-cose-rfc8152bis-struct-15.txt">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <author fullname="Jim Schaad">
              <organization>August Cellars</organization>
            </author>
            <date day="1" month="February" year="2021"/>
            <abstract>
              <t>   Concise Binary Object Representation (CBOR) is a data format designed
   for small code size and small message size.  There is a need for the
   ability to have basic security services defined for this data format.
   This document defines the CBOR Object Signing and Encryption (COSE)
   protocol.  This specification describes how to create and process
   signatures, message authentication codes, and encryption using CBOR
   for serialization.  This specification additionally describes how to
   represent cryptographic keys using CBOR.

   This document along with [I-D.ietf-cose-rfc8152bis-algs] obsoletes
   RFC8152.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cose-rfc8152bis-struct-15"/>
        </reference>
        <reference anchor="I-D.ietf-cose-rfc8152bis-algs" target="https://www.ietf.org/archive/id/draft-ietf-cose-rfc8152bis-algs-12.txt">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Initial Algorithms</title>
            <author fullname="Jim Schaad">
              <organization>August Cellars</organization>
            </author>
            <date day="24" month="September" year="2020"/>
            <abstract>
              <t>   Concise Binary Object Representation (CBOR) is a data format designed
   for small code size and small message size.  There is a need for the
   ability to have basic security services defined for this data format.
   THis document defines a set of algorithms that can be used with the
   CBOR Object Signing and Encryption (COSE) protocol RFC XXXX.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cose-rfc8152bis-algs-12"/>
        </reference>
        <reference anchor="I-D.ietf-ace-coap-est" target="https://www.ietf.org/archive/id/draft-ietf-ace-coap-est-18.txt">
          <front>
            <title>EST over secure CoAP (EST-coaps)</title>
            <author fullname="Peter van der Stok">
              <organization>Consultant</organization>
            </author>
            <author fullname="Panos Kampanakis">
              <organization>Cisco Systems</organization>
            </author>
            <author fullname="Michael C. Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <author fullname="Shahid Raza">
              <organization>RISE SICS</organization>
            </author>
            <date day="6" month="January" year="2020"/>
            <abstract>
              <t>   Enrollment over Secure Transport (EST) is used as a certificate
   provisioning protocol over HTTPS.  Low-resource devices often use the
   lightweight Constrained Application Protocol (CoAP) for message
   exchanges.  This document defines how to transport EST payloads over
   secure CoAP (EST-coaps), which allows constrained devices to use
   existing EST functionality for provisioning certificates.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-ace-coap-est-18"/>
        </reference>
        <reference anchor="I-D.ietf-cose-x509" target="https://www.ietf.org/archive/id/draft-ietf-cose-x509-08.txt">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Header parameters for carrying and referencing X.509 certificates</title>
            <author fullname="Jim Schaad">
              <organization>August Cellars</organization>
            </author>
            <date day="14" month="December" year="2020"/>
            <abstract>
              <t>   The CBOR Signing And Encrypted Message (COSE) structure uses
   references to keys in general.  For some algorithms, additional
   properties are defined which carry parameters relating to keys as
   needed.  The COSE Key structure is used for transporting keys outside
   of COSE messages.  This document extends the way that keys can be
   identified and transported by providing attributes that refer to or
   contain X.509 certificates.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cose-x509-08"/>
        </reference>
        <reference anchor="I-D.ietf-tls-dtls13" target="https://www.ietf.org/archive/id/draft-ietf-tls-dtls13-43.txt">
          <front>
            <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
            <author fullname="Eric Rescorla">
              <organization>RTFM, Inc.</organization>
            </author>
            <author fullname="Hannes Tschofenig">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Nagendra Modadugu">
              <organization>Google, Inc.</organization>
            </author>
            <date day="30" month="April" year="2021"/>
            <abstract>
              <t>   This document specifies Version 1.3 of the Datagram Transport Layer
   Security (DTLS) protocol.  DTLS 1.3 allows client/server applications
   to communicate over the Internet in a way that is designed to prevent
   eavesdropping, tampering, and message forgery.

   The DTLS 1.3 protocol is intentionally based on the Transport Layer
   Security (TLS) 1.3 protocol and provides equivalent security
   guarantees with the exception of order protection/non-replayability.
   Datagram semantics of the underlying transport are preserved by the
   DTLS protocol.

   This document obsoletes RFC 6347.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-tls-dtls13-43"/>
        </reference>
        <reference anchor="ieee802-1AR" target="http://standards.ieee.org/findstds/standard/802.1AR-2009.html">
          <front>
            <title>IEEE 802.1AR Secure Device Identifier</title>
            <author initials="" surname="IEEE Standard">
              <organization/>
            </author>
            <date year="2009"/>
          </front>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/rfc8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <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>
        <name>Informative References</name>
        <reference anchor="RFC4443" target="https://www.rfc-editor.org/info/rfc4443">
          <front>
            <title>Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification</title>
            <author fullname="A. Conta" initials="A." surname="Conta">
              <organization/>
            </author>
            <author fullname="S. Deering" initials="S." surname="Deering">
              <organization/>
            </author>
            <author fullname="M. Gupta" initials="M." role="editor" surname="Gupta">
              <organization/>
            </author>
            <date month="March" year="2006"/>
            <abstract>
              <t>This document describes the format of a set of control messages used in ICMPv6 (Internet Control Message Protocol).  ICMPv6 is the Internet Control Message Protocol for Internet Protocol version 6 (IPv6).  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="89"/>
          <seriesInfo name="RFC" value="4443"/>
          <seriesInfo name="DOI" value="10.17487/RFC4443"/>
        </reference>
        <reference anchor="RFC6282" target="https://www.rfc-editor.org/info/rfc6282">
          <front>
            <title>Compression Format for IPv6 Datagrams over IEEE 802.15.4-Based Networks</title>
            <author fullname="J. Hui" initials="J." role="editor" surname="Hui">
              <organization/>
            </author>
            <author fullname="P. Thubert" initials="P." surname="Thubert">
              <organization/>
            </author>
            <date month="September" year="2011"/>
            <abstract>
              <t>This document updates RFC 4944, "Transmission of IPv6 Packets over IEEE 802.15.4 Networks".  This document specifies an IPv6 header compression format for IPv6 packet delivery in Low Power Wireless Personal Area Networks (6LoWPANs).  The compression format relies on shared context to allow compression of arbitrary prefixes.  How the information is maintained in that shared context is out of scope. This document specifies compression of multicast addresses and a framework for compressing next headers.  UDP header compression is specified within this framework.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6282"/>
          <seriesInfo name="DOI" value="10.17487/RFC6282"/>
        </reference>
        <reference anchor="RFC6690" target="https://www.rfc-editor.org/info/rfc6690">
          <front>
            <title>Constrained RESTful Environments (CoRE) Link Format</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <date month="August" year="2012"/>
            <abstract>
              <t>This specification defines Web Linking using a link format for use by constrained web servers to describe hosted resources, their attributes, and other relationships between links.  Based on the HTTP Link Header field defined in RFC 5988, the Constrained RESTful Environments (CoRE) Link Format is carried as a payload and is assigned an Internet media type.  "RESTful" refers to the Representational State Transfer (REST) architecture.  A well-known URI is defined as a default entry point for requesting the links hosted by a server.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6690"/>
          <seriesInfo name="DOI" value="10.17487/RFC6690"/>
        </reference>
        <reference anchor="RFC7030" target="https://www.rfc-editor.org/info/rfc7030">
          <front>
            <title>Enrollment over Secure Transport</title>
            <author fullname="M. Pritikin" initials="M." role="editor" surname="Pritikin">
              <organization/>
            </author>
            <author fullname="P. Yee" initials="P." role="editor" surname="Yee">
              <organization/>
            </author>
            <author fullname="D. Harkins" initials="D." role="editor" surname="Harkins">
              <organization/>
            </author>
            <date month="October" year="2013"/>
            <abstract>
              <t>This document profiles certificate enrollment for clients using Certificate Management over CMS (CMC) messages over a secure transport.  This profile, called Enrollment over Secure Transport (EST), describes a simple, yet functional, certificate management protocol targeting Public Key Infrastructure (PKI) clients that need to acquire client certificates and associated Certification Authority (CA) certificates.  It also supports client-generated public/private key pairs as well as key pairs generated by the CA.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7030"/>
          <seriesInfo name="DOI" value="10.17487/RFC7030"/>
        </reference>
        <reference anchor="RFC7228" target="https://www.rfc-editor.org/info/rfc7228">
          <front>
            <title>Terminology for Constrained-Node Networks</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="M. Ersue" initials="M." surname="Ersue">
              <organization/>
            </author>
            <author fullname="A. Keranen" initials="A." surname="Keranen">
              <organization/>
            </author>
            <date month="May" year="2014"/>
            <abstract>
              <t>The Internet Protocol Suite is increasingly used on small devices with severe constraints on power, memory, and processing resources, creating constrained-node networks.  This document provides a number of basic terms that have been useful in the standardization work for constrained-node networks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7228"/>
          <seriesInfo name="DOI" value="10.17487/RFC7228"/>
        </reference>
        <reference anchor="RFC8340" target="https://www.rfc-editor.org/info/rfc8340">
          <front>
            <title>YANG Tree Diagrams</title>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund">
              <organization/>
            </author>
            <author fullname="L. Berger" initials="L." role="editor" surname="Berger">
              <organization/>
            </author>
            <date month="March" year="2018"/>
            <abstract>
              <t>This document captures the current syntax used in YANG module tree diagrams.  The purpose of this document is to provide a single location for this definition.  This syntax may be updated from time to time based on the evolution of the YANG language.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="215"/>
          <seriesInfo name="RFC" value="8340"/>
          <seriesInfo name="DOI" value="10.17487/RFC8340"/>
        </reference>
        <reference anchor="RFC8990" target="https://www.rfc-editor.org/info/rfc8990">
          <front>
            <title>GeneRic Autonomic Signaling Protocol (GRASP)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="B. Carpenter" initials="B." role="editor" surname="Carpenter">
              <organization/>
            </author>
            <author fullname="B. Liu" initials="B." role="editor" surname="Liu">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document specifies the GeneRic Autonomic Signaling Protocol (GRASP), which enables autonomic nodes and Autonomic Service Agents to dynamically discover peers, to synchronize state with each other, and to negotiate parameter settings with each other. GRASP depends on an external security environment that is described elsewhere. The technical objectives and parameters for specific application scenarios are to be described in separate documents. Appendices briefly discuss requirements for the protocol and existing protocols with comparable features.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8990"/>
          <seriesInfo name="DOI" value="10.17487/RFC8990"/>
        </reference>
        <reference anchor="I-D.ietf-6lo-mesh-link-establishment" target="https://www.ietf.org/archive/id/draft-ietf-6lo-mesh-link-establishment-00.txt">
          <front>
            <title>Mesh Link Establishment</title>
            <author fullname="Richard Kelsey">
	 </author>
            <date day="1" month="December" year="2015"/>
            <abstract>
              <t>   This document defines the mesh link establishment (MLE) protocol for
   establishing and configuring secure radio links in IEEE 802.15.4
   radio mesh networks.  MLE extends IEEE 802.15.4 for use in multihop
   mesh networks by adding three capabilities: 1) dynamically
   configuring and securing radio connections between neighboring
   devices, 2) enabling network-wide changes to shared radio parameters,
   and 3) allowing the determination of radio link quality prior to
   configuration.  MLE operates below the routing layer, insulating it
   from the details of configuring, securing, and maintaining individual
   radio links within a larger mesh network.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-6lo-mesh-link-establishment-00"/>
        </reference>
        <reference anchor="I-D.kuehlewind-update-tag" target="https://www.ietf.org/archive/id/draft-kuehlewind-update-tag-04.txt">
          <front>
            <title>Definition of new tags for relations between RFCs</title>
            <author fullname="Mirja Kuehlewind">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Suresh Krishnan">
              <organization>Kaloom</organization>
            </author>
            <date day="12" month="July" year="2021"/>
            <abstract>
              <t>   An RFC can include a tag called "Updates" which can be used to link a
   new RFC to an existing RFC.  On publication of such an RFC, the
   existing RFC will include an additional metadata tag called "Updated
   by" which provides a link to the new RFC.  However, this tag pair is
   not well-defined and therefore it is currently used for multiple
   different purposes, which leads to confusion about the actual meaning
   of this tag and inconsistency in its use.

   This document recommends the discontinuation of the use of the
   updates/updated by tag pair, and instead proposes three new tag pairs
   that have well-defined meanings and use cases.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-kuehlewind-update-tag-04"/>
        </reference>
        <reference anchor="I-D.richardson-anima-masa-considerations" target="https://www.ietf.org/archive/id/draft-richardson-anima-masa-considerations-06.txt">
          <front>
            <title>Operatonal Considerations for Voucher infrastructure for BRSKI MASA</title>
            <author fullname="Michael Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <author fullname="Wei Pan">
              <organization>Huawei Technologies</organization>
            </author>
            <date day="13" month="November" year="2021"/>
            <abstract>
              <t>   This document describes a number of operational modes that a BRSKI
   Manufacturer Authorized Signing Authority (MASA) may take on.

   Each mode is defined, and then each mode is given a relevance within
   an over applicability of what kind of organization the MASA is
   deployed into.  This document does not change any protocol
   mechanisms.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-richardson-anima-masa-considerations-06"/>
        </reference>
        <reference anchor="I-D.ietf-anima-constrained-join-proxy" target="https://www.ietf.org/archive/id/draft-ietf-anima-constrained-join-proxy-09.txt">
          <front>
            <title>Constrained Join Proxy for Bootstrapping Protocols</title>
            <author fullname="Michael Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <author fullname="Peter van der Stok">
              <organization>vanderstok consultancy</organization>
            </author>
            <author fullname="Panos Kampanakis">
              <organization>Cisco Systems</organization>
            </author>
            <date day="25" month="March" year="2022"/>
            <abstract>
              <t>   This document defines a protocol to securely assign a Pledge to a
   domain, represented by a Registrar, using an intermediary node
   between Pledge and Registrar.  This intermediary node is known as a
   "constrained Join Proxy".  An enrolled Pledge can act as a
   constrained Join Proxy.

   This document extends the work of Bootstrapping Remote Secure Key
   Infrastructures (BRSKI) by replacing the Circuit-proxy between Pledge
   and Registrar by a stateless/stateful constrained Join Proxy.  It
   relays join traffic from the Pledge to the Registrar.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-anima-constrained-join-proxy-09"/>
        </reference>
        <reference anchor="I-D.ietf-lake-edhoc" target="https://www.ietf.org/archive/id/draft-ietf-lake-edhoc-12.txt">
          <front>
            <title>Ephemeral Diffie-Hellman Over COSE (EDHOC)</title>
            <author fullname="Göran Selander">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="John Preuß Mattsson">
              <organization>Ericsson AB</organization>
            </author>
            <author fullname="Francesca Palombini">
              <organization>Ericsson AB</organization>
            </author>
            <date day="20" month="October" year="2021"/>
            <abstract>
              <t>   This document specifies Ephemeral Diffie-Hellman Over COSE (EDHOC), a
   very compact and lightweight authenticated Diffie-Hellman key
   exchange with ephemeral keys.  EDHOC provides mutual authentication,
   forward secrecy, and identity protection.  EDHOC is intended for
   usage in constrained scenarios and a main use case is to establish an
   OSCORE security context.  By reusing COSE for cryptography, CBOR for
   encoding, and CoAP for transport, the additional code size can be
   kept very low.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lake-edhoc-12"/>
        </reference>
        <reference anchor="I-D.ietf-anima-jws-voucher" target="https://www.ietf.org/archive/id/draft-ietf-anima-jws-voucher-03.txt">
          <front>
            <title>JWS signed Voucher Artifacts for Bootstrapping Protocols</title>
            <author fullname="Michael Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <author fullname="Thomas Werner">
              <organization>Siemens AG</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   RFC8366 defines a digital artifact called voucher as a YANG-defined
   JSON document that has been signed using a Cryptographic Message
   Syntax (CMS) structure.  This memo introduces a variant of the
   voucher structure in which CMS is replaced by the JSON Object Signing
   and Encryption (JOSE) mechanism described in RFC7515 to better
   support use-cases in which JOSE is preferred over CMS.

   In addition to explaining how the format is created, MIME types are
   registered and examples are provided.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-anima-jws-voucher-03"/>
        </reference>
        <reference anchor="COSE-registry" target="https://www.iana.org/assignments/cose/cose.xhtml">
          <front>
            <title>CBOR Object Signing and Encryption (COSE) registry</title>
            <author initials="" surname="IANA">
              <organization/>
            </author>
            <date year="2017"/>
          </front>
        </reference>
        <reference anchor="Thread" target="https://www.threadgroup.org/support#Whitepapers">
          <front>
            <title>Thread support page, White Papers</title>
            <author initials="" surname="Thread Group, Inc">
              <organization/>
            </author>
            <date year="2021" month="November"/>
          </front>
        </reference>
        <reference anchor="I-D.ietf-rats-architecture" target="https://www.ietf.org/archive/id/draft-ietf-rats-architecture-15.txt">
          <front>
            <title>Remote Attestation Procedures Architecture</title>
            <author fullname="Henk Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <author fullname="Dave Thaler">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Michael Richardson">
              <organization>Sandelman Software Works</organization>
            </author>
            <author fullname="Ned Smith">
              <organization>Intel Corporation</organization>
            </author>
            <author fullname="Wei Pan">
              <organization>Huawei Technologies</organization>
            </author>
            <date day="8" month="February" year="2022"/>
            <abstract>
              <t>   In network protocol exchanges it is often useful for one end of a
   communication to know whether the other end is in an intended
   operating state.  This document provides an architectural overview of
   the entities involved that make such tests possible through the
   process of generating, conveying, and evaluating evidentiary claims.
   An attempt is made to provide for a model that is neutral toward
   processor architectures, the content of claims, and protocols.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-rats-architecture-15"/>
        </reference>
      </references>
    </references>
    <section anchor="libsup">
      <name>Library Support for BRSKI</name>
      <t>For the implementation of BRSKI, the use of a software library to manipulate certificates and use crypto algorithms is often beneficial. Two C-based examples are OpenSSL and mbedtls. Others more targeted to specific platforms or languages exist. It is important to realize that the library interfaces differ significantly between libraries.</t>
      <t>Libraries do not support all known crypto algorithms. Before deciding on a library, it is important to look at their supported crypto algorithms and the roadmap for future support. Apart from availability, the library footprint, and the required execution cycles should be investigated beforehand.</t>
      <t>The handling of certificates usually includes the checking of a certificate chain. In some libraries, chains are constructed and verified on the basis of a set of certificates, the trust anchor (usually self signed root CA), and the target certificate. In other libraries, the chain must be constructed beforehand and obey order criteria. Verification always includes the checking of the signatures. Less frequent is the checking the validity of the dates or checking the existence of a revoked certificate in the chain against a set of revoked certificates. Checking the chain on the consistency of the certificate extensions which specify the use of the certificate usually needs to be programmed explicitly.</t>
      <t>A libary can be used to construct a (D)TLS connection. It is useful to realize that differences beetween (D)TLS implementations will occur due to the differences in the certicate checks supported by the library. On top of that, checks between client and server certificates enforced by (D)TLS are not always helpful for a BRSKI implementation. For example, the certificates of Pledge and Registrar are usually not related when the BRSKI protocol is started. It must be verified that checks on the relation between client and server certificates do not hamper a succeful DTLS connection establishment.</t>
      <section anchor="opensssl">
        <name>OpensSSL</name>
        <t>From openssl's apps/verify.c :</t>
        <sourcecode>
&lt;CODE BEGINS&gt;
X509 *x = NULL;
int i = 0, ret = 0;
X509_STORE_CTX *csc;
STACK_OF(X509) *chain = NULL;
int num_untrusted;

x = load_cert(file, "certificate file");
if (x == NULL)
    goto end;

csc = X509_STORE_CTX_new();
if (csc == NULL) {
    BIO_printf(bio_err, "error %s: X.509 store context"
               "allocation failed\n",
               (file == NULL) ? "stdin" : file);
    goto end;
}

X509_STORE_set_flags(ctx, vflags);
if (!X509_STORE_CTX_init(csc, ctx, x, uchain)) {
    X509_STORE_CTX_free(csc);
    BIO_printf(bio_err,
               "error %s: X.509 store context"
               "initialization failed\n",
               (file == NULL) ? "stdin" : file);
    goto end;
}
if (tchain != NULL)
    X509_STORE_CTX_set0_trusted_stack(csc, tchain);
if (crls != NULL)
    X509_STORE_CTX_set0_crls(csc, crls);

i = X509_verify_cert(csc);
X509_STORE_CTX_free(csc);

&lt;CODE ENDS&gt;
</sourcecode>
      </section>
      <section anchor="mbedtls">
        <name>mbedTLS</name>
        <sourcecode markers="true"><![CDATA[
mbedtls_x509_crt cert;
mbedtls_x509_crt caCert;
uint32_t         certVerifyResultFlags;
...
int result = mbedtls_x509_crt_verify(&cert, &caCert, NULL, NULL,
                             &certVerifyResultFlags, NULL, NULL);
]]></sourcecode>
      </section>
    </section>
    <section anchor="constrained-brski-est-message-examples">
      <name>Constrained BRSKI-EST Message Examples</name>
      <t>This appendix extends the message examples from Appendix A of <xref target="I-D.ietf-ace-coap-est"/> with constrained BRSKI messages.
The CoAP headers are only fully worked out for the first example, enrollstatus.</t>
      <section anchor="es">
        <name>enrollstatus</name>
        <t>A coaps enrollstatus message from Pledge to Registrar can be as follows:</t>
        <artwork><![CDATA[
    POST coaps://192.0.2.1:8085/b/es
      Content-Format: 60
      Payload: <binary CBOR enrollstatus document>
]]></artwork>
        <t>The corresponding CoAP header fields are shown below.</t>
        <artwork><![CDATA[
  Ver = 1
  T = 0 (CON)
  TKL = 1
  Code = 0x02 (0.02 is POST method)
  Message ID = 0xab0f
  Token = 0x4d
  Options
   Option  (Uri-Path)
     Option Delta = 0xb   (option nr = 11)
     Option Length = 0x1
     Option Value = "b"
   Option  (Uri-Path)
     Option Delta = 0x0   (option nr = 11)
     Option Length = 0x2
     Option Value = "es"
   Option  (Content-Format)
     Option Delta = 0x1   (option nr = 12)
     Option Length = 0x1
     Option Value = 60    (application/cbor)
  Payload Marker = 0xFF
  Payload = A26776657273696F6E0166737461747573F5 (18 bytes binary)
]]></artwork>
        <t>The Uri-Host and Uri-Port Options are omitted because they coincide with the transport protocol (UDP) destination address and port respectively.</t>
        <t>The above binary CBOR enrollstatus payload looks as follows in CBOR diagnostic notation, for the case of enrollment success:</t>
        <artwork><![CDATA[
  {
    "version": 1,
    "status": true
   }
]]></artwork>
        <t>Alternatively the payload could look as follows in case of enrollment failure, using the reason field to describe the failure:</t>
        <artwork><![CDATA[
  Payload = A36776657273696F6E0166737461747573F466726561736F6E782A3C
            496E666F726D61746976652068756D616E207265616461626C652065
            72726F72206D6573736167653E

  {
    "version": 1,
    "status": false,
    "reason": "<Informative human readable error message>"
  }
]]></artwork>
        <t>To indicate successful reception of the enrollmentstatus telemetry report, a response from the Registrar may then be:</t>
        <artwork><![CDATA[
   2.04 Changed
]]></artwork>
        <t>With CoAP fields:</t>
        <artwork><![CDATA[
  Ver=1
  T=2 (ACK)
  TKL=1
  Code = 0x44 (2.04 Changed)
  Message ID = 0xab0f
  Token = 0x4d
]]></artwork>
      </section>
      <section anchor="voucherstatus">
        <name>voucher_status</name>
        <t>A coaps voucher_status message from Pledge to Registrar can be as follows:</t>
        <artwork><![CDATA[
    POST coaps://[2001:db8::2:1]/.well-known/brski/vs
      Content-Format: 60 (application/cbor)
      Payload:
a46776657273696f6e0166737461747573f466726561736f6e7828496e66
6f726d61746976652068756d616e2d7265616461626c65206572726f7220
6d6573736167656e726561736f6e2d636f6e74657874a100764164646974
696f6e616c20696e666f726d6174696f6e

]]></artwork>
        <t>The request payload above is binary CBOR but represented here in hexadecimal for readability. Below is the equivalent CBOR diagnostic format.</t>
        <artwork><![CDATA[
{
  "version": 1, 
  "status": false,
  "reason": "Informative human-readable error message",
  "reason-context": { 0: "Additional information" } 
}
]]></artwork>
        <t>A success response without payload will then be sent by the Registrar back to the Pledge to indicate reception of the telemetry report:</t>
        <artwork><![CDATA[
   2.04 Changed
]]></artwork>
      </section>
    </section>
    <section anchor="cosesign">
      <name>COSE-signed Voucher (Request) Examples</name>
      <t>This appendix provides examples of COSE-signed voucher requests and vouchers. First, the used test keys and certificates are described, following by examples of
a constrained PVR, RVR and voucher.</t>
      <section anchor="pledge-registrar-and-masa-keys">
        <name>Pledge, Registrar and MASA Keys</name>
        <t>This section documents the public and private keys used for all examples in this appendix. These keys are not used in any
production system, and must only be used for testing purposes.</t>
        <section anchor="pledgepriv">
          <name>Pledge IDevID private key</name>
          <sourcecode>
&lt;CODE BEGINS&gt;
Private-Key: (256 bit)
priv:
    9b:4d:43:b6:a9:e1:7c:04:93:45:c3:13:d9:b5:f0:
    41:a9:6a:9c:45:79:73:b8:62:f1:77:03:3a:fc:c2:
    9c:9a
pub:
    04:d6:b7:6f:74:88:bd:80:ae:5f:28:41:2c:72:02:
    ef:5f:98:b4:81:e1:d9:10:4c:f8:1b:66:d4:3e:5c:
    ea:da:73:e6:a8:38:a9:f1:35:11:85:b6:cd:e2:04:
    10:be:fe:d5:0b:3b:14:69:2e:e1:b0:6a:bc:55:40:
    60:eb:95:5c:54
ASN1 OID: prime256v1
NIST CURVE: P-256
&lt;CODE ENDS&gt;
</sourcecode>
        </section>
        <section anchor="jrcpriv">
          <name>Registrar private key</name>
          <sourcecode>
&lt;CODE BEGINS&gt;
Private-Key: (256 bit)
priv:
    81:df:bb:50:a3:45:58:06:b5:56:3b:46:de:f3:e9:
    e9:00:ae:98:13:9e:2f:36:68:81:fc:d9:65:24:fb:
    21:7e
pub:
    04:50:7a:c8:49:1a:8c:69:c7:b5:c3:1d:03:09:ed:
    35:ba:13:f5:88:4c:e6:2b:88:cf:30:18:15:4f:a0:
    59:b0:20:ec:6b:eb:b9:4e:02:b8:93:40:21:89:8d:
    a7:89:c7:11:ce:a7:13:39:f5:0e:34:8e:df:0d:92:
    3e:d0:2d:c7:b7
ASN1 OID: prime256v1
NIST CURVE: P-256
&lt;CODE ENDS&gt;
</sourcecode>
        </section>
        <section anchor="masapriv">
          <name>MASA private key</name>
          <sourcecode>
&lt;CODE BEGINS&gt;
Private-Key: (256 bit)
priv:
    c6:bb:a5:8f:b6:d3:c4:75:28:d8:d3:d9:46:c3:31:
    83:6d:00:0a:9a:38:ce:22:5c:e9:d9:ea:3b:98:32:
    ec:31
pub:
    04:59:80:94:66:14:94:20:30:3c:66:08:85:55:86:
    db:e7:d4:d1:d7:7a:d2:a3:1a:0c:73:6b:01:0d:02:
    12:15:d6:1f:f3:6e:c8:d4:84:60:43:3b:21:c5:83:
    80:1e:fc:e2:37:85:77:97:94:d4:aa:34:b5:b6:c6:
    ed:f3:17:5c:f1
ASN1 OID: prime256v1
NIST CURVE: P-256
&lt;CODE ENDS&gt;
</sourcecode>
        </section>
      </section>
      <section anchor="pledge-registrar-and-masa-certificates">
        <name>Pledge, Registrar and MASA Certificates</name>
        <t>All keys and certificates used for the examples have been generated with OpenSSL - see <xref target="appendix-gencerts"/> for more details on certificate generation.
Below the certificates are listed that accompany the keys shown above. Each certificate description is followed by the hexadecimal representation of the X.509 ASN.1 DER encoded certificate.
This representation can be for example decoded using an online ASN.1 decoder.</t>
        <section anchor="pledge-idevid-certificate">
          <name>Pledge IDevID Certificate</name>
          <sourcecode>
&lt;CODE BEGINS&gt;
Certificate:
  Data:
      Version: 3 (0x2)
      Serial Number: 4822678189204992 (0x11223344556600)
      Signature Algorithm: ecdsa-with-SHA256
      Issuer: C=NL, ST=NB, L=Helmond, O=vanderstok, OU=manufacturer, 
                                                    CN=masa.stok.nl
      Validity
          Not Before: Dec  9 10:02:36 2020 GMT
          Not After : Dec 31 23:59:59 9999 GMT
      Subject: C=NL, ST=NB, L=Helmond, O=vanderstok, OU=manufacturing,
                 CN=uuid:pledge.1.2.3.4/serialNumber=pledge.1.2.3.4
      Subject Public Key Info:
          Public Key Algorithm: id-ecPublicKey
              Public-Key: (256 bit)
              pub:
                  04:d6:b7:6f:74:88:bd:80:ae:5f:28:41:2c:72:02:
                  ef:5f:98:b4:81:e1:d9:10:4c:f8:1b:66:d4:3e:5c:
                  ea:da:73:e6:a8:38:a9:f1:35:11:85:b6:cd:e2:04:
                  10:be:fe:d5:0b:3b:14:69:2e:e1:b0:6a:bc:55:40:
                  60:eb:95:5c:54
              ASN1 OID: prime256v1
              NIST CURVE: P-256
      X509v3 extensions:
          X509v3 Basic Constraints: 
              CA:FALSE
          X509v3 Authority Key Identifier: 
              keyid:
      E4:03:93:B4:C3:D3:F4:2A:80:A4:77:18:F6:96:49:03:01:17:68:A3

  Signature Algorithm: ecdsa-with-SHA256
         30:46:02:21:00:d2:e6:45:3b:b0:c3:00:b3:25:8d:f1:83:fe:
         d9:37:c1:a2:49:65:69:7f:6b:b9:ef:2c:05:07:06:31:ac:17:
         bd:02:21:00:e2:ce:9e:7b:7f:74:50:33:ad:9e:ff:12:4e:e9:
         a6:f3:b8:36:65:ab:7d:80:bb:56:88:bc:03:1d:e5:1e:31:6f
&lt;CODE ENDS&gt;
</sourcecode>
          <t>Below is the hexadecimal representation:</t>
          <sourcecode>
&lt;CODE BEGINS&gt;
30820226308201cba003020102020711223344556600300a06082a8648ce3d04
0302306f310b3009060355040613024e4c310b300906035504080c024e423110
300e06035504070c0748656c6d6f6e6431133011060355040a0c0a76616e6465
7273746f6b31153013060355040b0c0c6d616e75666163747572657231153013
06035504030c0c6d6173612e73746f6b2e6e6c3020170d323031323039313030
3233365a180f39393939313233313233353935395a308190310b300906035504
0613024e4c310b300906035504080c024e423110300e06035504070c0748656c
6d6f6e6431133011060355040a0c0a76616e64657273746f6b31163014060355
040b0c0d6d616e75666163747572696e67311c301a06035504030c1375756964
3a706c656467652e312e322e332e34311730150603550405130e706c65646765
2e312e322e332e343059301306072a8648ce3d020106082a8648ce3d03010703
420004d6b76f7488bd80ae5f28412c7202ef5f98b481e1d9104cf81b66d43e5c
eada73e6a838a9f1351185b6cde20410befed50b3b14692ee1b06abc554060eb
955c54a32e302c30090603551d1304023000301f0603551d23041830168014e4
0393b4c3d3f42a80a47718f6964903011768a3300a06082a8648ce3d04030203
49003046022100d2e6453bb0c300b3258df183fed937c1a24965697f6bb9ef2c
05070631ac17bd022100e2ce9e7b7f745033ad9eff124ee9a6f3b83665ab7d80
bb5688bc031de51e316f
&lt;CODE ENDS&gt;
</sourcecode>
        </section>
        <section anchor="jrccert">
          <name>Registrar Certificate</name>
          <sourcecode>
&lt;CODE BEGINS&gt;
Certificate:
  Data:
      Version: 3 (0x2)
      Serial Number:
        70:56:ea:aa:30:66:d8:82:6a:55:5b:90:88:d4:62:bf:9c:f2:8c:fd
      Signature Algorithm: ecdsa-with-SHA256
      Issuer: C=NL, ST=NB, L=Helmond, O=vanderstok, OU=consultancy,
                                               CN=registrar.stok.nl
      Validity
          Not Before: Dec  9 10:02:36 2020 GMT
          Not After : Dec  9 10:02:36 2021 GMT
      Subject: C=NL, ST=NB, L=Helmond, O=vanderstok, OU=consultancy,
                                                CN=registrar.stok.nl
      Subject Public Key Info:
          Public Key Algorithm: id-ecPublicKey
              Public-Key: (256 bit)
              pub:
                  04:50:7a:c8:49:1a:8c:69:c7:b5:c3:1d:03:09:ed:
                  35:ba:13:f5:88:4c:e6:2b:88:cf:30:18:15:4f:a0:
                  59:b0:20:ec:6b:eb:b9:4e:02:b8:93:40:21:89:8d:
                  a7:89:c7:11:ce:a7:13:39:f5:0e:34:8e:df:0d:92:
                  3e:d0:2d:c7:b7
              ASN1 OID: prime256v1
              NIST CURVE: P-256
      X509v3 extensions:
          X509v3 Subject Key Identifier: 
    08:C2:BF:36:88:7F:79:41:21:85:87:2F:16:A7:AC:A6:EF:B3:D2:B3
          X509v3 Authority Key Identifier: 
              keyid:
    08:C2:BF:36:88:7F:79:41:21:85:87:2F:16:A7:AC:A6:EF:B3:D2:B3

          X509v3 Basic Constraints: critical
              CA:TRUE
          X509v3 Extended Key Usage: 
              CMC Registration Authority, TLS Web Server 
              Authentication, TLS Web Client Authentication
          X509v3 Key Usage: critical
              Digital Signature, Non Repudiation, Key Encipherment, 
              Data Encipherment, Certificate Sign, CRL Sign
  Signature Algorithm: ecdsa-with-SHA256
       30:44:02:20:74:4c:99:00:85:13:b2:f1:bc:fd:f9:02:1a:46:
       fb:17:4c:f8:83:a2:7c:a1:d9:3f:ae:ac:f3:1e:4e:dd:12:c6:
       02:20:11:47:14:db:f5:1a:5e:78:f5:81:b9:42:1c:6e:47:02:
       ab:53:72:70:c5:ba:fb:2d:16:c3:de:9a:a1:82:c3:5f
&lt;CODE ENDS&gt;
</sourcecode>
          <t>Below is the hexadecimal representation which is in (request-)voucher examples referred to as regis-cert-hex:</t>
          <sourcecode>
&lt;CODE BEGINS&gt;
308202753082021ca00302010202147056eaaa3066d8826a555b9088d462bf9c
f28cfd300a06082a8648ce3d0403023073310b3009060355040613024e4c310b
300906035504080c024e423110300e06035504070c0748656c6d6f6e64311330
11060355040a0c0a76616e64657273746f6b31143012060355040b0c0b636f6e
73756c74616e6379311a301806035504030c117265676973747261722e73746f
6b2e6e6c301e170d3230313230393130303233365a170d323131323039313030
3233365a3073310b3009060355040613024e4c310b300906035504080c024e42
3110300e06035504070c0748656c6d6f6e6431133011060355040a0c0a76616e
64657273746f6b31143012060355040b0c0b636f6e73756c74616e6379311a30
1806035504030c117265676973747261722e73746f6b2e6e6c3059301306072a
8648ce3d020106082a8648ce3d03010703420004507ac8491a8c69c7b5c31d03
09ed35ba13f5884ce62b88cf3018154fa059b020ec6bebb94e02b8934021898d
a789c711cea71339f50e348edf0d923ed02dc7b7a3818d30818a301d0603551d
0e0416041408c2bf36887f79412185872f16a7aca6efb3d2b3301f0603551d23
04183016801408c2bf36887f79412185872f16a7aca6efb3d2b3300f0603551d
130101ff040530030101ff30270603551d250420301e06082b0601050507031c
06082b0601050507030106082b06010505070302300e0603551d0f0101ff0404
030201f6300a06082a8648ce3d04030203470030440220744c99008513b2f1bc
fdf9021a46fb174cf883a27ca1d93faeacf31e4edd12c60220114714dbf51a5e
78f581b9421c6e4702ab537270c5bafb2d16c3de9aa182c35f
&lt;CODE ENDS&gt;
</sourcecode>
        </section>
        <section anchor="masa-certificate">
          <name>MASA Certificate</name>
          <sourcecode>
&lt;CODE BEGINS&gt;
Certificate:
  Data:
      Version: 3 (0x2)
      Serial Number:
        14:26:b8:1c:ce:d8:c3:e8:14:05:cb:87:67:0d:be:ef:d5:81:25:b4
      Signature Algorithm: ecdsa-with-SHA256
      Issuer: C=NL, ST=NB, L=Helmond, O=vanderstok, 
          OU=manufacturer, CN=masa.stok.nl

      Validity
          Not Before: Dec  9 10:02:36 2020 GMT
          Not After : Sep  5 10:02:36 2023 GMT
      Subject: C=NL, ST=NB, L=Helmond, O=vanderstok, 
          OU=manufacturer, CN=masa.stok.nl
      Subject Public Key Info:
          Public Key Algorithm: id-ecPublicKey
              Public-Key: (256 bit)
              pub:
                  04:59:80:94:66:14:94:20:30:3c:66:08:85:55:86:
                  db:e7:d4:d1:d7:7a:d2:a3:1a:0c:73:6b:01:0d:02:
                  12:15:d6:1f:f3:6e:c8:d4:84:60:43:3b:21:c5:83:
                  80:1e:fc:e2:37:85:77:97:94:d4:aa:34:b5:b6:c6:
                  ed:f3:17:5c:f1
              ASN1 OID: prime256v1
              NIST CURVE: P-256
      X509v3 extensions:
          X509v3 Subject Key Identifier: 
    E4:03:93:B4:C3:D3:F4:2A:80:A4:77:18:F6:96:49:03:01:17:68:A3
          X509v3 Authority Key Identifier: 
              keyid:
     E4:03:93:B4:C3:D3:F4:2A:80:A4:77:18:F6:96:49:03:01:17:68:A3

          X509v3 Basic Constraints: critical
              CA:TRUE
          X509v3 Extended Key Usage: 
              CMC Registration Authority,
              TLS Web Server Authentication,
              TLS Web Client Authentication
          X509v3 Key Usage: critical
              Digital Signature, Non Repudiation, Key Encipherment, 
                    Data Encipherment, Certificate Sign, CRL Sign
  Signature Algorithm: ecdsa-with-SHA256
       30:44:02:20:2e:c5:f2:24:72:70:20:ea:6e:74:8b:13:93:67:
       8a:e6:fe:fb:8d:56:7f:f5:34:18:a9:ef:a5:0f:c3:99:ca:53:
       02:20:3d:dc:91:d0:e9:6a:69:20:01:fb:e4:20:40:de:7c:7d:
       98:ed:d8:84:53:61:84:a7:f9:13:06:4c:a9:b2:8f:5c
&lt;CODE ENDS&gt;
</sourcecode>
          <t>Below is the hexadecimal representation:</t>
          <sourcecode>
&lt;CODE BEGINS&gt;
3082026d30820214a00302010202141426b81cced8c3e81405cb87670dbeefd5
8125b4300a06082a8648ce3d040302306f310b3009060355040613024e4c310b
300906035504080c024e423110300e06035504070c0748656c6d6f6e64311330
11060355040a0c0a76616e64657273746f6b31153013060355040b0c0c6d616e
7566616374757265723115301306035504030c0c6d6173612e73746f6b2e6e6c
301e170d3230313230393130303233365a170d3233303930353130303233365a
306f310b3009060355040613024e4c310b300906035504080c024e423110300e
06035504070c0748656c6d6f6e6431133011060355040a0c0a76616e64657273
746f6b31153013060355040b0c0c6d616e756661637475726572311530130603
5504030c0c6d6173612e73746f6b2e6e6c3059301306072a8648ce3d02010608
2a8648ce3d0301070342000459809466149420303c6608855586dbe7d4d1d77a
d2a31a0c736b010d021215d61ff36ec8d48460433b21c583801efce237857797
94d4aa34b5b6c6edf3175cf1a3818d30818a301d0603551d0e04160414e40393
b4c3d3f42a80a47718f6964903011768a3301f0603551d23041830168014e403
93b4c3d3f42a80a47718f6964903011768a3300f0603551d130101ff04053003
0101ff30270603551d250420301e06082b0601050507031c06082b0601050507
030106082b06010505070302300e0603551d0f0101ff0404030201f6300a0608
2a8648ce3d040302034700304402202ec5f224727020ea6e748b1393678ae6fe
fb8d567ff53418a9efa50fc399ca5302203ddc91d0e96a692001fbe42040de7c
7d98edd884536184a7f913064ca9b28f5c
&lt;CODE ENDS&gt;
</sourcecode>
        </section>
      </section>
      <section anchor="cose-signed-pledge-voucher-request-pvr">
        <name>COSE-signed Pledge Voucher Request (PVR)</name>
        <t>In this COSE example the voucher request has been signed by the Pledge using the private key of <xref target="pledgepriv"/>, and has been sent to the link-local JRC (Registrar) over CoAPS.</t>
        <artwork><![CDATA[
    POST coaps://[JRC-link-local-address]/b/rv
    Content-Format: TBD3
    Payload: signed_request_voucher
]]></artwork>
        <t>The payload signed_request_voucher is shown as hexadecimal dump (with lf added):</t>
        <sourcecode>
&lt;CODE BEGINS&gt;
d28444a101382ea104582097113db094eee8eae48683e7337875c0372164
be89d023a5f3df52699c0fbfb55902d2a11909c5a60274323032302d3132
2d32335431323a30353a32325a0474323032322d31322d32335431323a30
353a32325a01020750684ca83e27230aff97630cf2c1ec409a0d6e706c65
6467652e312e322e332e340a590279308202753082021ca0030201020214
7056eaaa3066d8826a555b9088d462bf9cf28cfd300a06082a8648ce3d04
03023073310b3009060355040613024e4c310b300906035504080c024e42
3110300e06035504070c0748656c6d6f6e6431133011060355040a0c0a76
616e64657273746f6b31143012060355040b0c0b636f6e73756c74616e63
79311a301806035504030c117265676973747261722e73746f6b2e6e6c30
1e170d3230313230393130303233365a170d323131323039313030323336
5a3073310b3009060355040613024e4c310b300906035504080c024e4231
10300e06035504070c0748656c6d6f6e6431133011060355040a0c0a7661
6e64657273746f6b31143012060355040b0c0b636f6e73756c74616e6379
311a301806035504030c117265676973747261722e73746f6b2e6e6c3059
301306072a8648ce3d020106082a8648ce3d03010703420004507ac8491a
8c69c7b5c31d0309ed35ba13f5884ce62b88cf3018154fa059b020ec6beb
b94e02b8934021898da789c711cea71339f50e348edf0d923ed02dc7b7a3
818d30818a301d0603551d0e0416041408c2bf36887f79412185872f16a7
aca6efb3d2b3301f0603551d2304183016801408c2bf36887f7941218587
2f16a7aca6efb3d2b3300f0603551d130101ff040530030101ff30270603
551d250420301e06082b0601050507031c06082b0601050507030106082b
06010505070302300e0603551d0f0101ff0404030201f6300a06082a8648
ce3d04030203470030440220744c99008513b2f1bcfdf9021a46fb174cf8
83a27ca1d93faeacf31e4edd12c60220114714dbf51a5e78f581b9421c6e
4702ab537270c5bafb2d16c3de9aa182c35f58473045022063766c7bbd1b
339dbc398e764af3563e93b25a69104befe9aac2b3336b8f56e1022100cd
0419559ad960ccaed4dee3f436eca40b7570b25a52eb60332bc1f2991484
e9
&lt;CODE ENDS&gt;
</sourcecode>
        <t>The Pledge uses the "proximity" (SID 2502, enum 2) assertion together with an included proximity-registrar-cert field (SID 2511) to inform
MASA about its proximity to the specific Registrar.
The representiation of signed_voucher_request in CBOR diagnostic format is:</t>
        <sourcecode>
&lt;CODE BEGINS&gt;
Diagnose(signed_request_voucher) =
18([
h'A101382E',     / {"alg": -47} /
{4: h'97113DB094EEE8EAE48683E7337875C0372164B
      E89D023A5F3DF52699C0FBFB5'},
h'&lt;request_voucher&gt;',  / byte string as detailed below /
h'3045022063766C7BBD1B339DBC398E764AF3563E93B
25A69104BEFE9AAC2B3336B8F56E1022100CD0419559A
D960CCAED4DEE3F436ECA40B7570B25A52EB60332BC1F
2991484E9'
])

Diagnose(request_voucher) =
{2501: {2: "2020-12-23T12:05:22Z",
        4: "2022-12-23T12:05:22Z",
        1: 2,
        7: h'684CA83E27230AFF97630CF2C1EC409A',
        13: "pledge.1.2.3.4",
        10: h'&lt;regis-cert-hex&gt;' / byte string as defined in C.2.2 /
}}
&lt;CODE ENDS&gt;
</sourcecode>
      </section>
      <section anchor="cose-signed-registrar-voucher-request-rvr">
        <name>COSE-signed Registrar Voucher Request (RVR)</name>
        <t>In this example the Registrar's voucher request has been signed by the JRC (Registrar) using the private key from
<xref target="jrcpriv"/>.  Contained within this voucher request is the voucher request PVR that was made by the Pledge to JRC.
Note that the RVR uses the HTTPS protocol (not CoAP) and corresponding long URI path names as defined in <xref target="RFC8995"/>.
The Content-Type and Accept headers indicate the constrained voucher format that is defined in the present document.
Because the Pledge used this format in the PVR, the JRC must also use this format in the RVR.</t>
        <artwork><![CDATA[
    POST https://masa.example.com/.well-known/brski/requestvoucher
    Content-Type: application/voucher-cose+cbor
    Accept: application/voucher-cose+cbor
    Body: signed_masa_request_voucher
]]></artwork>
        <t>The payload signed_masa_voucher_request is shown as hexadecimal dump (with lf added):</t>
        <sourcecode>
&lt;CODE BEGINS&gt;
d28444a101382ea1045820e8735bc4b470c3aa6a7aa9aa8ee584c09c1113
1b205efec5d0313bad84c5cd05590414a11909c5a60274323032302d3132
2d32385431303a30333a33355a0474323032322d31322d32385431303a30
333a33355a07501551631f6e0416bd162ba53ea00c2a050d6e706c656467
652e312e322e332e3405587131322d32385431303a30333a33355a075015
51631f6e0416bd162ba53ea00c2a050d6e706c656467652e312e322e332e
3405587131322d32385431303a300000000000000000000000000416bd16
2ba53ea00c2a050d6e706c656467652e312e322e332e3405587131322d32
385431303a09590349d28444a101382ea104582097113db094eee8eae486
83e7337875c0372164be89d023a5f3df52699c0fbfb55902d2a11909c5a6
0274323032302d31322d32385431303a30333a33355a0474323032322d31
322d32385431303a30333a33355a010207501551631f6e0416bd162ba53e
a00c2a050d6e706c656467652e312e322e332e340a590279308202753082
021ca00302010202147056eaaa3066d8826a555b9088d462bf9cf28cfd30
0a06082a8648ce3d0403023073310b3009060355040613024e4c310b3009
06035504080c024e423110300e06035504070c0748656c6d6f6e64311330
11060355040a0c0a76616e64657273746f6b31143012060355040b0c0b63
6f6e73756c74616e6379311a301806035504030c11726567697374726172
2e73746f6b2e6e6c301e170d3230313230393130303233365a170d323131
3230393130303233365a3073310b3009060355040613024e4c310b300906
035504080c024e423110300e06035504070c0748656c6d6f6e6431133011
060355040a0c0a76616e64657273746f6b31143012060355040b0c0b636f
6e73756c74616e6379311a301806035504030c117265676973747261722e
73746f6b2e6e6c3059301306072a8648ce3d020106082a8648ce3d030107
03420004507ac8491a8c69c7b5c31d0309ed35ba13f5884ce62b88cf3018
154fa059b020ec6bebb94e02b8934021898da789c711cea71339f50e348e
df0d923ed02dc7b7a3818d30818a301d0603551d0e0416041408c2bf3688
7f79412185872f16a7aca6efb3d2b3301f0603551d2304183016801408c2
bf36887f79412185872f16a7aca6efb3d2b3300f0603551d130101ff0405
30030101ff30270603551d250420301e06082b0601050507031c06082b06
01050507030106082b06010505070302300e0603551d0f0101ff04040302
01f6300a06082a8648ce3d04030203470030440220744c99008513b2f1bc
fdf9021a46fb174cf883a27ca1d93faeacf31e4edd12c60220114714dbf5
1a5e78f581b9421c6e4702ab537270c5bafb2d16c3de9aa182c35f584730
45022063766c7bbd1b339dbc398e764af3563e93b25a69104befe9aac2b3
336b8f56e1022100cd0419559ad960ccaed4dee3f436eca40b7570b25a52
eb60332bc1f2991484e958473045022100e6b45558c1b806bba23f4ac626
c9bdb6fd354ef4330d8dfb7c529f29cca934c802203c1f2ccbbac89733d1
7ee7775bc2654c5f1cc96afba2741cc31532444aa8fed8
&lt;CODE ENDS&gt;
</sourcecode>
        <t>The representiation of signed_masa_voucher_request in CBOR diagnostic format is:</t>
        <sourcecode>
&lt;CODE BEGINS&gt;
Diagnose(signed_registrar_request-voucher)
18([
h'A101382E',     / {"alg": -47} /
h'E8735BC4B470C3AA6A7AA9AA8EE584C09C11131B205EFEC5D0313BAD84
C5CD05'},
h'&lt;registrar_request_voucher&gt;', / byte string as detailed below /
h'3045022100E6B45558C1B806BBA23F4AC626C9BDB6FD354EF4330D8DFB
7C529F29CCA934C802203C1F2CCBBAC89733D17EE7775BC2654C5F1CC96A
FBA2741CC31532444AA8FED8'
])

Diagnose(registrar_request_voucher)
{2501:
    {2: "2020-12-28T10:03:35Z",
     4: "2022-12-28T10:03:35Z",
     7: h'1551631F6E0416BD162BA53EA00C2A05',
    13: "pledge.1.2.3.4",
     5: h'31322D32385431303A30333A33355A07501551631F6E0416BD
          162BA53EA00C2A050D6E706C656467652E312E322E332E3405
          587131322D32385431303A3000000000000000000000000004
          16BD162BA53EA00C2A050D6E706C656467652E312E322E332E
          3405587131322D32385431303A', / idevid-issuer /
     9: h'&lt;prior-pvr&gt;'  / prior-signed-voucher-request = PVR /
     }
}
&lt;CODE ENDS&gt;
</sourcecode>
      </section>
      <section anchor="cose-signed-voucher-from-masa">
        <name>COSE-signed Voucher from MASA</name>
        <t>The resulting voucher is created by the MASA and returned via the JRC to the
Pledge.  It is signed by the MASA's private key (see <xref target="masapriv"/>) and can be
verified by the Pledge using the MASA's public key that it stores.</t>
        <t>Below is the binary signed_voucher, encoded in hexadecimal (with lf added):</t>
        <sourcecode>
&lt;CODE BEGINS&gt;
d28444a101382ea104582039920a34ee92d3148ab3a729f58611193270c9
029f7784daf112614b19445d5158cfa1190993a70274323032302d31322d
32335431353a30333a31325a0474323032302d31322d32335431353a3233
3a31325a010007506508e06b2959d5089d7a3169ea889a490b6e706c6564
67652e312e322e332e340858753073310b3009060355040613024e4c310b
300906035504080c024e423110300e06035504070c0748656c6d6f6e6431
133011060355040a0c0a76616e64657273746f6b31143012060355040b0c
0b636f6e73756c74616e6379311a301806035504030c1172656769737472
61722e73746f6b2e6e6c03f458473045022022515d96cd12224ee5d3ac67
3237163bba24ad84815699285d9618f463ee73fa022100a6bff9d8585c1c
9256371ece94da3d26264a5dfec0a354fe7b3aef58344c512f
&lt;CODE ENDS&gt;
</sourcecode>
        <t>The representiation of signed_voucher in CBOR diagnostic format is:</t>
        <sourcecode>
&lt;CODE BEGINS&gt;
Diagnose(signed_voucher) =
18([
h'A101382E',     / {"alg": -47} /
{4: h'39920A34EE92D3148AB3A729F58611193270C9029F7784DAF112614B194
45D51'},
h'&lt;voucher&gt;',    / byte string as detailed below /
h'3045022022515D96CD12224EE5D3AC673237163BBA24AD84815699285D9618F
463EE73FA022100A6BFF9D8585C1C9256371ECE94DA3D26264A5DFEC0A354FE7B
3AEF58344C512F'
])

Diagnose(voucher) = 
{2451: 
   {2: "2020-12-23T15:03:12Z",
    4: "2020-12-23T15:23:12Z",
    1: 0, 
    7: h'6508E06B2959D5089D7A3169EA889A49',
   11: "pledge.1.2.3.4", 
    8: h'&lt;regis-cert-hex&gt;', / as detailed in C.2.2 /
    3: false}
}
&lt;CODE ENDS&gt;
</sourcecode>
        <t>In above, regis-cert-hex represents the hexadecimal encoding of the Registrar certificate of <xref target="jrccert"/>.</t>
      </section>
    </section>
    <section anchor="appendix-gencerts">
      <name>Generating Certificates with OpenSSL</name>
      <t>This informative appendix shows an example of a Bash shell script to generate test certificates for the Pledge IDevID, the Registrar and the MASA.
This shell script cannot be run stand-alone because it depends on particular input files which are not included in this appendix. Nevertheless,
this example script may provide guidance on how OpenSSL can be configured for generating Constrained BRSKI certificates.</t>
      <t>Note: the *-comb.crt certificate files combine the certificate with the private key. These are generated to be used by libcoap for DTLS connection establishment.</t>
      <sourcecode>
&lt;CODE BEGINS&gt;
#!/bin/bash
#try-cert.sh
export dir=./brski/intermediate
export cadir=./brski
export cnfdir=./conf
export format=pem
export default_crl_days=30
sn=8

DevID=pledge.1.2.3.4
serialNumber="serialNumber=$DevID"
export hwType=1.3.6.1.4.1.6715.10.1
export hwSerialNum=01020304 # Some hex
export subjectAltName="otherName:1.3.6.1.5.5.7.8.4;SEQ:hmodname"
echo  $hwType - $hwSerialNum
echo $serialNumber
OPENSSL_BIN="openssl"

# remove all files
rm -r ./brski/*
#
# initialize file structure
# root level
cd $cadir
mkdir certs crl csr newcerts private
chmod 700 private
touch index.txt
touch serial
echo 11223344556600 &gt;serial
echo 1000 &gt; crlnumber
# intermediate level
mkdir intermediate
cd intermediate
mkdir certs crl csr newcerts private
chmod 700 private
touch index.txt
echo 11223344556600 &gt;serial
echo 1000 &gt; crlnumber
cd ../..



# file structure is cleaned start filling

echo "#############################"
echo "create registrar keys and certificates "
echo "#############################"


echo "create root registrar certificate using ecdsa with sha 256 key"
$OPENSSL_BIN ecparam -name prime256v1 -genkey \
   -noout -out $cadir/private/ca-regis.key

$OPENSSL_BIN req -new -x509 \
 -config $cnfdir/openssl-regis.cnf \
 -key $cadir/private/ca-regis.key \
 -out $cadir/certs/ca-regis.crt \
 -extensions v3_ca\
 -days 365 \
 -subj "/C=NL/ST=NB/L=Helmond/O=vanderstok/OU=consultancy \
/CN=registrar.stok.nl"

# Combine authority certificate and key
echo "Combine authority certificate and key"
$OPENSSL_BIN pkcs12 -passin pass:watnietWT -passout pass:watnietWT\
   -inkey $cadir/private/ca-regis.key \
   -in $cadir/certs/ca-regis.crt -export \
   -out $cadir/certs/ca-regis-comb.pfx

# converteer authority pkcs12 file to pem
echo "converteer authority pkcs12 file to pem"
$OPENSSL_BIN pkcs12 -passin pass:watnietWT -passout pass:watnietWT\
   -in $cadir/certs/ca-regis-comb.pfx \
   -out $cadir/certs/ca-regis-comb.crt -nodes

#show certificate in registrar combined certificate
$OPENSSL_BIN  x509 -in $cadir/certs/ca-regis-comb.crt -text

#
# Certificate Authority for MASA
#
echo "#############################"
echo "create MASA keys and certificates "
echo "#############################"

echo "create root MASA certificate using ecdsa with sha 256 key"
$OPENSSL_BIN ecparam -name prime256v1 -genkey -noout \
   -out $cadir/private/ca-masa.key

$OPENSSL_BIN req -new -x509 \
 -config $cnfdir/openssl-masa.cnf \
 -days 1000 -key $cadir/private/ca-masa.key \
  -out $cadir/certs/ca-masa.crt \
 -extensions v3_ca\
 -subj "/C=NL/ST=NB/L=Helmond/O=vanderstok/OU=manufacturer\
/CN=masa.stok.nl"

# Combine authority certificate and key
echo "Combine authority certificate and key for masa"
$OPENSSL_BIN pkcs12 -passin pass:watnietWT -passout pass:watnietWT\
   -inkey $cadir/private/ca-masa.key \
   -in $cadir/certs/ca-masa.crt -export \
   -out $cadir/certs/ca-masa-comb.pfx

# converteer authority pkcs12 file to pem for masa
echo "converteer authority pkcs12 file to pem for masa"
$OPENSSL_BIN pkcs12 -passin pass:watnietWT -passout pass:watnietWT\
   -in $cadir/certs/ca-masa-comb.pfx \
   -out $cadir/certs/ca-masa-comb.crt -nodes

#show certificate in pledge combined certificate
$OPENSSL_BIN  x509 -in $cadir/certs/ca-masa-comb.crt -text


#
# Certificate for Pledge derived from MASA certificate
#
echo "#############################"
echo "create pledge keys and certificates "
echo "#############################"


# Pledge derived Certificate

echo "create pledge derived certificate using ecdsa with sha 256 key"
$OPENSSL_BIN ecparam -name prime256v1 -genkey -noout \
   -out $dir/private/pledge.key

echo "create pledge certificate request"
$OPENSSL_BIN req -nodes -new -sha256 \
   -key $dir/private/pledge.key -out $dir/csr/pledge.csr \
  -subj "/C=NL/ST=NB/L=Helmond/O=vanderstok/OU=manufacturing\
 /CN=uuid:$DevID/$serialNumber"

# Sign pledge derived Certificate
echo "sign pledge derived certificate "
$OPENSSL_BIN ca -config $cnfdir/openssl-pledge.cnf \
 -extensions 8021ar_idevid\
 -days 365 -in $dir/csr/pledge.csr \
 -out $dir/certs/pledge.crt 

# Add pledge key and pledge certificate to pkcs12 file
echo "Add derived pledge key and derived pledge \
 certificate to pkcs12 file"
$OPENSSL_BIN pkcs12  -passin pass:watnietWT -passout pass:watnietWT\
   -inkey $dir/private/pledge.key \
   -in $dir/certs/pledge.crt -export \
   -out $dir/certs/pledge-comb.pfx

# converteer pledge pkcs12 file to pem
echo "converteer pledge pkcs12 file to pem"
$OPENSSL_BIN pkcs12 -passin pass:watnietWT -passout pass:watnietWT\
   -in $dir/certs/pledge-comb.pfx \
   -out $dir/certs/pledge-comb.crt -nodes

#show certificate in pledge-comb.crt
$OPENSSL_BIN  x509 -in $dir/certs/pledge-comb.crt -text

#show private key in pledge-comb.crt
$OPENSSL_BIN ecparam -name prime256v1\
  -in $dir/certs/pledge-comb.crt -text

&lt;CODE ENDS&gt;
</sourcecode>
    </section>
    <section anchor="appendix-pledge-profiles">
      <name>Pledge Device Class Profiles</name>
      <t>This specification allows implementers to select between various functional options for the Pledge,
yielding different code size footprints and different requirements on Pledge hardware.
Thus for each product an optimal trade-off between functionality, development/maintenance cost and hardware cost can be made.</t>
      <t>This appendix illustrates different selection outcomes by means of defining different example "profiles" of constrained Pledges. In the following
subsections, these profiles are defined and a comparison is provided.</t>
      <section anchor="minimal-pledge">
        <name>Minimal Pledge</name>
        <t>The Minimal Pledge profile (Min) aims to reduce code size and hardware cost to a minimum. This comes with some severe functional restrictions, in particular:</t>
        <ul spacing="normal">
          <li>No support for EST re-enrollment: whenever this would be needed, a factory reset followed by a new bootstrap process is required.</li>
          <li>No support for change of Registrar: for this case, a factory reset followed by a new bootstrap process is required.</li>
        </ul>
        <t>This profile would be appropriate for single-use devices which must be replaced rather than re-deployed.
That might  include medical devices, but also sensors used during construction, such as concrete temperature  sensors.</t>
      </section>
      <section anchor="typical-pledge">
        <name>Typical Pledge</name>
        <t>The Typical Pledge profile (Typ) aims to support a typical Constrained BRSKI feature set including EST re-enrollment support and Registrar changes.</t>
      </section>
      <section anchor="full-featured-pledge">
        <name>Full-featured Pledge</name>
        <t>The Full-featured Pledge profile (Full) illustrates a Pledge category that supports multiple bootstrap methods, hardware real-time clock, BRSKI/EST resource discovery, and
CSR Attributes request/response. It also supports most of the optional features defined in this specification.</t>
      </section>
      <section anchor="comparison-chart-of-pledge-classes">
        <name>Comparison Chart of Pledge Classes</name>
        <t>The below table specifies the functions implemented in the three example Pledge classes Min, Typ and Full.</t>
        <table>
          <thead>
            <tr>
              <th align="left">Function |====================| Profiles -&gt;</th>
              <th align="center">Min</th>
              <th align="center">Typ</th>
              <th align="center">Full</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <strong>General</strong></td>
              <td align="center">===</td>
              <td align="center">===</td>
              <td align="center">====</td>
            </tr>
            <tr>
              <td align="left">Support Constrained BRSKI bootstrap</td>
              <td align="center">Y</td>
              <td align="center">Y</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">Support other bootstrap method(s)</td>
              <td align="center">-</td>
              <td align="center">-</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">Real-time clock and cert time checks</td>
              <td align="center">-</td>
              <td align="center">-</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">
                <strong>Constrained BRSKI</strong></td>
              <td align="center">===</td>
              <td align="center">===</td>
              <td align="center">====</td>
            </tr>
            <tr>
              <td align="left">Discovery for rt=brski*</td>
              <td align="center">-</td>
              <td align="center">-</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">Support pinned Registrar public key (RPK)</td>
              <td align="center">Y</td>
              <td align="center">-</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">Support pinned Registrar certificate</td>
              <td align="center">-</td>
              <td align="center">Y</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">Support pinned Domain CA</td>
              <td align="center">-</td>
              <td align="center">Y</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">
                <strong>Constrained EST</strong></td>
              <td align="center">===</td>
              <td align="center">===</td>
              <td align="center">====</td>
            </tr>
            <tr>
              <td align="left">Discovery for rt=ace.est*</td>
              <td align="center">-</td>
              <td align="center">-</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">GET /att and response parsing</td>
              <td align="center">-</td>
              <td align="center">-</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">GET /crts format 281 (multiple CA certs)</td>
              <td align="center">-</td>
              <td align="center">-</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">GET /crts only format TBD287 (one CA cert only)</td>
              <td align="center">Y</td>
              <td align="center">Y</td>
              <td align="center">-</td>
            </tr>
            <tr>
              <td align="left">ETag handling support for GET /crts</td>
              <td align="center">-</td>
              <td align="center">Y</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">Re-enrollment supported</td>
              <td align="center">- (1)</td>
              <td align="center">Y</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">6.6.1 optimized procedure</td>
              <td align="center">Y</td>
              <td align="center">Y</td>
              <td align="center">-</td>
            </tr>
            <tr>
              <td align="left">Pro-active cert re-enrollment at own initiative</td>
              <td align="center">N/A</td>
              <td align="center">-</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">Periodic trust anchor retrieval GET /crts</td>
              <td align="center">- (1)</td>
              <td align="center">Y</td>
              <td align="center">Y</td>
            </tr>
            <tr>
              <td align="left">Supports change of Registrar identity</td>
              <td align="center">- (1)</td>
              <td align="center">Y</td>
              <td align="center">Y</td>
            </tr>
          </tbody>
        </table>
        <t>Notes: (1) is possible only by doing a factory-reset followed by a new bootstrap procedure.</t>
      </section>
    </section>
    <section anchor="contributors" numbered="false" toc="include" removeInRFC="false">
      <name>Contributors</name>
      <contact initials="R." surname="Housley" fullname="Russ Housley">
        <organization/>
        <address>
          <email>housley@vigilsec.com</email>
        </address>
      </contact>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAPj5TmIAA9y9+3Lb2JU3+r+q9A745DpjMiGpi2XZVi4TWZK7lfZFI8nd
mZrk6wJJiEIEAhwAlMxxe57lPMt5srOue68NgLLcyTd16jhVaYoE9nXttdf1
t4bD4eZGndZZchgdF3lVl3GaJ9PodVHU+Mdikeaz6CKZF3USXSaTZZlEPySr
6Cy/LmN4YDmp8ave64vLH876mxvxeFwmd4228LfNjWkxyeM59DMt4+t6mCb1
9TDO03k8nPiHh3fFcnKTlMPdF5sbmxtVHefTn+OsyOE96C3BL9NFSX9U9d7O
zqudPei1TOJDGFOdlHlSb27czw4jajr6qShvcQbflcVysblxe+8fG57gODY3
JnF9GFX1FD7BOJK8Wlba13IxjesE/nz57OBgEL189eo5DmCRHkbw70k0ifNo
WSVRXJbxKuql11GcZdEqqfpRUUY3cXUTwVygoSiqi8kh/oKfq6Ksy+S6OqRG
psl1vMzqCh5xD6zm/Dv9DfNb1jdFeYgfh1Gaww/vRtFFOrmJy2lV5PgKL+07
/C7JGr8VJazHJaxkks1hxJfFdX0PS0aLQ/0l8zjNDqP5pPwtbsufKn12NIlN
p+ej6A7enyZldFkXt77b8wSWtPUbdXuHTZUVfBXh8sJE43yyMp3iT/jLn8bj
G/xmlGdhlz/E80Wcx7dpZTqM86Jq/ELdHafVpIguV1WdzO3UFrf87J8m+MBo
UsxNJ6ej6CT9u5nPaXVbuK+o3bPiygyfxujaTuDp0RSe/lNa1M2niKrqMh0v
a9rBKBpKJxfLqoq+L5ZVltB6uPZu+Ls/3aWzNKuSiY42L8p5XKd3CTTzJIou
3hzv7e6+ojbh87ODly/18/7uq2fu897ujn5+vvfSfz54vqefD3b2dvzngwP3
eXfvuX5+sffcPfPilf+MR8N93t/3nw98vy9f7b/yn1+5Nl/tPNsFskvxqGbD
CtlLWq/8j3s807PhyYjYxaQok2Ex/nsyqd3TjUfiSTKcjItyeJ+Mh0BaSU6d
hU2s4nxGT3X8VqXT5rdVMiyvJy93n++N02rIXO/hZ+JsVoVP0LiKeDFMqq53
Pz3feRV+XWfVcAr/t8s7mSZJ8nJnb7h7dHHI1FLH5SwB1rV1U9eLw+1t4pV4
6Ef47AjIdvs6zafA2Sr32zY0MYImhsg5Rzf1PNuSxvgK2Do7PT2N5CHl9yfJ
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

-->

</rfc>
