<?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.1 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lamps-kyber-certificates-02" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.2 -->
  <front>
    <title abbrev="PQC Kyber in Certificates">Internet X.509 Public Key Infrastructure - Algorithm Identifiers for Kyber</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-kyber-certificates-02"/>
    <author initials="S." surname="Turner" fullname="Sean Turner">
      <organization>sn3rd</organization>
      <address>
        <email>sean@sn3rd.com</email>
      </address>
    </author>
    <author initials="P." surname="Kampanakis" fullname="Panos Kampanakis">
      <organization>AWS</organization>
      <address>
        <email>kpanos@amazon.com</email>
      </address>
    </author>
    <author initials="J." surname="Massimo" fullname="Jake Massimo">
      <organization>AWS</organization>
      <address>
        <email>jakemas@amazon.com</email>
      </address>
    </author>
    <author initials="B." surname="Westerbaan" fullname="Bas Westerbaan">
      <organization>Cloudflare</organization>
      <address>
        <email>bas@westerbaan.name</email>
      </address>
    </author>
    <date year="2023" month="October" day="23"/>
    <area>SEC</area>
    <workgroup>LAMPS</workgroup>
    <keyword>Kyber KEM Certificate X.509 PKIX</keyword>
    <abstract>
      <?line 75?>

<t>Kyber is a key-encapsulation mechanism (KEM). This document specifies
algorithm identifiers and ASN.1 encoding format for Kyber in public
key certificates. The encoding for public and private keys are also
provided.</t>
      <t>\ [EDNOTE:
This document is not expected to be finalized before the NIST PQC
Project has standardized PQ algorithms. This specification will use
object identifiers for the new algorithms that are assigned by NIST,
and will use placeholders until these are released.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://lamps-wg.github.io/kyber-certificates/#go.draft-ietf-lamps-kyber-certificates.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-lamps-kyber-certificates/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Limited Additional Mechanisms for PKIX and SMIME (lamps) Working Group mailing list (<eref target="mailto:spasm@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/spasm/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/spasm/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/lamps-wg/kyber-certificates"/>.</t>
    </note>
  </front>
  <middle>
    <?line 88?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Kyber is a key-encapsulation mechanism (KEM) standardized by the US NIST
PQC Project <xref target="PQCProj"/>. This document specifies the use of the Kyber
algorithm at three security levels: Kyber512, Kyber768, and Kyber1024,
in X.509 public key certificates; see <xref target="RFC5280"/>. Public and private
key encodings are also specified.</t>
      <section anchor="asn1-and-kyber-identifiers">
        <name>ASN.1 and Kyber Identifiers</name>
        <t>An ASN.1 module <xref target="X680"/> is included for reference purposes. Note that
as per <xref target="RFC5280"/>, certificates use the Distinguished Encoding Rules;
see <xref target="X690"/>. Also note that NIST defined the object identifiers for
the Kyber algorithms in an ASN.1 modulle; see (TODO insert reference).</t>
      </section>
      <section anchor="applicability-statement">
        <name>Applicability Statement</name>
        <t>Kyber certificates are used in protocols where the public key is used to
generate and encapsulate a shared secret used to derive a symmetric key used to
encrypt a payload; see <xref target="I-D.ietf-lamps-kyber"/>. To be used in
TLS, Kyber certificates could only be used as end-entity identity
certificates and would require significant updates to the protocol; see
<xref target="I-D.celi-wiggers-tls-authkem"/>.</t>
      </section>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

</section>
    <section anchor="algorithm-identifiers">
      <name>Algorithm Identifiers</name>
      <t>Certificates conforming to <xref target="RFC5280"/> can convey a public key for any
public key algorithm. The certificate indicates the algorithm through
an algorithm identifier. An algorithm identifier consists of an object
identifier and optional parameters.</t>
      <t>The AlgorithmIdentifier type, which is included herein for convenience,
is defined as follows:</t>
      <artwork><![CDATA[
  AlgorithmIdentifier{ALGORITHM-TYPE, ALGORITHM-TYPE:AlgorithmSet} ::=
    SEQUENCE {
      algorithm   ALGORITHM-TYPE.&id({AlgorithmSet}),
      parameters  ALGORITHM-TYPE.
                    &Params({AlgorithmSet}{@algorithm}) OPTIONAL
    }
]]></artwork>
      <aside>
        <t>: The above syntax is from <xref target="RFC5912"/> and is compatible with the
  2021 ASN.1 syntax <xref target="X680"/>.</t>
      </aside>
      <t>The fields in AlgorithmIdentifier have the following meanings:</t>
      <ul spacing="normal">
        <li>
          <t>algorithm identifies the cryptographic algorithm with an object
identifier.</t>
        </li>
        <li>
          <t>parameters, which are optional, are the associated parameters for
the algorithm identifier in the algorithm field.</t>
        </li>
      </ul>
      <t><xref target="Kyber-TBD1"/> includes object identifiers for Kyber-512, Kyber-768, and
Kyber-1024. For all of these OIDs, the parameters <bcp14>MUST</bcp14> be absent.</t>
      <aside>
        <t>: It is possible to find systems that require the parameters to be
  present. This can be due to either a defect in the original 1997
  syntax or a programming error where developers never got input where
  this was not true. The optimal solution is to fix these systems;
  where this is not possible, the problem needs to be restricted to
  that subsystem and not propagated to the Internet.</t>
      </aside>
    </section>
    <section anchor="Kyber-TBD1">
      <name>Kyber Public Key Identifiers</name>
      <t>The AlgorithmIdentifier for a Kyber public key <bcp14>MUST</bcp14> use one of the
id-alg-kyber object identifiers listed below, based on the security
level. The parameters field of the AlgorithmIdentifier for the Kyber
public key <bcp14>MUST</bcp14> be absent.</t>
      <t>When any of the Kyber AlgorithmIdentifier appears in the
SubjectPublicKeyInfo field of an X.509 certificate, the key usage
certificate extension <bcp14>MUST</bcp14> only contain keyEncipherment
<xref section="4.2.1.3" sectionFormat="of" target="RFC5280"/>.</t>
      <artwork><![CDATA[
  pk-kyber-512 PUBLIC-KEY ::= {
    IDENTIFIER id-alg-kyber-512
    -- KEY no ASN.1 wrapping --
    PARAMS ARE absent
    CERT-KEY-USAGE
      { keyEncipherment }
    --- PRIVATE-KEY no ASN.1 wrapping --
    }

  pk-kyber-768 PUBLIC-KEY ::= {
    IDENTIFIER id-alg-kyber-768
    -- KEY no ASN.1 wrapping --
    PARAMS ARE absent
    CERT-KEY-USAGE
      { keyEncipherment }
    --- PRIVATE-KEY no ASN.1 wrapping --
    }

  pk-kyber-1024 PUBLIC-KEY ::= {
    IDENTIFIER id-alg-kyber-1024
    -- KEY no ASN.1 wrapping --
    PARAMS ARE absent
    CERT-KEY-USAGE
      { keyEncipherment }
    --- PRIVATE-KEY no ASN.1 wrapping --
    }
]]></artwork>
      <aside>
        <t>: As noted in Section 3, the values for these object identifers
  will be assigned by NIST.  Once assigned, they will be added to a future
  revision of this document.</t>
      </aside>
    </section>
    <section anchor="subject-public-key-fields">
      <name>Subject Public Key Fields</name>
      <t>In the X.509 certificate, the subjectPublicKeyInfo field has the
SubjectPublicKeyInfo type, which has the following ASN.1 syntax:</t>
      <artwork><![CDATA[
  SubjectPublicKeyInfo {PUBLIC-KEY: IOSet} ::= SEQUENCE {
      algorithm        AlgorithmIdentifier {PUBLIC-KEY, {IOSet}},
      subjectPublicKey BIT STRING
  }
]]></artwork>
      <aside>
        <t>: The above syntax is from <xref target="RFC5912"/> and is compatible with the
  2021 ASN.1 syntax <xref target="X680"/>.</t>
      </aside>
      <t>The fields in SubjectPublicKeyInfo have the following meaning:</t>
      <ul spacing="normal">
        <li>
          <t>algorithm is the algorithm identifier and parameters for the
public key (see above).</t>
        </li>
        <li>
          <t>subjectPublicKey contains the byte stream of the public key.  The
algorithms defined in this document always encode the public key
as TODO pick format e.g., exact multiple of 8 bits?.</t>
        </li>
      </ul>
      <t>The following is an example of a Kyber-512 public key encoded using the
textual encoding defined in <xref target="RFC7468"/>:</t>
      <artwork><![CDATA[
  -----BEGIN PUBLIC KEY-----
  TODO insert example public key
  -----END PUBLIC KEY-------
]]></artwork>
    </section>
    <section anchor="private-key-format">
      <name>Private Key Format</name>
      <t>"Asymmetric Key Packages" <xref target="RFC5958"/> describes how to encode a private
key in a structure that both identifies what algorithm the private key
is for and allows for the public key and additional attributes about the
key to be included as well. For illustration, the ASN.1 structure
OneAsymmetricKey is replicated below. The algorithm-specific details of
how a private key is encoded are left for the document describing the
algorithm itself.</t>
      <artwork><![CDATA[
  OneAsymmetricKey ::= SEQUENCE {
    version                  Version,
    privateKeyAlgorithm      SEQUENCE {
    algorithm                PUBLIC-KEY.&id({PublicKeySet}),
    parameters               PUBLIC-KEY.&Params({PublicKeySet}
                               {@privateKeyAlgorithm.algorithm})
                                  OPTIONAL}
    privateKey               OCTET STRING (CONTAINING
                               PUBLIC-KEY.&PrivateKey({PublicKeySet}
                                 {@privateKeyAlgorithm.algorithm})),
    attributes           [0] Attributes OPTIONAL,
    ...,
    [[2: publicKey       [1] BIT STRING (CONTAINING
                               PUBLIC-KEY.&Params({PublicKeySet}
                                 {@privateKeyAlgorithm.algorithm})
                                 OPTIONAL,
    ...
  }

  PrivateKey ::= OCTET STRING

  PublicKey ::= BIT STRING
]]></artwork>
      <aside>
        <t>: The above syntax is from <xref target="RFC5958"/> and is compatible with the
  2021 ASN.1 syntax <xref target="X680"/>.</t>
      </aside>
      <t>For the keys defined in this document, the private key is always an
opaque byte sequence. The ASN.1 type PqckemPrivateKey is defined in
this document to hold the byte sequence. Thus, when encoding a
OneAsymmetricKey object, the private key is wrapped in a
PqckemPrivateKey object and wrapped by the OCTET STRING of the
"privateKey" field.</t>
      <artwork><![CDATA[
  PqckemPrivateKey ::= OCTET STRING
]]></artwork>
      <t>The following is an example of a Kyber-512 private key encoded using the
textual encoding defined in <xref target="RFC7468"/>:</t>
      <artwork><![CDATA[
  -----BEGIN PRIVATE KEY-----
  TODO iser example private key
  -----END PRIVATE KEY-------
]]></artwork>
      <t>The following example, in addition to encoding the Kyber-512 private key,
has an attribute included as well as the public key. As with the
prior example, the textual encoding defined in <xref target="RFC7468"/> is used:</t>
      <artwork><![CDATA[
  -----BEGIN PRIVATE KEY-----
  TODO insert example private key with attribute
  -----END PRIVATE KEY-------
]]></artwork>
      <aside>
        <t>: There exist some private key import functions that have not
  implemented the new ASN.1 structure OneAsymmetricKey that is defined in
  <xref target="RFC5958"/>. This means that they will not accept a private key
  structure that contains the public key field.  This means a balancing
  act needs to be done between being able to do a consistency check on the
  key pair and widest ability to import the key.</t>
      </aside>
    </section>
    <section anchor="asn1-module">
      <name>ASN.1 Module</name>
      <t>TODO ASN.1 Module</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The Security Considerations section of <xref target="RFC5280"/> applies to this specification as well.</t>
      <t>[EDNOTE: Discuss side-channels for Kyber TBD1.]</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document will have some IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="X680" 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="ISO/IEC" value="8824-1:2021"/>
        </reference>
        <reference anchor="X690" target="https://www.itu.int/rec/T-REC-X.690">
          <front>
            <title>Information technology - Abstract Syntax Notation One (ASN.1): 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="ISO/IEC" value="8825-1:2021"/>
        </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="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>
        <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="RFC5958">
          <front>
            <title>Asymmetric Key Packages</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document defines the syntax for private-key information and a content type for it. Private-key information includes a private key for a specified public-key algorithm and a set of attributes. The Cryptographic Message Syntax (CMS), as defined in RFC 5652, can be used to digitally sign, digest, authenticate, or encrypt the asymmetric key format content type. This document obsoletes RFC 5208. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5958"/>
          <seriesInfo name="DOI" value="10.17487/RFC5958"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="PQCProj" target="https://csrc.nist.gov/projects/post-quantum-cryptography">
          <front>
            <title>Post-Quantum Cryptography Project</title>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date year="2016" month="December" day="20"/>
          </front>
        </reference>
        <reference anchor="I-D.ietf-lamps-kyber">
          <front>
            <title>Use of KYBER in the Cryptographic Message Syntax (CMS)</title>
            <author fullname="PRAT Julien" initials="J." surname="Prat">
              <organization>CryptoNext Security</organization>
            </author>
            <author fullname="Mike Ounsworth" initials="M." surname="Ounsworth">
              <organization>Entrust Limited</organization>
            </author>
            <date day="10" month="November" year="2022"/>
            <abstract>
              <t>   This document describes the conventions for using a Key Encapsulation
   Mechanism algorithm (KEM) within the Cryptographic Message Syntax
   (CMS). The CMS specifies the envelopped-data content type, which
   consists of an encrypted content and encrypted content-encryption
   keys for one or more recipients. The mechanism proposed here can
   rely on either post-quantum KEMs, hybrid KEMs or classical KEMs but 
   this document specifies the use of Kyber.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-kyber-00"/>
        </reference>
        <reference anchor="I-D.celi-wiggers-tls-authkem">
          <front>
            <title>KEM-based Authentication for TLS 1.3</title>
            <author fullname="Thom Wiggers" initials="T." surname="Wiggers">
              <organization>PQShield</organization>
            </author>
            <author fullname="Sofia Celi" initials="S." surname="Celi">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Peter Schwabe" initials="P." surname="Schwabe">
              <organization>Radboud University and MPI-SP</organization>
            </author>
            <author fullname="Douglas Stebila" initials="D." surname="Stebila">
              <organization>University of Waterloo</organization>
            </author>
            <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
         </author>
            <date day="18" month="August" year="2023"/>
            <abstract>
              <t>   This document gives a construction for a Key Encapsulation Mechanism
   (KEM)-based authentication mechanism in TLS 1.3.  This proposal
   authenticates peers via a key exchange protocol, using their long-
   term (KEM) public keys.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-celi-wiggers-tls-authkem-02"/>
        </reference>
        <reference anchor="RFC7468">
          <front>
            <title>Textual Encodings of PKIX, PKCS, and CMS Structures</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="S. Leonard" initials="S." surname="Leonard"/>
            <date month="April" year="2015"/>
            <abstract>
              <t>This document describes and discusses the textual encodings of the Public-Key Infrastructure X.509 (PKIX), Public-Key Cryptography Standards (PKCS), and Cryptographic Message Syntax (CMS). The textual encodings are well-known, are implemented by several applications and libraries, and are widely deployed. This document articulates the de facto rules by which existing implementations operate and defines them so that future implementations can interoperate.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7468"/>
          <seriesInfo name="DOI" value="10.17487/RFC7468"/>
        </reference>
      </references>
    </references>
    <?line 364?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
