<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.19 (Ruby 3.1.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lamps-rfc7030-csrattrs-13" category="std" consensus="true" submissionType="IETF" updates="7030" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.20.1 -->
  <front>
    <title abbrev="CSRAttrs">Clarification and enhancement of RFC7030 CSR Attributes definition</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-rfc7030-csrattrs-13"/>
    <author initials="M." surname="Richardson" fullname="Michael Richardson" role="editor">
      <organization>Sandelman Software Works</organization>
      <address>
        <email>mcr+ietf@sandelman.ca</email>
      </address>
    </author>
    <author initials="O." surname="Friel" fullname="Owen Friel">
      <organization>Cisco</organization>
      <address>
        <email>ofriel@cisco.com</email>
      </address>
    </author>
    <author initials="D." surname="von Oheimb" fullname="Dr. David von Oheimb">
      <organization>Siemens</organization>
      <address>
        <email>dev@ddvo.net</email>
      </address>
    </author>
    <author initials="D." surname="Harkins" fullname="Dan Harkins">
      <organization>The Industrial Lounge</organization>
      <address>
        <email>dharkins@lounge.org</email>
      </address>
    </author>
    <date year="2024" month="November" day="06"/>
    <area>Internet</area>
    <workgroup>LAMPS Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 84?>

<t>The Enrollment over Secure Transport (EST, RFC7030) is ambiguous in its specification of the CSR Attributes Response. This has resulted in implementation challenges and implementor confusion.</t>
      <t>This document updates RFC7030 (EST) and clarifies
how the CSR Attributes Response can be used by an EST server to specify
both CSR attribute OIDs and also CSR attribute values,
in particular X.509 extension values,
that the server expects the client to include in subsequent CSR request.</t>
      <t>Moreover, it provides new convenient and straightforward approach: using
a template for CSR contents that may be partially filled in by the server.
This also allows specifying a subject Distinguished Name (DN).</t>
    </abstract>
  </front>
  <middle>
    <?line 98?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Enrollment over Secure Transport <xref target="RFC7030"/> (EST) has been used in a wide variety of applications.
In particular, <xref target="RFC8994"/> and <xref target="RFC8995"/> describe a way to use it in order to build out an autonomic control plane (ACP) <xref target="RFC8368"/>.</t>
      <t>The ACP requires that each node be given a very specific subjectAltName.
In the ACP specification, the solution was for the EST server to use
section 2.6 of <xref target="RFC7030"/> to convey to the EST client
the actual subjectAltName that will end up in its certificate.</t>
      <t>As a result of some implementation challenges, it came to light that this particular way of using the CSR attributes was not universally agreed upon, and it was suggested that it went contrary to section 2.6.</t>
      <t>Section 2.6 says that the CSR attributes "can provide additional
descriptive information that the EST server cannot access itself".
This is extended to describe how the EST server can provide values that it demands to use.</t>
      <t>After significant discussion, it has been determined that
<xref section="4.5" sectionFormat="of" target="RFC7030"/> specification is sufficiently difficult
to read and ambiguous to interpret that clarification is needed.</t>
      <t>This document motivates the different use cases, and provides additional worked out examples.</t>
      <t>Also, section 4.5.2 is extended to clarify the use of the existing ASN.1 syntax <xref target="X.680"/><xref target="X.690"/>.
This covers all uses and is fully backward compatible with existing use.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</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 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.
<?line -6?>
      </t>
    </section>
    <section anchor="csr-attributes-handling">
      <name>CSR Attributes Handling</name>
      <section anchor="extensions-to-rfc-7030-section-26">
        <name>Extensions to RFC 7030 section 2.6</name>
        <t>Replace the second paragraph with the following text:</t>
        <artwork><![CDATA[
   These attributes can provide additional descriptive information that
   the EST server cannot access itself, such as the Media Access Control
   (MAC) address of an interface of the EST client. The EST server can
   also provide concrete values that it tells the client to include in
   the CSR, such as a specific X.509 Subject Alternative Name extension.
   Moreover, these attributes can indicate the type of the included
   public key or which crypto algorithms to use for the self-signature,
   such as a specific elliptic curve or a specific hash function that
   the client is expected to use when generating the CSR.
]]></artwork>
      </section>
      <section anchor="csrattrs">
        <name>Extensions to RFC 7030 section 4.5.2</name>
        <t>The ASN.1 syntax for CSR Attributes as defined in EST <xref section="4.5.2" sectionFormat="comma" target="RFC7030"/> is as follows:</t>
        <artwork><![CDATA[
   CsrAttrs ::= SEQUENCE SIZE (0..MAX) OF AttrOrOID

   AttrOrOID ::= CHOICE (oid OBJECT IDENTIFIER, attribute Attribute }

   Attribute { ATTRIBUTE:IOSet } ::= SEQUENCE {
        type   ATTRIBUTE.&id({IOSet}),
        values SET SIZE(1..MAX) OF ATTRIBUTE.&Type({IOSet}{@type}) }
]]></artwork>
        <t>This remains unchanged, such that bits-on-the-wire compatibility is maintained.</t>
        <t>Key parts that were unclear were which OID to use in the 'type' field and
that the 'values' field can contain an entire sequence of X.509 extensions.</t>
        <t>The OID to use for such attributes in the 'type' field MUST be <tt>id-ExtensionReq</tt>,
which has the value 1.2.840.113549.1.9.14.
Note that is the same as <tt>pkcs-9-at-extensionRequest</tt> defined in PKCS#9 <xref target="RFC2985"/>.
There MUST be only one such attribute.</t>
        <t>The <tt>values</tt> field of this attribute MUST contain a set with exactly one element,
and this element MUST be of type <tt>Extensions</tt>, as per <xref section="4.1" sectionFormat="of" target="RFC5280"/>:</t>
        <artwork><![CDATA[
   Extensions  ::=  SEQUENCE SIZE (1..MAX) OF Extension

   Extension  ::=  SEQUENCE  {
        extnID      OBJECT IDENTIFIER,
        critical    BOOLEAN DEFAULT FALSE,
        extnValue   OCTET STRING
                    -- contains the DER encoding of an ASN.1 value
                    -- corresponding to the extension type identified
                    -- by extnID
        }
]]></artwork>
        <t>An Extension comprises the OID of the specific X.509 extension (extnID),
optionally the 'critical' bit, and the extension value (extnValue).</t>
        <t>An Extensions structure, which is a sequence of elements of type Extension,
MUST NOT include more than one element with a particular extnID.</t>
        <t>With this understanding, the needs of <xref target="RFC8994"/> and <xref target="RFC8995"/> are satisfied
with no change to the bits on the wire.</t>
      </section>
      <section anchor="csrtemplate">
        <name>Use of CSR templates</name>
        <t>Alternatively to the piecemeal inclusion of CSR attributes
specified in <xref section="4.5.2" sectionFormat="comma" target="RFC7030"/> with its limitations and ambiguities,
<xref section="B" sectionFormat="of" target="RFC8295"/> describes an approach using a CSR template.
An entire CSR object is returned with various fields filled out,
and other fields waiting to be filled in.
In that approach, a pKCS7PDU attribute includes a Full PKI Data content type <xref target="RFC5272"/>
and that in turn includes a CSR or CRMF formatted request
(for details see <xref target="RFC6268"/> Sections 5 or 9, respectively).<br/>
One drawback to that approach, particularly for the CSR, is that some useless
fields have to be included; specifically, the <tt>signature</tt> field on
the CSR is faked with an empty bit string.</t>
        <t>A similar method has been defined in CMP Updates <xref target="RFC9480"/>
and the Lightweight CMP profile <xref section="4.3.3" sectionFormat="comma" target="RFC9483"/>,
using a CSR template as defined for CRMF <xref target="RFC4211"/>.
Like the approach mentioned before,
this method does not properly deal with absent RDNs (encoding them as empty strings),
absent <tt>subjectPublicKey</tt> fields (encoding them as empty <tt>BIT STRING</tt>),
and absent X.509v3 extension values (encoding them as empty <tt>OCTET STRING</tt>),
which may cause issues with strict ASN.1 parsing and decoding.</t>
        <t>We avoid these drawbacks as follows.</t>
        <t>This specification defines a new Certificate Request Information Template attribute
for CsrAttrs (as given in <xref target="csrattrs"/>) that is essentially
a partially filled in PKCS#10 CSR minus the signature wrapper:</t>
        <artwork><![CDATA[
  CertificationRequestInfoTemplate ::= SEQUENCE {
      version       INTEGER { v1(0) } (v1, ... ),
      subject       NameTemplate OPTIONAL,
      subjectPKInfo [0] SubjectPublicKeyInfoTemplate
                                {{ PKInfoAlgorithms }} OPTIONAL,
      attributes    [1] Attributes{{ CRIAttributes }}
  }
]]></artwork>
        <t><xref target="app-asn1-module"/> contains all detail.</t>
        <t>The CertificationRequestInfoTemplate closely resembles the CertificationRequestInfo
from <xref section="5" sectionFormat="comma" target="RFC5912"/>:</t>
        <artwork><![CDATA[
  CertificationRequestInfo ::= SEQUENCE {
    version       INTEGER { v1(0) } (v1,...),
    subject       Name,
    subjectPKInfo SubjectPublicKeyInfo{{ PKInfoAlgorithms }},
    attributes    [0] Attributes{{ CRIAttributes }}
  }
]]></artwork>
        <t>with the following differences.</t>
        <ul spacing="normal">
          <li>
            <t>The <tt>subject</tt> field has been made <tt>OPTIONAL</tt>.
It MUST be present if the server places any requirements on the RDNs of the subject name;
otherwise it MUST be absent.</t>
          </li>
          <li>
            <t>RelativeDistinguishedNames (RDNs) in the <tt>subject</tt> fields are allowed to have no value,
which has been achieved by adding <tt>OPTIONAL</tt> to the <tt>value</tt> field of <tt>SingleAttributeTemplate</tt>.
If the client is expected to provide an RDN of a certain type such as <tt>commonName</tt>,
the respective RDN MUST be present in the <tt>subject</tt> field; otherwise it MUST be absent.
If the RDN value is present, this means that the client is required to use the given value
for the RDN, otherwise the client is expected to fill in the value.</t>
          </li>
        </ul>
        <artwork><![CDATA[
  SingleAttributeTemplate {ATTRIBUTE:AttrSet} ::= SEQUENCE {
      type      ATTRIBUTE.&id({AttrSet}),
      value     ATTRIBUTE.&Type({AttrSet}{@type}) OPTIONAL
  }

]]></artwork>
        <ul spacing="normal">
          <li>
            <t>The <tt>subjectPKInfo</tt> field has been made <tt>OPTIONAL</tt>.
The field MUST be absent if the server places no requirements on the key.
Otherwise it MUST be present, and the <tt>algorithm</tt> field
specifies the type of the key pair the client is expected to use.</t>
          </li>
          <li>
            <t>The <tt>subjectPublicKey</tt> field contained in <tt>SubjectPublicKeyInfoTemplate</tt>
has been made <tt>OPTIONAL</tt> because usually it is not needed.
In case the server requires use of an RSA key and needs to specify its size, the field
MUST be present and contain a dummy public key value of the desired RSA modulus length.
Otherwise, the <tt>subjectPublicKey</tt> MUST be absent.</t>
          </li>
        </ul>
        <artwork><![CDATA[
  SubjectPublicKeyInfoTemplate{PUBLIC-KEY:IOSet} ::= SEQUENCE {
      algorithm        AlgorithmIdentifier{PUBLIC-KEY, {IOSet}},
      subjectPublicKey BIT STRING OPTIONAL
  }
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>A new OID <tt>id-extensionReqTemplate</tt> and the related <tt>ExtensionTemplate</tt> structure
is defined where the <tt>extnValue</tt> field has been made <tt>OPTIONAL</tt>.
This is only needed to enable specifying partial extensions with values to be filled in
by the client; otherwise the <tt>id-ExtensionReq</tt> OID and the respective value of type
<tt>ExtensionReq</tt> MUST be used.<br/>
For each extension of type <tt>Extension</tt> or <tt>ExtensionTemplate</tt> provided by the server,
the client is expected to include an extension of the type given by the <tt>extnID</tt>.
If the <tt>critical</tt> field is present, the client is expected to use the given value.
If the <tt>extnValue</tt> is present (which is always the case when type <tt>Extension</tt> is used),
the client is required to use the given extension value.
Otherwise it is expected to fill in the extension value.<br/>
If the subjectAltName extension contains the <tt>directoryName</tt> choice containing the <tt>NULL-DN</tt>
(i.e., an empty sequence of RDNs) or the <tt>iPAddress</tt> choice with an empty <tt>OCTET STRING</tt>,
this means that the client is expected to fill in the respective <tt>GeneralName</tt> value.</t>
          </li>
        </ul>
        <artwork><![CDATA[
  ExtensionTemplate {EXTENSION:ExtensionSet} ::= SEQUENCE {
     extnID      EXTENSION.&id({ExtensionSet}),
     critical    BOOLEAN DEFAULT FALSE,
     extnValue   OCTET STRING (CONTAINING
                 EXTENSION.&ExtnType({ExtensionSet}{@extnID})) OPTIONAL
                 --  contains the DER encoding of the ASN.1 value
                 --  corresponding to the extension type identified
                 --  by extnID when present
  }
]]></artwork>
        <t>The <tt>version</tt> field of the <tt>CertificationRequestInfoTemplate</tt> MUST contain v1 (0).</t>
        <t>The <tt>attributes</tt> field MUST NOT contain multiple <tt>at-extensionReqTemplate</tt> attributes
and MUST NOT contain both <tt>extensionRequest</tt> and <tt>at-extensionReqTemplate</tt> attributes.</t>
        <!--
Each of the attributes has a single attribute value instance in the
values set.  Even though the syntax is defined as a set, there MUST
be exactly one instance of AttributeValue present.
-->

<t>Suppose the server requires that the CSR will contain:</t>
        <ul spacing="normal">
          <li>
            <t>the subject field with a common name to be filled in by the EE and
two organizational unit fields with given values "myDept" and "myGroup",</t>
          </li>
          <li>
            <t>the publicKey field contains an
Elliptic Curve Cryptography (ECC) key on curve secp256r1,</t>
          </li>
          <li>
            <t>the subjectAltName extension
with DNS name "www.myServer.com" and an empty IP address to be filled in,</t>
          </li>
          <li>
            <t>the keyUsage extension marked critical
with the value digitalSignature and keyAgreement, and</t>
          </li>
          <li>
            <t>the extKeyUsage extension with value to be filled in by the EE.</t>
          </li>
        </ul>
        <t>Then the <tt>CertificationRequestInfo</tt> structure constructed by the server
will be as follows:</t>
        <artwork><![CDATA[
SEQUENCE {
  INTEGER 0
  SEQUENCE {
    SET {
      SEQUENCE {
        OBJECT IDENTIFIER commonName (2 5 4 3)
        }
      }
    SET {
      SEQUENCE {
        OBJECT IDENTIFIER organizationalUnitName (2 5 4 11)
        UTF8String "myDept"
        }
      }
    SET {
      SEQUENCE {
        OBJECT IDENTIFIER organizationalUnitName (2 5 4 11)
        UTF8String "myGroup"
        }
      }
    }
  [0] {
    SEQUENCE {
      OBJECT IDENTIFIER ecPublicKey (1 2 840 10045 2 1)
      OBJECT IDENTIFIER secp256r1 (1 2 840 10045 3 1 7)
      }
    }
  [1] {
    SEQUENCE {
      OBJECT IDENTIFIER id-extensionReqTemplate
                        (1 2 840 113549 1 9 TBD3)
      SET {
        SEQUENCE {
          SEQUENCE {
            OBJECT IDENTIFIER subjectAltName (2 5 29 17)
            OCTET STRING, encapsulates {
              SEQUENCE {
                [2] "www.myServer.com"
                [7] ""
                }
              }
            }
          SEQUENCE {
            OBJECT IDENTIFIER keyUsage (2 5 29 15)
            BOOLEAN TRUE
            OCTET STRING, encapsulates {
              BIT STRING 3 unused bits
                "10001"B
              }
            }
          SEQUENCE {
            OBJECT IDENTIFIER extKeyUsage (2 5 29 37)
            }
          }
        }
      }
    }
  }
]]></artwork>
      </section>
    </section>
    <section anchor="co-existence-with-existing-implementations">
      <name>Co-existence with existing implementations</name>
      <t>Legacy servers MAY continue to use the <xref target="RFC7030"/> style piecemeal attribute/value pairs,
and MAY also include the template style described in {#csrtemplate}.
Clients which understand both MUST use the template only, and
ignore all other CSRattrs elements.
Older clients will ignore the new CertificationRequestInfoTemplate element.</t>
    </section>
    <section anchor="examples">
      <name>Examples</name>
      <t>Each example has a high-level (English) explanation of what is expected.
Some mapping back to the Attribute and Extension definitions above are included.
The base64 DER encoding is then shown.
The output of "dumpasn1" is then provided to detail what the contents are.</t>
      <section anchor="acpNodeName">
        <name>RFC8994/ACP subjectAltName with specific otherName</name>
        <t>A single subjectAltName extension is specified in a single Extension attribute.
This is what might be created by an <xref target="RFC8995"/> Registrar that is asking for <xref target="RFC8994"/> AcpNodeName format otherNames.</t>
        <section anchor="base64-encoded-example">
          <name>Base64 encoded example</name>
          <t>The Base64:</t>
          <sourcecode type="base64" markers="false"><![CDATA[
MGQwYgYJKoZIhvcNAQkOMVUwUwYDVR0RAQH/BEmgRzBFBggr
BgEFBQcICgw5cmZjODk5NCtmZDczOWZjMjNjMzQ0MDExMjIz
MzQ0NTUwMDAwMDAwMCtAYWNwLmV4YW1wbGUuY29t
]]></sourcecode>
        </section>
        <section anchor="asn1-dump-output">
          <name>ASN.1 DUMP output</name>
          <t>There is a single subjectAltName Extension with an Attribute with Extension type.</t>
          <artwork><![CDATA[
    <30 64>
  0 100: SEQUENCE {
    <30 62>
  2  98:   SEQUENCE {
    <06 09>
  4   9:     OBJECT IDENTIFIER extensionRequest (1 2 840 113549 1 9 14)
       :       (PKCS #9 via CRMF)
    <31 55>
 15  85:     SET {
    <30 53>
 17  83:       SEQUENCE {
    <06 03>
 19   3:         OBJECT IDENTIFIER subjectAltName (2 5 29 17)
       :           (X.509 extension)
    <01 01>
 24   1:         BOOLEAN TRUE
    <04 49>
 27  73:         OCTET STRING
       :           A0 47 30 45 06 08 2B 06    .G0E..+.
       :           01 05 05 07 08 0A 0C 39    .......9
       :           72 66 63 38 39 39 34 2B    rfc8994+
       :           66 64 37 33 39 66 63 32    fd739fc2
       :           33 63 33 34 34 30 31 31    3c344011
       :           32 32 33 33 34 34 35 35    22334455
       :           30 30 30 30 30 30 30 30    00000000
       :           2B 40 61 63 70 2E 65 78    +@acp.ex
       :           61 6D 70 6C 65 2E 63 6F    ample.co
       :           6D                         m
       :         }
       :       }
       :     }
       :   }
]]></artwork>
        </section>
      </section>
      <section anchor="rfc7030-original-example">
        <name>RFC7030 original example</name>
        <t>In this example, taken from <xref target="RFC7030"/>, a few different attributes are included.</t>
        <section anchor="base64-encoded-example-1">
          <name>Base64 encoded example</name>
          <t>The Base64:</t>
          <sourcecode type="base64" markers="false"><![CDATA[
MEEGCSqGSIb3DQEJBzASBgcqhkjOPQIBMQcGBSuBBAAiMBYG
CSqGSIb3DQEJDjEJBgcrBgEBAQEWBggqhkjOPQQDAw==
]]></sourcecode>
        </section>
        <section anchor="asn1-dump-output-1">
          <name>ASN.1 DUMP output</name>
          <ol spacing="normal" type="1"><li>
              <t>The challengePassword attribute is included to indicate that the CSR should include this value.</t>
            </li>
            <li>
              <t>An ecPublicKey attribute is provided with the value secp384r1 to indicate what kind of key should be submitted.</t>
            </li>
            <li>
              <t>An extensionRequest container with an OID 1.3.6.1.1.1.1.22 (macAddress), but without a value, to indicate that the CSR should include an X.509v3 extension with this value.</t>
            </li>
            <li>
              <t>The ecdsaWithSHA384 OID is included to indicate what kind of hash is expected to be used for the self-signature of the PKCS#10 CSR structure.</t>
            </li>
          </ol>
          <artwork><![CDATA[
    <30 41>
  0  65: SEQUENCE {
    <06 09>
  2   9:   OBJECT IDENTIFIER challengePassword (1 2 840 113549 1 9 7)
       :     (PKCS #9)
    <30 12>
 13  18:   SEQUENCE {
    <06 07>
 15   7:     OBJECT IDENTIFIER ecPublicKey (1 2 840 10045 2 1)
       :       (ANSI X9.62 public key type)
    <31 07>
 24   7:     SET {
    <06 05>
 26   5:       OBJECT IDENTIFIER secp384r1 (1 3 132 0 34)
       :         (SECG (Certicom) named elliptic curve)
       :       }
       :     }
    <30 16>
 33  22:   SEQUENCE {
    <06 09>
 35   9:     OBJECT IDENTIFIER extensionRequest (1 2 840 113549 1 9 14)
       :       (PKCS #9 via CRMF)
    <31 09>
 46   9:     SET {
    <06 07>
 48   7:       OBJECT IDENTIFIER '1 3 6 1 1 1 1 22'
       :       }
       :     }
    <06 08>
 57   8:   OBJECT IDENTIFIER ecdsaWithSHA384 (1 2 840 10045 4 3 3)
       :     (ANSI X9.62 ECDSA algorithm with SHA384)
       :   }
]]></artwork>
        </section>
      </section>
      <section anchor="est-server-requires-a-specific-subjectaltname-extension">
        <name>EST server requires a specific subjectAltName extension</name>
        <t>This example is the same as the previous one except that instead of the OID
for a macAddress, a subjectAltName is specified as the only Extension element.</t>
        <section anchor="base64-encoded-example-2">
          <name>Base64 encoded example</name>
          <t>The Base64:</t>
          <sourcecode type="base64" markers="false"><![CDATA[
MGYGCSqGSIb3DQEJBzASBgcqhkjOPQIBMQcGBSuBBAAiMDsG
CSqGSIb3DQEJDjEuMCwGA1UdEQEB/wQioCAwHgYIKwYBBQUH
CAoMEnBvdGF0b0BleGFtcGxlLmNvbQYIKoZIzj0EAwM=
]]></sourcecode>
        </section>
        <section anchor="asn1-dump-output-2">
          <name>ASN.1 DUMP output</name>
          <ol spacing="normal" type="1"><li>
              <t>The challengePassword attribute is included to indicate that the CSR should include this value.</t>
            </li>
            <li>
              <t>An ecPublicKey attribute is provided with the value secp384r1 to indicate what kind of key should be submitted.</t>
            </li>
            <li>
              <t>An extensionRequest container with a subjectAltName value containing the name potato@example.com</t>
            </li>
            <li>
              <t>The ecdsaWithSHA384 OID is included to indicate what kind of hash is expected to be used for the self-signature of the PKCS#10 CSR structure.</t>
            </li>
          </ol>
          <artwork><![CDATA[
    <30 66>
  0 102: SEQUENCE {
    <06 09>
  2   9:   OBJECT IDENTIFIER challengePassword (1 2 840 113549 1 9 7)
       :     (PKCS #9)
    <30 12>
 13  18:   SEQUENCE {
    <06 07>
 15   7:     OBJECT IDENTIFIER ecPublicKey (1 2 840 10045 2 1)
       :       (ANSI X9.62 public key type)
    <31 07>
 24   7:     SET {
    <06 05>
 26   5:       OBJECT IDENTIFIER secp384r1 (1 3 132 0 34)
       :         (SECG (Certicom) named elliptic curve)
       :       }
       :     }
    <30 3B>
 33  59:   SEQUENCE {
    <06 09>
 35   9:     OBJECT IDENTIFIER extensionRequest (1 2 840 113549 1 9 14)
       :       (PKCS #9 via CRMF)
    <31 2E>
 46  46:     SET {
    <30 2C>
 48  44:       SEQUENCE {
    <06 03>
 50   3:         OBJECT IDENTIFIER subjectAltName (2 5 29 17)
       :           (X.509 extension)
    <01 01>
 55   1:         BOOLEAN TRUE
    <04 22>
 58  34:         OCTET STRING
       :           A0 20 30 1E 06 08 2B 06    . 0...+.
       :           01 05 05 07 08 0A 0C 12    ........
       :           70 6F 74 61 74 6F 40 65    potato@e
       :           78 61 6D 70 6C 65 2E 63    xample.c
       :           6F 6D                      om
       :         }
       :       }
       :     }
    <06 08>
 94   8:   OBJECT IDENTIFIER ecdsaWithSHA384 (1 2 840 10045 4 3 3)
       :     (ANSI X9.62 ECDSA algorithm with SHA384)
       :   }
]]></artwork>
        </section>
      </section>
      <section anchor="require-a-public-key-of-a-specific-size">
        <name>Require a public key of a specific size</name>
        <t>The CSR requires a public key of a specific size</t>
        <section anchor="base64-encoded-example-3">
          <name>Base64 encoded example</name>
          <t>The Base64:</t>
          <sourcecode type="base64" markers="false"><![CDATA[
MCkGCSqGSIb3DQEJBzARBgkqhkiG9w0BAQExBAICEAAGCSqG
SIb3DQEBCw==
]]></sourcecode>
        </section>
        <section anchor="asn1-dump-output-3">
          <name>ASN.1 DUMP output</name>
          <ol spacing="normal" type="1"><li>
              <t>Provide a CSR with an RSA key that's 4096 bits and sign it with sha256</t>
            </li>
          </ol>
          <artwork><![CDATA[
    <30 29>
  0  41: SEQUENCE {
    <06 09>
  2   9:   OBJECT IDENTIFIER challengePassword (1 2 840 113549 1 9 7)
       :     (PKCS #9)
    <30 11>
 13  17:   SEQUENCE {
    <06 09>
 15   9:     OBJECT IDENTIFIER rsaEncryption (1 2 840 113549 1 1 1)
       :       (PKCS #1)
    <31 04>
 26   4:     SET {
    <02 02>
 28   2:       INTEGER 4096
       :       }
       :     }
    <06 09>
 32   9:   OBJECT IDENTIFIER sha256WithRSAEncryption
                             (1 2 840 113549 1 1 11)
       :     (PKCS #1)
       :   }
]]></artwork>
        </section>
      </section>
      <section anchor="require-a-public-key-of-a-specific-curve">
        <name>Require a public key of a specific curve</name>
        <t>The CSR requires a public key with a specific curve</t>
        <section anchor="base64-encoded-example-4">
          <name>Base64 encoded example</name>
          <t>The Base64:</t>
          <sourcecode type="base64" markers="false"><![CDATA[
MD0GCSqGSIb3DQEJBzASBgcqhkjOPQIBMQcGBSuBBAAiMBIGCSqGSIb3DQEJDjEF
BgNVBAUGCCqGSM49BAMD
]]></sourcecode>
        </section>
        <section anchor="asn1-dump-output-4">
          <name>ASN.1 DUMP output</name>
          <t>Provide a CSR with an ECC key from p384, include your serial number, and
sign it with sha384.</t>
          <artwork><![CDATA[
    <30 3D>
  0  61: SEQUENCE {
    <06 09>
  2   9:   OBJECT IDENTIFIER challengePassword (1 2 840 113549 1 9 7)
       :     (PKCS #9)
    <30 12>
 13  18:   SEQUENCE {
    <06 07>
 15   7:     OBJECT IDENTIFIER ecPublicKey (1 2 840 10045 2 1)
       :       (ANSI X9.62 public key type)
    <31 07>
 24   7:     SET {
    <06 05>
 26   5:       OBJECT IDENTIFIER secp384r1 (1 3 132 0 34)
       :         (SECG (Certicom) named elliptic curve)
       :       }
       :     }
    <30 12>
 33  18:   SEQUENCE {
    <06 09>
 35   9:     OBJECT IDENTIFIER extensionRequest (1 2 840 113549 1 9 14)
       :       (PKCS #9 via CRMF)
    <31 05>
 46   5:     SET {
    <06 03>
 48   3:       OBJECT IDENTIFIER serialNumber (2 5 4 5)
       :         (X.520 DN component)
       :       }
       :     }
    <06 08>
 53   8:   OBJECT IDENTIFIER ecdsaWithSHA384 (1 2 840 10045 4 3 3)
       :     (ANSI X9.62 ECDSA algorithm with SHA384)
       :   }
]]></artwork>
        </section>
      </section>
      <section anchor="require-a-specific-extension">
        <name>Require a specific extension</name>
        <t>The CSR is required to have an EC key, to include a serial number,
a friendly name, favorite drink, and be signed with SHA512.</t>
        <section anchor="base64-encoded-example-5">
          <name>Base64 encoded example</name>
          <t>The Base64:</t>
          <sourcecode type="base64" markers="false"><![CDATA[
MFQGCSqGSIb3DQEJBzASBgcqhkjOPQIBMQcGBSuBBAAjMCkG
CSqGSIb3DQEJDjEcBgNVBAUGCSqGSIb3DQEJFAYKCZImiZPy
LGQBBQYIKoZIzj0EAwQ=
]]></sourcecode>
        </section>
        <section anchor="asn1-dump-output-5">
          <name>ASN.1 DUMP output</name>
          <t>Provide a CSR with an EC key from sha521, include your serial number,
friendly name, and favorite drink, and sign it with sha512</t>
          <artwork><![CDATA[
    <30 54>
  0  84: SEQUENCE {
    <06 09>
  2   9:   OBJECT IDENTIFIER challengePassword (1 2 840 113549 1 9 7)
       :     (PKCS #9)
    <30 12>
 13  18:   SEQUENCE {
    <06 07>
 15   7:     OBJECT IDENTIFIER ecPublicKey (1 2 840 10045 2 1)
       :       (ANSI X9.62 public key type)
    <31 07>
 24   7:     SET {
    <06 05>
 26   5:       OBJECT IDENTIFIER secp521r1 (1 3 132 0 35)
       :         (SECG (Certicom) named elliptic curve)
       :       }
       :     }
    <30 29>
 33  41:   SEQUENCE {
    <06 09>
 35   9:     OBJECT IDENTIFIER extensionRequest (1 2 840 113549 1 9 14)
       :       (PKCS #9 via CRMF)
    <31 1C>
 46  28:     SET {
    <06 03>
 48   3:       OBJECT IDENTIFIER serialNumber (2 5 4 5)
       :         (X.520 DN component)
    <06 09>
 53   9:       OBJECT IDENTIFIER
       :         friendlyName (for PKCS #12) (1 2 840 113549 1 9 20)
       :         (PKCS #9 via PKCS #12)
    <06 0A>
 64  10:       OBJECT IDENTIFIER '0 9 2342 19200300 100 1 5'
       :       }
       :     }
    <06 08>
 76   8:   OBJECT IDENTIFIER ecdsaWithSHA512 (1 2 840 10045 4 3 4)
       :     (ANSI X9.62 ECDSA algorithm with SHA512)
       :   }
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The security considerations from EST <xref target="RFC7030"/> section 6 are unchanged.</t>
      <section anchor="identity-and-privacy-considerations">
        <name>Identity and Privacy Considerations</name>
        <t>An EST server may use this mechanism to instruct the EST client about the identities it should include in the CSR it sends as part of enrollment.
The client may only be aware of its IDevID Subject, which includes a manufacturer serial number.
The EST server can use this mechanism to tell the client to include a specific fully qualified domain name in the CSR in order to complete domain ownership proofs required by the CA.
Additionally, the EST server may deem the manufacturer serial number in an IDevID as personally identifiable information, and may want to specify a new random opaque identifier that the pledge should use in its CSR.
This may be desirable if the CA and EST server have different operators.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>IANA is asked to allocate two new Object Identifiers:</t>
      <ul spacing="normal">
        <li>
          <t>One (TBD1) from the SMI Security for S/MIME Module Identifier
(1.2.840.113549.1.9.16.0) registry for the ASN.1 module: id-mod-critemplate; see <xref target="app-asn1-module"/></t>
        </li>
        <li>
          <t>One (TBD2) from the SMI Security for S/MIME Attributes
(1.2.840.113549.1.9.16.2) registry for the Certification Request
Information Template (csrinfo) attribute; see <xref target="app-asn1-module"/></t>
        </li>
        <li>
          <t>One (TBD3) from the PKCS#9 (1 2 840 113549 1 9) registry for the
id-extensionReqTemplate AttributeType; see <xref target="csrtemplate"/> and <xref target="app-asn1-module"/></t>
        </li>
      </ul>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Corey Bonnell crafted example02 using a different tool, and this helped debug other running code.</t>
      <t>Carl Wallace provided major parts of the CertificationRequestInfoTemplate syntax declaration.</t>
    </section>
    <section anchor="changelog">
      <name>Changelog</name>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC5911">
          <front>
            <title>New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="June" year="2010"/>
            <abstract>
              <t>The Cryptographic Message Syntax (CMS) format, and many associated formats, are expressed using ASN.1. The current ASN.1 modules conform to the 1988 version of ASN.1. This document updates those ASN.1 modules to conform to the 2002 version of ASN.1. There are no bits-on-the-wire changes to any of the formats; this is simply a change to the syntax. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5911"/>
          <seriesInfo name="DOI" value="10.17487/RFC5911"/>
        </reference>
        <reference anchor="RFC5912">
          <front>
            <title>New ASN.1 Modules for the Public Key Infrastructure Using X.509 (PKIX)</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="June" year="2010"/>
            <abstract>
              <t>The Public Key Infrastructure using X.509 (PKIX) certificate format, and many associated formats, are expressed using ASN.1. The current ASN.1 modules conform to the 1988 version of ASN.1. This document updates those ASN.1 modules to conform to the 2002 version of ASN.1. There are no bits-on-the-wire changes to any of the formats; this is simply a change to the syntax. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5912"/>
          <seriesInfo name="DOI" value="10.17487/RFC5912"/>
        </reference>
        <reference anchor="RFC6268">
          <front>
            <title>Additional New ASN.1 Modules for the Cryptographic Message Syntax (CMS) and the Public Key Infrastructure Using X.509 (PKIX)</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="July" year="2011"/>
            <abstract>
              <t>The Cryptographic Message Syntax (CMS) format, and many associated formats, are expressed using ASN.1. The current ASN.1 modules conform to the 1988 version of ASN.1. This document updates some auxiliary ASN.1 modules to conform to the 2008 version of ASN.1; the 1988 ASN.1 modules remain the normative version. There are no bits- on-the-wire changes to any of the formats; this is simply a change to the syntax. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6268"/>
          <seriesInfo name="DOI" value="10.17487/RFC6268"/>
        </reference>
        <reference anchor="RFC7030">
          <front>
            <title>Enrollment over Secure Transport</title>
            <author fullname="M. Pritikin" initials="M." role="editor" surname="Pritikin"/>
            <author fullname="P. Yee" initials="P." role="editor" surname="Yee"/>
            <author fullname="D. Harkins" initials="D." role="editor" surname="Harkins"/>
            <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="X.680" target="https://www.itu.int/rec/T-REC-X.680">
          <front>
            <title>Information technology -- Abstract Syntax Notation One (ASN.1): Specification of basic notation</title>
            <author>
              <organization>ITU-T</organization>
            </author>
            <date year="2021" month="February"/>
          </front>
          <seriesInfo name="ITU-T Recommendation" value="X.680"/>
          <seriesInfo name="ISO/IEC" value="8824-1:2021"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC2985">
          <front>
            <title>PKCS #9: Selected Object Classes and Attribute Types Version 2.0</title>
            <author fullname="M. Nystrom" initials="M." surname="Nystrom"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <date month="November" year="2000"/>
            <abstract>
              <t>This memo represents a republication of PKCS #9 v2.0 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series, and change control is retained within the PKCS process. The body of this document, except for the security considerations section, is taken directly from that specification. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2985"/>
          <seriesInfo name="DOI" value="10.17487/RFC2985"/>
        </reference>
        <reference anchor="RFC4211">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate Request Message Format (CRMF)</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="September" year="2005"/>
            <abstract>
              <t>This document describes the Certificate Request Message Format (CRMF) syntax and semantics. This syntax is used to convey a request for a certificate to a Certification Authority (CA), possibly via a Registration Authority (RA), for the purposes of X.509 certificate production. The request will typically include a public key and the associated registration information. This document does not define a certificate request protocol. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4211"/>
          <seriesInfo name="DOI" value="10.17487/RFC4211"/>
        </reference>
        <reference anchor="RFC5272">
          <front>
            <title>Certificate Management over CMS (CMC)</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <author fullname="M. Myers" initials="M." surname="Myers"/>
            <date month="June" year="2008"/>
            <abstract>
              <t>This document defines the base syntax for CMC, a Certificate Management protocol using the Cryptographic Message Syntax (CMS). This protocol addresses two immediate needs within the Internet Public Key Infrastructure (PKI) community:</t>
              <t>1. The need for an interface to public key certification products and services based on CMS and PKCS #10 (Public Key Cryptography Standard), and</t>
              <t>2. The need for a PKI enrollment protocol for encryption only keys due to algorithm or hardware design.</t>
              <t>CMC also requires the use of the transport document and the requirements usage document along with this document for a full definition. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5272"/>
          <seriesInfo name="DOI" value="10.17487/RFC5272"/>
        </reference>
        <reference anchor="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"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <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="RFC8295">
          <front>
            <title>EST (Enrollment over Secure Transport) Extensions</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="January" year="2018"/>
            <abstract>
              <t>The EST (Enrollment over Secure Transport) protocol defines the Well-Known URI (Uniform Resource Identifier) -- /.well-known/est -- along with a number of other path components that clients use for PKI (Public Key Infrastructure) services, namely certificate enrollment (e.g., /simpleenroll). This document defines a number of other PKI services as additional path components -- specifically, firmware and trust anchors as well as symmetric, asymmetric, and encrypted keys. This document also specifies the PAL (Package Availability List), which is an XML (Extensible Markup Language) file or JSON (JavaScript Object Notation) object that clients use to retrieve packages available and authorized for them. This document extends the EST server path components to provide these additional services.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8295"/>
          <seriesInfo name="DOI" value="10.17487/RFC8295"/>
        </reference>
        <reference anchor="RFC8368">
          <front>
            <title>Using an Autonomic Control Plane for Stable Connectivity of Network Operations, Administration, and Maintenance (OAM)</title>
            <author fullname="T. Eckert" initials="T." role="editor" surname="Eckert"/>
            <author fullname="M. Behringer" initials="M." surname="Behringer"/>
            <date month="May" year="2018"/>
            <abstract>
              <t>Operations, Administration, and Maintenance (OAM), as per BCP 161, for data networks is often subject to the problem of circular dependencies when relying on connectivity provided by the network to be managed for the OAM purposes.</t>
              <t>Provisioning while bringing up devices and networks tends to be more difficult to automate than service provisioning later on. Changes in core network functions impacting reachability cannot be automated because of ongoing connectivity requirements for the OAM equipment itself, and widely used OAM protocols are not secure enough to be carried across the network without security concerns.</t>
              <t>This document describes how to integrate OAM processes with an autonomic control plane in order to provide stable and secure connectivity for those OAM processes. This connectivity is not subject to the aforementioned circular dependencies.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8368"/>
          <seriesInfo name="DOI" value="10.17487/RFC8368"/>
        </reference>
        <reference anchor="RFC8994">
          <front>
            <title>An Autonomic Control Plane (ACP)</title>
            <author fullname="T. Eckert" initials="T." role="editor" surname="Eckert"/>
            <author fullname="M. Behringer" initials="M." role="editor" surname="Behringer"/>
            <author fullname="S. Bjarnason" initials="S." surname="Bjarnason"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>Autonomic functions need a control plane to communicate, which depends on some addressing and routing. This Autonomic Control Plane should ideally be self-managing and be as independent as possible of configuration. This document defines such a plane and calls it the "Autonomic Control Plane", with the primary use as a control plane for autonomic functions. It also serves as a "virtual out-of-band channel" for Operations, Administration, and Management (OAM) communications over a network that provides automatically configured, hop-by-hop authenticated and encrypted communications via automatically configured IPv6 even when the network is not configured or is misconfigured.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8994"/>
          <seriesInfo name="DOI" value="10.17487/RFC8994"/>
        </reference>
        <reference anchor="RFC8995">
          <front>
            <title>Bootstrapping Remote Secure Key Infrastructure (BRSKI)</title>
            <author fullname="M. Pritikin" initials="M." surname="Pritikin"/>
            <author fullname="M. Richardson" initials="M." surname="Richardson"/>
            <author fullname="T. Eckert" initials="T." surname="Eckert"/>
            <author fullname="M. Behringer" initials="M." surname="Behringer"/>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <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="RFC9480">
          <front>
            <title>Certificate Management Protocol (CMP) Updates</title>
            <author fullname="H. Brockhaus" initials="H." surname="Brockhaus"/>
            <author fullname="D. von Oheimb" initials="D." surname="von Oheimb"/>
            <author fullname="J. Gray" initials="J." surname="Gray"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>This document contains a set of updates to the syntax of Certificate Management Protocol (CMP) version 2 and its HTTP transfer mechanism. This document updates RFCs 4210, 5912, and 6712.</t>
              <t>The aspects of CMP updated in this document are using EnvelopedData instead of EncryptedValue, clarifying the handling of p10cr messages, improving the crypto agility, as well as adding new general message types, extended key usages to identify certificates for use with CMP, and well-known URI path segments.</t>
              <t>CMP version 3 is introduced to enable signaling support of EnvelopedData instead of EncryptedValue and signal the use of an explicit hash AlgorithmIdentifier in certConf messages, as far as needed.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9480"/>
          <seriesInfo name="DOI" value="10.17487/RFC9480"/>
        </reference>
        <reference anchor="RFC9483">
          <front>
            <title>Lightweight Certificate Management Protocol (CMP) Profile</title>
            <author fullname="H. Brockhaus" initials="H." surname="Brockhaus"/>
            <author fullname="D. von Oheimb" initials="D." surname="von Oheimb"/>
            <author fullname="S. Fries" initials="S." surname="Fries"/>
            <date month="November" year="2023"/>
            <abstract>
              <t>This document aims at simple, interoperable, and automated PKI management operations covering typical use cases of industrial and Internet of Things (IoT) scenarios. This is achieved by profiling the Certificate Management Protocol (CMP), the related Certificate Request Message Format (CRMF), and transfer based on HTTP or Constrained Application Protocol (CoAP) in a succinct but sufficiently detailed and self-contained way. To make secure certificate management for simple scenarios and constrained devices as lightweight as possible, only the most crucial types of operations and options are specified as mandatory. More specialized or complex use cases are supported with optional features.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9483"/>
          <seriesInfo name="DOI" value="10.17487/RFC9483"/>
        </reference>
        <reference anchor="X.690" target="https://www.itu.int/rec/T-REC-X.690">
          <front>
            <title>Information technology -- ASN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)</title>
            <author>
              <organization>ITU-T</organization>
            </author>
            <date year="2021" month="February"/>
          </front>
          <seriesInfo name="ITU-T Recommendation" value="X.690"/>
          <seriesInfo name="ISO/IEC" value="8825-1:2021"/>
        </reference>
      </references>
    </references>
    <?line 811?>

<section anchor="app-asn1-module">
      <name>ASN.1 Module</name>
      <aside>
        <t>RFC EDITOR: Please replace TBD1, TBD2, and TBD3 with the value assigned by IANA
during the publication of this document.</t>
      </aside>
      <t>This appendix provides an ASN.1 module <xref target="X.680"/> for the Certification
Request Information Template attribute, and it follows the conventions
established in <xref target="RFC5911"/>, <xref target="RFC5912"/>, and <xref target="RFC6268"/>.</t>
      <sourcecode type="asn.1"><![CDATA[
CRITemplateModule
  { iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1)
    pkcs-9(9) smime(16) modules(0) id-mod-critemplate(TBD1) }

DEFINITIONS IMPLICIT TAGS ::=

BEGIN

IMPORTS -- from [RFC5912]

SupportedAttributes
 FROM PKIX1Explicit-2009
  { iso(1) identified-organization(3) dod(6) internet(1) security(5)
    mechanisms(5) pkix(7) id-mod(0) id-mod-pkix1-explicit-02(51)}

EXTENSION
 FROM PKIX-CommonTypes-2009
  { iso(1) identified-organization(3) dod(6) internet(1) security(5)
    mechanisms(5) pkix(7) id-mod(0) id-mod-pkixCommon-02(57) }

PUBLIC-KEY, AlgorithmIdentifier{}
 FROM AlgorithmInformation-2009
  { iso(1) identified-organization(3) dod(6) internet(1) security(5)
    mechanisms(5) pkix(7) id-mod(0)
    id-mod-algorithmInformation-02(58)}

CertExtensions
 FROM PKIX1Implicit-2009
  { iso(1) identified-organization(3) dod(6) internet(1) security(5)
    mechanisms(5) pkix(7) id-mod(0) id-mod-pkix1-implicit-02(59)}

ATTRIBUTE, Attributes{}, CRIAttributes, PKInfoAlgorithms
 FROM PKCS-10
  { iso(1) identified-organization(3) dod(6) internet(1)
    security(5) mechanisms(5) pkix(7)
    id-mod(0) id-mod-pkcs10-2009(69) }
;

aa-certificationRequestInfoTemplate ATTRIBUTE ::=
  { TYPE CertificationRequestInfoTemplate IDENTIFIED BY
    id-aa-certificationRequestInfoTemplate }

id-aa-certificationRequestInfoTemplate OBJECT IDENTIFIER ::=
  { iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs9(9)
    smime(16) aa(2) csrinfo(TBD2) }

--  like CertificationRequestInfo but OPTIONAL subject, subjectPKInfo
CertificationRequestInfoTemplate ::= SEQUENCE {
    version       INTEGER { v1(0) } (v1, ... ),
    subject       NameTemplate OPTIONAL,
    subjectPKInfo [0] SubjectPublicKeyInfoTemplate
                              {{ PKInfoAlgorithms }} OPTIONAL,
    attributes    [1] Attributes{{ CRIAttributes }}
}


--  like Name, but with OPTIONAL RDN values
NameTemplate ::= CHOICE { -- only one possibility for now --
    rdnSequence  RDNSequenceTemplate }

RDNSequenceTemplate ::= SEQUENCE OF RelativeDistinguishedNameTemplate

RelativeDistinguishedNameTemplate  ::= SET SIZE (1 .. MAX)
    OF SingleAttributeTemplate { {SupportedAttributes} }

--  like SingleAttribute, but with OPTIONAL value
SingleAttributeTemplate{ATTRIBUTE:AttrSet} ::= SEQUENCE {
    type      ATTRIBUTE.&id({AttrSet}),
    value     ATTRIBUTE.&Type({AttrSet}{@type}) OPTIONAL
}

--  like SubjectPublicKeyInfo, but with OPTIONAL subjectPublicKey
SubjectPublicKeyInfoTemplate{PUBLIC-KEY:IOSet} ::= SEQUENCE {
    algorithm        AlgorithmIdentifier{PUBLIC-KEY, {IOSet}},
    subjectPublicKey BIT STRING OPTIONAL
}


id-extensionReqTemplate AttributeType ::= {pkcs-9 TBD3}

--  like extensionRequest, but with OPTIONAL Extension extnValues
--  original definition was in PKCS#9 RFC 2985 section 5.4.2
at-extensionReqTemplate ATTRIBUTE ::= {
    TYPE ExtensionReqTemplate IDENTIFIED BY id-extensionReqTemplate }

ExtensionReqTemplate ::= ExtensionTemplates{{CertExtensions}}

--  like Extensions, but with OPTIONAL extnValue
ExtensionTemplates{EXTENSION:ExtensionSet} ::=
    SEQUENCE SIZE (1..MAX) OF ExtensionTemplate{{ExtensionSet}}

--  like Extension, but with OPTIONAL extnValue
ExtensionTemplate{EXTENSION:ExtensionSet} ::= SEQUENCE {
    extnID    EXTENSION.&id({ExtensionSet}),
    critical  BOOLEAN
  --                   (EXTENSION.&Critical({ExtensionSet}{@extnID}))
                     DEFAULT FALSE,
    extnValue OCTET STRING (CONTAINING
              EXTENSION.&ExtnType({ExtensionSet}{@extnID})) OPTIONAL
              --  contains the DER encoding of the ASN.1 value
              --  corresponding to the extension type identified
              --  by extnID when present
}

END
]]></sourcecode>
      <!--
Local IspellDict: american
LocalWords:  abbrev CSRAttrs docname ietf rfc csrattrs ipr wg pkcs
LocalWords:  submissionType kw std toc sortrefs symrefs org mcr
LocalWords:  seriesinfo bcp crypto CsrAttrs AttrOrOID IOSet asn
LocalWords:  csrtemplate pKCS CertificationRequestInfoTemplate
LocalWords:  NameTemplate subjectPKInfo PKInfoAlgorithms br acp
LocalWords:  SubjectPublicKeyInfoTemplate AttrSet ExtensionSet
LocalWords:  SingleAttributeTemplate extensionReqTemplate secp
LocalWords:  ExtensionTemplate ExtnType myDept myGroup CSRattrs
LocalWords:  publicKey dumpasn otherName acpNodeName otherNames
LocalWords:  AcpNodeName sourcecode csrattr ecdsaWithSHA sha
LocalWords:  harkins critemplate csrinfo Changelog markdown
LocalWords:  CRITemplateModule ExtensionReq
-->

</section>
  </back>
  <!-- ##markdown-source:
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
Sat0350MS8qaUKWr/waCFIzwd3wAAA==

-->

</rfc>
