<?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-rfc2629 version 1.5.26 (Ruby 2.3.7) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-housley-lamps-cms-kemri-02" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.16.0 -->
  <front>
    <title abbrev="CMS KEMRecipientInfo">Using Key Encapsulation Mechanism (KEM) Algorithms in the Cryptographic Message Syntax (CMS)</title>
    <seriesInfo name="Internet-Draft" value="draft-housley-lamps-cms-kemri-02"/>
    <author initials="R." surname="Housley" fullname="Russ Housley">
      <organization abbrev="Vigil Security">Vigil Security, LLC</organization>
      <address>
        <postal>
          <city>Herndon, VA</city>
          <country>US</country>
        </postal>
        <email>housley@vigilsec.com</email>
      </address>
    </author>
    <author initials="J." surname="Gray" fullname="John Gray">
      <organization>Entrust</organization>
      <address>
        <postal>
          <city>Minneapolis, MN</city>
          <country>US</country>
        </postal>
        <email>john.gray@entrust.com</email>
      </address>
    </author>
    <author initials="T." surname="Okubo" fullname="Tomofumi Okubo">
      <organization abbrev="DigiCert">DigiCert, Inc.</organization>
      <address>
        <postal>
          <city>Fairfax, VA</city>
          <country>US</country>
        </postal>
        <email>tomofumi.okubo+ietf@gmail.com</email>
      </address>
    </author>
    <date year="2023" month="February" day="20"/>
    <area>Security</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>The Cryptographic Message Syntax (CMS) supports key transport and
key agreement algorithms.  In recent years, cryptographers have been
specifying Key Encapsulation Mechanism (KEM) algorithms, including
quantum-secure KEM algorithms.  This document defines conventions for
the use of KEM algorithms by the originator and recipients to encrypt
CMS content.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="intro">
      <name>Introduction</name>
      <t>The Cryptographic Message Syntax (CMS) enveloped-data content type
<xref target="RFC5652"/> and the CMS authenticated-enveloped-data content type
<xref target="RFC5083"/> support both key transport and key agreement algorithms to
establish the key used to encrypt the content.  In recent years,
cryptographers have be specifying Key Encapsulation Mechanism (KEM)
algorithms, including quantum-secure KEM algorithms.  This document
defines conventions for the use of KEM algorithms for the CMS
enveloped-data content type and the CMS authenticated-enveloped-data
content type.</t>
      <t>A KEM algorithm is a one-pass (store-and-forward) mechanism for
transporting random keying material to a recipient using the recipient's
public key.  The recipient's private key is needed to recover the random
keying material, which is then treated as a pairwise shared secret between
the originator and recipient.  A KEM algorithm provides three functions:</t>
      <ul spacing="normal">
        <li>KeyGen() -&gt; (pk, sk):</li>
      </ul>
      <ul empty="true">
        <li>
          <t>Generate the public key (pk) and a private key (sk).</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>Encapsulate(pk) -&gt; (ct, ss):</li>
      </ul>
      <ul empty="true">
        <li>
          <t>Given the recipient's public key (pk), produce a ciphertext (ct) to be
passed to the recipient and shared secret (ss) for the originator.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>Decapsulate(sk, ct) -&gt; ss:</li>
      </ul>
      <ul empty="true">
        <li>
          <t>Given the private key (sk) and the ciphertext (ct), produce the
shared secret (ss) for the recipient.</t>
        </li>
      </ul>
      <t>To support a particular KEM algorithm, the CMS originator <bcp14>MUST</bcp14> implement
Encapsulate().</t>
      <t>To support a particular KEM algorithm, the CMS recipient <bcp14>MUST</bcp14> implement
KeyGen() and Decapsulate().  The recipient's public key is usually carried
in a certificate <xref target="RFC5280"/>.</t>
      <section anchor="terms">
        <name>Terminology</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>
      </section>
      <section anchor="asn1">
        <name>ASN.1</name>
        <t>CMS values are generated using ASN.1 <xref target="X.680"/>, which uses the Basic
Encoding Rules (BER) and the Distinguished Encoding Rules (DER) <xref target="X.690"/>.</t>
      </section>
      <section anchor="cms-version-numbers">
        <name>CMS Version Numbers</name>
        <t>The major data structures include a version number as the first item in
the data structure.  The version number is intended to avoid ASN.1 decode
errors.  Some implementations do not check the version number prior to
attempting a decode, and then if a decode error occurs, the version
number is checked as part of the error handling routine.  This is a
reasonable approach; it places error processing outside of the fast path.
This approach is also forgiving when an incorrect version number is used
by the sender.</t>
        <t>Whenever the structure is updated, a higher version number will be
assigned.  However, to ensure maximum interoperability, the higher
version number is only used when the new syntax feature is employed.
That is, the lowest version number that supports the generated syntax is
used.</t>
      </section>
    </section>
    <section anchor="kem-processing-overview">
      <name>KEM Processing Overview</name>
      <t>KEM algorithms can be used with  three CMS content types: the
enveloped-data content type <xref target="RFC5652"/>, the authenticated-data
content type <xref target="RFC5652"/>, or the authenticated-enveloped-data
content type <xref target="RFC5083"/>.  For simplicity, the terminology associated
with the enveloped-data content type will be used in this overview.  Thus,
the content-encryption key is used to protect the in CMS content.</t>
      <t>The originator randomly generates the content-encryption key, and then
all recipients obtain that key.  All recipients use the originator-generated
symmetric key to decrypt the CMS message.</t>
      <t>A KEM algorithm and a key-derivation function are used to securely
establish a pairwise symmetric key-encryption key, which is used to encrypt
the originator-generated content-encryption key.</t>
      <t>In advance, each recipient recipient uses KeyGen() to create a key pair,
and then obtains a certificate <xref target="RFC5280"/> that includes the public key.</t>
      <t>The originator establishes the content-encryption key using these steps:</t>
      <ol spacing="normal" type="1"><li>The content-encryption key, called CEK, is generated at random.</li>
        <li>
          <t>For each recipient:  </t>
          <ul spacing="normal">
            <li>The recipient's public key is used with the Encapsulate() function to obtain a pairwise shared secret and the ciphertext for the recipient.</li>
            <li>The key-derivation function is used to derive a pairwise key-encryption key, called KEK, from the pairwise shared secret and other data that is send in the clear.</li>
            <li>The KEK is used to encrypt the CEK for this recipient.</li>
          </ul>
        </li>
      </ol>
      <t>The recipient obtains the content-encryption key using these steps:</t>
      <ol spacing="normal" type="1"><li>The recipient's private key and the ciphertext are used with the Decapsulate() function to obtain a pairwise shared secret.</li>
        <li>The key-derivation function is used to derive a pairwise key-encryption key, called KEK, from the pairwise shared secret and other data that is send in the clear.</li>
        <li>The KEK is used to decrypt the content-encryption key, called CEK.</li>
      </ol>
    </section>
    <section anchor="kemri">
      <name>KEM Recipient Information</name>
      <t>This document defines KEMRecipientInfo for use with KEM algorithms.
As specified in Section 6.2.5 of <xref target="RFC5652"/>, recipient information for
additional key management techniques are represented in the
OtherRecipientInfo type, and they are each identified by a unique
ASN.1 object identifier.</t>
      <t>The object identifier associated with KEMRecipientInfo is:</t>
      <artwork><![CDATA[
  id-ori OBJECT IDENTIFIER ::= { iso(1) member-body(2) us(840)
    rsadsi(113549) pkcs(1) pkcs-9(9) smime(16) 13 }
      
  id-ori-kem OBJECT IDENTIFIER ::= { id-ori TBD1 }
]]></artwork>
      <t>The KEMRecipientInfo type is:</t>
      <artwork><![CDATA[
  KEMRecipientInfo ::= SEQUENCE {
    version CMSVersion,  -- always set to 0
    rid RecipientIdentifier,
    kem KEMAlgorithmIdentifier,
    kemct OCTET STRING,
    kdf KeyDerivationAlgorithmIdentifier,
    kekLength INTEGER (1..MAX),
    ukm [0] EXPLICIT UserKeyingMaterial OPTIONAL,
    wrap KeyEncryptionAlgorithmIdentifier,
    encryptedKey EncryptedKey }
]]></artwork>
      <t>The fields of the KEMRecipientInfo type have the following meanings:</t>
      <ul empty="true">
        <li>
          <t>version is the syntax version number.  The version <bcp14>MUST</bcp14> be 0.  The
CMSVersion type is described in Section 10.2.5 of <xref target="RFC5652"/>.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>rid specifies the recipient's certificate or key that was used by
the originator to with the Encapsulate() function.  The
RecipientIdentifier provides two alternatives for specifying the
recipient's certificate <xref target="RFC5280"/>, and thereby the recipient's public
key.  The recipient's certificate <bcp14>MUST</bcp14> contain a KEM public key.  Therefore,
a recipient X.509 version 3 certificate that contains a key usage
extension <bcp14>MUST</bcp14> assert the keyEncipherment bit.  The issuerAndSerialNumber
alternative identifies the recipient's certificate by the issuer's
distinguished name and the certificate serial number; the
subjectKeyIdentifier identifies the recipient's certificate by a key
identifier.  When an X.509 certificate is referenced, the key identifier
matches the X.509 subjectKeyIdentifier extension value.  When other
certificate formats are referenced, the documents that specify the certificate
format and their use with the CMS must include details on matching
the key identifier to the appropriate certificate field.  For recipient
processing, implementations <bcp14>MUST</bcp14> support both of these alternatives for
specifying the recipient's certificate.  For originator processing,
implementations <bcp14>MUST</bcp14> support at least one of these alternatives.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>kem identifies the KEM algorithm, and any associated parameters, used
by the originator.  The KEMAlgorithmIdentifier is described in <xref target="kemalg"/>.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>kemct is the ciphertext produced by the Encapsulate() function for
this recipient.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>kdf identifies the key-derivation algorithm, and any associated parameters,
used by the originator to generate the key-encryption key.  The
KeyDerivationAlgorithmIdentifier is described in Section 10.1.6 of <xref target="RFC5652"/>.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>kekLength is the size of the key-encryption key in octets.  This value is one
of the inputs to the key-derivation function.  Implementations <bcp14>MUST</bcp14> confirm
that the value provided is consistent with the key-encryption algorithm
identified in the wrap field below.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>ukm is optional.  When the ukm value is provided, it is used as an input to
the key-derivation function as a context input.  For example, user key
material could  include a nonce, an IV, or other data required by the
key-derivation function.  Implementations <bcp14>MUST</bcp14> accept a KEMRecipientInfo
SEQUENCE that includes a ukm field.  Note that this expands of the original
purpose of the ukm described in Section 10.2.6 of <xref target="RFC5652"/>; it is not
limited to being used with key agreement algorithms.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>wrap identifies a key-encryption algorithm used to encrypt the
content-encryption key.  The KeyEncryptionAlgorithmIdentifier
is described in Section 10.1.3 of <xref target="RFC5652"/>.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>encryptedKey is the result of encrypting the content-encryption
key or the content-authenticated-encryption key with the
key-encryption key.  EncryptedKey is an OCTET STRING.</t>
        </li>
      </ul>
    </section>
    <section anchor="kemalg">
      <name>KEM Algorithm Identifier</name>
      <t>The KEMAlgorithmIdentifier type identifies a KEM algorithm used to
establish a pairwise shared secret.  The details of establishment depend on
the KEM algorithm used.  A Key derivation algorithm is used to transform
the pairwise shared secret value into a key-encryption key.</t>
      <artwork><![CDATA[
  KEMAlgorithmIdentifier ::= AlgorithmIdentifier
]]></artwork>
    </section>
    <section anchor="key-derivation">
      <name>Key Derivation</name>
      <t>This section describes the conventions of using the KDF to compute the
key-encryption key for KEMRecipientInfo.  For simplicity, the
terminology used in the HKDF specification <xref target="RFC5869"/> is used here.</t>
      <t>Many KDFs internally employ a one-way hash function.  When this is
the case, the hash function that is used is indirectly indicated by
the KeyDerivationAlgorithmIdentifier.  Other KDFs internally employ an
encryption algorithm.  When this is the case, the encryption that is
used is indirectly indicated by the KeyDerivationAlgorithmIdentifier.</t>
      <t>The KDF inputs are:</t>
      <ul empty="true">
        <li>
          <t>IKM is the input key material. It is a symmetric secret input to
the KDF which may use a hash function or an encryption algorithm
to generate a pseudorandom key. The algorithm used to derive the
IKM is dependent on the algorithm identified in the
KeyDerivationAlgorithmIdentifier.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>L is the length of the output keying material in octets which is
identified in the keklength of the KEMRecipientInfo.  The
value is dependent on the key-encryption algorithm that is used
which is identified in the KeyEncryptionAlgorithmIdentifier.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>info is the context used as in additional input to the KDF; it is
the DER-encoded CMSORIforKEMOtherInfo structure defined as:</t>
        </li>
      </ul>
      <artwork><![CDATA[
  CMSORIforKEMOtherInfo ::= SEQUENCE {
    wrap KeyEncryptionAlgorithmIdentifier,
    kekLength INTEGER (1..MAX),
    ukm [0] EXPLICIT UserKeyingMaterial OPTIONAL
  }
]]></artwork>
      <t>The CMSORIforKEMOtherInfo structure contains:</t>
      <ul empty="true">
        <li>
          <t>wrap identifies a key-encryption algorithm; the output of the
key-derivation function will be used as a key for this algorithm.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>kekLength is the length of the key-encryption key in octets; the
output of the key-derivation function will be exactly this size.</t>
        </li>
      </ul>
      <ul empty="true">
        <li>
          <t>ukm is optional user keying material, which may be useful for some
key-derivation functions.  For example, user keying material could
include a nonce, an IV, or additional key binding information.</t>
        </li>
      </ul>
      <t>The KDF output is:</t>
      <ul empty="true">
        <li>
          <t>OKM is the output keying material with the exact length of L octets.
The OKM is the key-encryption key that is used to encrypt the
content-encryption key or the content-authenticated-encryption key.</t>
        </li>
      </ul>
      <t>An acceptable KDF <bcp14>MUST</bcp14> accept an IKM and L as inputs; an acceptable
KDF <bcp14>MAY</bcp14> also accept salt and other inputs identified in the
UserKeyingMaterial.  All of these inputs <bcp14>MUST</bcp14> influence the
output of the KDF.  If the KDF requires a salt or other inputs, then
those input <bcp14>MUST</bcp14> be provided as parameters of the
KeyDerivationAlgorithmIdentifier.</t>
    </section>
    <section anchor="asn1-mod">
      <name>ASN.1 Modules</name>
      <t>This section provides two ASN.1 modules <xref target="X.680"/>.  The first ASN.1
module is an extension to the AlgorithmInformation-2009 module in
<xref target="RFC5912"/>, and it defines the KEM-ALGORITHM CLASS.  The second
ASN.1 module defines the structures needed to use KEM Algorithms
with CMS <xref target="RFC5652"/>.</t>
      <t>The first ASN.1 module uses EXPLICIT tagging, and the second
ASN.1 module uses IMPLICIT tagging.</t>
      <t>Both ASN.1 modules follow the conventions established in
<xref target="RFC5911"/>, <xref target="RFC5912"/>, and <xref target="RFC6268"/>.</t>
      <section anchor="asn1-mod-1">
        <name>KEMAlgorithmInformation-2023 ASN.1 Module</name>
        <sourcecode type="asn.1" markers="true"><![CDATA[
  KEMAlgorithmInformation-2023
    { iso(1) identified-organization(3) dod(6) internet(1)
      security(5) mechanisms(5) pkix(7) id-mod(0)
          id-mod-kemAlgorithmInformation-2023(TBD3) }

  DEFINITIONS EXPLICIT TAGS ::=
  BEGIN
  -- EXPORTS ALL;
  IMPORTS
    ParamOptions, PUBLIC-KEY, SMIME-CAPS
    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) } ;

  --  KEM-ALGORITHM
  --
  --  Describes the basic properties of a KEM algorithm
  --
  -- Suggested prefixes for KEM algorithm objects is: kema-
  --
  --  &id - contains the OID identifying the KEM algorithm
  --  &Value - if present, contains a type definition for the kemct;
  --               if absent, implies that no ASN.1 encoding is
  --               performed on the kemct value
  --  &Params - if present, contains the type for the algorithm
  --               parameters; if absent, implies no parameters
  --  &paramPresence - parameter presence requirement
  --  &PublicKeySet - specifies which public keys are used with
  --               this algorithm
  --  &Ukm - if absent, type for user keying material
  --  &ukmPresence - specifies the requirements to define the UKM field
  --  &smimeCaps - contains the object describing how the S/MIME
  --               capabilities are presented.
  --
  -- Example:
  -- kema-kem-rsa KEM-ALGORITHM ::= {
  --    IDENTIFIER id-kem-rsa
  --    PARAMS TYPE RsaKemParameters ARE optional
  --    PUBLIC-KEYS { pk-rsa | pk-rsa-kem }
  --    UKM ARE optional
  --    SMIME-CAPS { TYPE GenericHybridParameters
  --        IDENTIFIED BY id-rsa-kem }
  -- }

  KEM-ALGORITHM ::= CLASS {
    &id             OBJECT IDENTIFIER UNIQUE,
    &Value          OPTIONAL,
    &Params         OPTIONAL,
    &paramPresence  ParamOptions DEFAULT absent,
    &PublicKeySet   PUBLIC-KEY OPTIONAL,
    &Ukm            OPTIONAL,
    &ukmPresence    ParamOptions DEFAULT absent,
    &smimeCaps      SMIME-CAPS OPTIONAL
  } WITH SYNTAX {
    IDENTIFIER &id
    [VALUE &Value]
    [PARAMS [TYPE &Params] ARE &paramPresence]
    [PUBLIC-KEYS &PublicKeySet]
    [UKM [TYPE &Ukm] ARE &ukmPresence]
    [SMIME-CAPS &smimeCaps]
  }

  END
]]></sourcecode>
      </section>
      <section anchor="asn1-mod-2">
        <name>CMS-KEMRecipientInfo ASN.1 Module</name>
        <t>RFC Editor: Please replace "[THISRFC]" with the the number assigned
to this document.</t>
        <sourcecode type="asn.1" markers="true"><![CDATA[
  CMS-KEMRecipientInfo-2023
    { iso(1) member-body(2) us(840) rsadsi(113549)
      pkcs(1) pkcs-9(9) smime(16) modules(0)
      id-mod-cms-kemri-2023(TBD2) }

  DEFINITIONS IMPLICIT TAGS ::=
  BEGIN
  -- EXPORTS ALL;
  IMPORTS
    OTHER-RECIPIENT, CMSVersion, RecipientIdentifier,
    EncryptedKey, KeyDerivationAlgorithmIdentifier,
    KeyEncryptionAlgorithmIdentifier, UserKeyingMaterial
      FROM CryptographicMessageSyntax-2010  -- [RFC6268]
        { iso(1) member-body(2) us(840) rsadsi(113549)
          pkcs(1) pkcs-9(9) smime(16) modules(0)
          id-mod-cms-2009(58) }
    KEM-ALGORITHM
      FROM KEMAlgorithmInformation-2023  -- [THISRFC]
        { iso(1) identified-organization(3) dod(6) internet(1)
          security(5) mechanisms(5) pkix(7) id-mod(0)
          id-mod-kemAlgorithmInformation-2023(TBD3) }
    AlgorithmIdentifier{}
      FROM AlgorithmInformation-2009  -- [RFC5912]
        { iso(1) identified-organization(3) dod(6) internet(1)
          security(5) mechanisms(5) pkix(7) id-mod(0)
          id-mod-algorithmInformation-02(58) } ;

  --
  -- OtherRecipientInfo Types (ori-)
  --

  SupportedOtherRecipInfo OTHER-RECIPIENT ::= { ori-KEM, ... }

  ori-KEM OTHER-RECIPIENT ::= {
    KEMRecipientInfo IDENTIFIED BY id-ori-kem }

  id-ori OBJECT IDENTIFIER ::= { iso(1) member-body(2) us(840)
    rsadsi(113549) pkcs(1) pkcs-9(9) smime(16) 13 }

  id-ori-kem OBJECT IDENTIFIER ::= { id-ori TBD1 }

  --
  -- KEMRecipientInfo
  --

  KEMRecipientInfo ::= SEQUENCE {
    version CMSVersion,  -- always set to 0
    rid RecipientIdentifier,
    kem KEMAlgorithmIdentifier,
    kemct OCTET STRING,
    kdf KeyDerivationAlgorithmIdentifier,
    kekLength INTEGER (1..MAX),
    ukm [0] EXPLICIT UserKeyingMaterial OPTIONAL,
    wrap KeyEncryptionAlgorithmIdentifier,
    encryptedKey EncryptedKey }

  KEMAlgSet KEM-ALGORITHM ::= { ... }

  KEMAlgorithmIdentifier ::=
    AlgorithmIdentifier{ KEM-ALGORITHM, {KEMAlgSet} }

  --
  -- CMSORIforKEMOtherInfo
  --

  CMSORIforKEMOtherInfo ::= SEQUENCE {
    wrap KeyEncryptionAlgorithmIdentifier,
    kekLength INTEGER (1..MAX),
    ukm [0] EXPLICIT UserKeyingMaterial OPTIONAL
  }
 
  END
]]></sourcecode>
      </section>
    </section>
    <section anchor="sec-cons">
      <name>Security Considerations</name>
      <t>The Security Considerations of <xref target="RFC5652"/> are applicable to this document.</t>
      <t>To be appropriate for use with this specification, the KEM algorithm <bcp14>MUST</bcp14>
explicitly be designed to be secure when the public key is used many
times.  For example, a KEM algorithm with a single-use public key is not
appropriate because the public key is expected to be carried in a
long-lived certificate <xref target="RFC5280"/> and used over and over.  Thus, KEM
algorithms that offer indistinguishability under adaptive chosen ciphertext
attack (IND-CCA2) security are appropriate.  A common design pattern for
obtaining IND-CCA2 security with public key reuse is to apply the
Fujisaki-Okamoto (FO) transform <xref target="FO"/> or a variant of the FO
transform <xref target="HHK"/>.</t>
      <t>The choice of the KDF <bcp14>SHOULD</bcp14> be made based on the security
level provided by the KEM. The KDF <bcp14>SHOULD</bcp14> at least have the
security level of the KEM.</t>
      <t>KEM algorithms do not provide data origin authentication; therefore, when
a KEM algorithm is used to with the authenticated-data content type, the
contents are delivered with integrity from an unknown source.</t>
      <t>Implementations <bcp14>MUST</bcp14> protect the KEM private key, the key-encryption key, the
content-encryption key and the content-authenticated-encryption.  Compromise
of the KEM private key may result in the disclosure of all contents protected
with that KEM private key.  However, compromise of the key-encryption key, the
content-encryption key, or the content-authenticated-encryption may result in
disclosure of the encrypted content of a single message.</t>
      <t>The KEM produces the IKM input value for the KDF.  This IKM value <bcp14>MUST NOT</bcp14>
be reused for any other purpose.  Likewise, any random value used to by
the KEM algorithm to produce the shared secret or its encapsulation <bcp14>MUST NOT</bcp14>
be reused for any other purpose.  That is, the originator <bcp14>MUST</bcp14> generate a
fresh KEM shared secret for each recipient in the KEMRecipientInfo
structure, including any random value used by the KEM algorithm to produce
the KEM shared secret.  In addition, the originator <bcp14>MUST</bcp14> discard the KEM shared
secret, including any random value used by the KEM algorithm to produce
the KEM shared secret, after constructing the entry in the KEMRecipientInfo
structure for the corresponding recipient.  Similarly, the recipient <bcp14>MUST</bcp14>
discard the KEM shared secret, including any random value used by the KEM
algorithm to produce the KEM shared secret, after constructing the
key-encryption key from the KEMRecipientInfo structure.</t>
      <t>Implementations <bcp14>MUST</bcp14> randomly generate content-encryption keys,
content-authenticated-encryption keys, and message-authentication keys.
Also, the generation of KEM key pairs relies on random numbers.  The use
of inadequate pseudo-random number generators (PRNGs) to generate these
keys can result in little or no security.  An attacker may find it much
easier to reproduce the PRNG environment that produced the keys,
searching the resulting small set of possibilities, rather than brute
force searching the whole key space.  The generation of quality random
numbers is difficult.  <xref target="RFC4086"/> offers important guidance in this area.</t>
      <t>If the cipher and key sizes used for the key-encryption and the
content-encryption algorithms are different, the effective security is
determined by the weaker of the two algorithms.  If, for example, the
content is encrypted with AES-CBC using a 128-bit content-encryption key,
and the content-encryption key is wrapped with AES-KEYWRAP using a 256-bit
key-encryption key, then at most 128 bits of protection is provided.</t>
      <t>If the cipher and key sizes used for the key-encryption and the
content-authenticated-encryption algorithms are different, the effective
security is determined by the weaker of the two algorithms.  If, for example,
the content is encrypted with AES-GCM using a 128-bit
content-authenticated-encryption key, and the content-authenticated-encryption
key is wrapped with AES-KEYWRAP using a 192-bit key-encryption key, then at
most 128 bits of protection is provided.</t>
      <t>If the cipher and key sizes used for the key-encryption and the
message-authentication algorithms are different, the effective security is
determined by the weaker of the two algorithms.  If, for example, the
content is authenticated with HMAC-SHA256 using a 512-bit
message-authentication key, and the message-authentication key is wrapped
with AES-KEYWRAP using a 256-bit key-encryption key, then at most 256 bits of
protection is provided.</t>
      <t>Implementers should be aware that cryptographic algorithms, including KEM
algorithms, become weaker with time.  As new cryptoanalysis techniques are
developed and computing capabilities advance, the work factor to break a
particular cryptographic algorithm will be reduced.  As a result,
cryptographic algorithm implementations should be modular, allowing new
algorithms to be readily inserted.  That is, implementers should be prepared
for the set of supported algorithms to change over time.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>For KEMRecipientInfo in <xref target="kemri"/>, IANA is requested to assign an
object identifier (OID) to replace TBD1.  The OID for KEMRecipientInfo should
be allocated  in the "SMI Security for S/MIME Other Recipient Info
Identifiers" registry (1.2.840.113549.1.9.16.13).</t>
      <t>For the ASN.1 Module in <xref target="asn1-mod-1"/>, IANA is requested to assign an
object identifier (OID) for the module identifier to replace TBD3. The
OID for the module should be allocated in the "SMI Security for PKIX
Module Identifier" registry (1.3.6.1.5.5.7.0).</t>
      <t>For the ASN.1 Module in <xref target="asn1-mod-2"/>, IANA is requested to assign an
object identifier (OID) for the module identifier to replace TBD2.  The
OID for the module should be allocated in the "SMI Security for S/MIME
Module Identifier" registry (1.2.840.113549.1.9.16.0).</t>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Our thanks to Burt Kaliski for his guidance and design review.</t>
      <t>Our thanks to Carl Wallace for his careful review of the ASN.1 modules.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC5083" target="https://www.rfc-editor.org/info/rfc5083">
          <front>
            <title>Cryptographic Message Syntax (CMS) Authenticated-Enveloped-Data Content Type</title>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <date month="November" year="2007"/>
            <abstract>
              <t>This document describes an additional content type for the Cryptographic Message Syntax (CMS).  The authenticated-enveloped-data content type is intended for use with authenticated encryption modes. All of the various key management techniques that are supported in the CMS enveloped-data content type are also supported by the CMS authenticated-enveloped-data content type.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5083"/>
          <seriesInfo name="DOI" value="10.17487/RFC5083"/>
        </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="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="X.690" target="https://www.itu.int/rec/T-REC-X.680">
          <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>
        <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="RFC4086" target="https://www.rfc-editor.org/info/rfc4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <author fullname="J. Schiller" initials="J." surname="Schiller">
              <organization/>
            </author>
            <author fullname="S. Crocker" initials="S." surname="Crocker">
              <organization/>
            </author>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts.  However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities.  The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult.  This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities.  It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications.  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="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="RFC5869" target="https://www.rfc-editor.org/info/rfc5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5869"/>
          <seriesInfo name="DOI" value="10.17487/RFC5869"/>
        </reference>
        <reference anchor="RFC5911" target="https://www.rfc-editor.org/info/rfc5911">
          <front>
            <title>New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <author fullname="J. Schaad" initials="J." surname="Schaad">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="J. Schaad" initials="J." surname="Schaad">
              <organization/>
            </author>
            <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" target="https://www.rfc-editor.org/info/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">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <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="FO" target="http://dx.doi.org/10.1007/s00145-011-9114-1">
          <front>
            <title>Secure Integration of Asymmetric and Symmetric Encryption Schemes</title>
            <author fullname="Eiichiro Fujisaki" surname="Fujisaki"/>
            <author fullname="Tatsuaki Okamoto" surname="Okamoto"/>
            <author>
              <organization>Springer Science and Business Media LLC</organization>
            </author>
            <date day="2" month="December" year="2011"/>
          </front>
          <refcontent>Journal of Cryptology, vol. 26, no. 1, pp. 80-101</refcontent>
          <seriesInfo name="DOI" value="10.1007/s00145-011-9114-1"/>
        </reference>
        <reference anchor="HHK" target="http://dx.doi.org/10.1007/978-3-319-70500-2_12">
          <front>
            <title>A Modular Analysis of the Fujisaki-Okamoto Transformation</title>
            <author fullname="Dennis Hofheinz" surname="Hofheinz"/>
            <author fullname="Kathrin Hövelmanns" surname="Hövelmanns"/>
            <author fullname="Eike Kiltz" surname="Kiltz"/>
            <author>
              <organization>Springer International Publishing</organization>
            </author>
            <date year="2017"/>
          </front>
          <refcontent>Theory of Cryptography, pp. 341-371</refcontent>
          <seriesInfo name="DOI" value="10.1007/978-3-319-70500-2_12"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAJLh82MAA+08a3PbRpLf51fM2VVnao9gRNlyJPk2tTRFWVw9T6STuFKu
rSEwlBCRAIMBJWt1ym+533K/7Lp7HpgBQUnO7qZ2q867sQlgHj3dPf2eiaKI
qVJkyV/ELM/kHi+LpWTpoqBfqtza3Nzd3GJJHmdiDp+TQkzL6Cpfqpm8i2Zi
vlBRPFfRtZwXaQQtY1HucVUmLM4zJTO1VHv8FQ76ii3SPcZ5mcfw5k6qV/Cg
8qIs5FR5b+7m/osyLWcw7auPKs0u+ZG844MsFgu1nIkyzTN+IuMrkaVqzltH
g5MN3ptd5kVaXs0VTzNeXkneL+4WZX5ZiMVVGkN7pcSl5KO7rBRfeKt/Mtp4
xcRkUsibPQ5PHIa5kHG6SGVWDrNpztRyMk+VgtnGdwuAZTgYHzBRSLHHRzJe
wmx37PoW3melLDJZRvuII5aIEhpvbW69BrREW5uMiWV5lRd7LOIalxdLpfih
RiWsPC8u9/j36WU6c+O2+fFxHz5Z+MKv8CGGf/b4Icyb5Fmbf9/Dd/kyKwt4
/XEET3Iu0tkeNxT70w2OoGTcifO5A+TP+VXGPxTCQTHIiPhugpM0y6RY5LNU
tfnJ6bpJfoZxOoDpuz9JPUAwyzif59PlPOVn18tJbqfaB4D6sijbgL+4463V
fnBAHIi0mIovj62yNFN0cpziP1JZTv90iZ8IEJYCOYs5MM6NRE68OOi/2dx5
a35u77zdtT93u93q55b5+Xbr7Q7+PDgD4M6Gne4m/H/z22/U5mb3zXa02e1G
0O9N1IU2h4dHYaPdb3ei19Hr7m707eb25ma09ZfuFmNZDZztzZ3X9ufWzqb9
+XabYPix81a/g00kiksJG+2qLBdq75tvbm9vO2m57KRZ+U0h42/G0cWgH1EH
3V5vo+/ogfOhRQTsoBJ2UJbP8ss7DrJAf+9NVFmIuLTb5DQvdeOzTPJWb3Ta
6W7smbajBeyWaRrrBvmUT4SCjZaZLtTKcj7+jjTdh+OP0ZheuI3SRfmBb5Qs
UqmQWnYSas1hX+bzucwSGnmPV+uDFqOzb4aD/h7f2dkCGuzheBpnu78TzhAr
XGZxnqCoKpYzCVJsBTvvCTsD2+wCm/HW+8HFRtsM1BdZnkGP2UqrPrTiIKth
b6gS3i9TdSWTlWb70OwfjPbdJrRvW7SzKIpgH2seYmz8LCnM1XKxAHWg+DVI
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

-->

</rfc>
