<?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.18 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lamps-cms-cek-hkdf-sha256-04" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.0 -->
  <front>
    <title abbrev="Encryption Key Derivation in CMS">Encryption Key Derivation in the Cryptographic Message Syntax (CMS) using HKDF with SHA-256</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-cms-cek-hkdf-sha256-04"/>
    <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>
    <date year="2024" month="September" day="10"/>
    <area>Security</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 82?>

<t>This document specifies the derivation of the content-encryption key or the
content-authenticated-encryption key in the Cryptographic Message Syntax (CMS).
The use of this mechanism provides protection against where the attacker manipulates the
content-encryption algorithm identifier or the content-authenticated-encryption
algorithm identifier.</t>
    </abstract>
  </front>
  <middle>
    <?line 90?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document specifies the derivation of the content-encryption key for the
Cryptographic Message Syntax (CMS) enveloped-data content type <xref target="RFC5652"/>, the
content-encryption key for the CMS encrypted-data content type <xref target="RFC5652"/>, or the
content-authenticated-encryption key for the authenticated-enveloped-data
content type <xref target="RFC5083"/>.</t>
      <t>The use of this mechanism provides protection against where the attacker manipulates the
content-encryption algorithm identifier or the content-authenticated-encryption
algorithm identifier.  Johannes Roth and Falko Strenzke presented such an attack
at IETF 118 <xref target="RS2023"/>, where:</t>
      <ol spacing="normal" type="1"><li>
          <t>The attacker intercepts a CMS Authenticated-Enveloped-Data content <xref target="RFC5083"/>
that uses either AES-CCM or AES-GCM <xref target="RFC5084"/>.</t>
        </li>
        <li>
          <t>The attacker turns the intercepted content into a "garbage" CMS Enveloped-Data
content <xref section="6" sectionFormat="of" target="RFC5652"/> that is composed of AES-CBC guess blocks.</t>
        </li>
        <li>
          <t>The attacker sends the "garbage" message to the victim, and the victim reveals
the result of the decryption to the attacker.</t>
        </li>
        <li>
          <t>If any of the transformed plaintext blocks match the guess for that block, then
the attacker learns the plaintext for that block.</t>
        </li>
      </ol>
      <t>With highly structured messages, one block can reveal the only sensitive part of
the original message.</t>
      <t>This attack is thwarted if the encryption key depends upon the delivery of
the unmodified algorithm identifier.</t>
      <t>The mitigation for this attack has three parts:</t>
      <ul spacing="normal">
        <li>
          <t>Potential recipients include the id-alg-cek-hkdf-sha256 algorithm identifier
(with no parameters) in S/MIME Capabilities to indicate support for
this mitigation.</t>
        </li>
        <li>
          <t>As a flag to the recipient that this mitigation is being used, carry the
id-alg-cek-hkdf-sha256 algorithm identifier as the contentEncryptionAlgorithm
in the EncryptedContentInfo structure.  This structure is used in the
enveloped-data content type, the encrypted-data content type, and the
authenticated-enveloped-data content type.  The parameters field of the
id-alg-cek-hkdf-sha256 algorithm identifier identifies the content-encryption
algorithm or the content-authenticated-encryption algorithm and any associated
parameters.</t>
        </li>
        <li>
          <t>Perform encryption with a derived content-encryption key or
content-authenticated-encryption key:</t>
        </li>
      </ul>
      <artwork><![CDATA[
      CEK' = HKDF(CEK, AlgorithmIdentifier)
]]></artwork>
      <section anchor="asn1">
        <name>ASN.1</name>
        <t>CMS values are generated using ASN.1 <xref target="X680"/>, using the Basic
Encoding Rules (BER) and the Distinguished Encoding Rules
(DER) <xref target="X690"/>.</t>
      </section>
      <section anchor="terminology">
        <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>
        <?line -18?>

</section>
    </section>
    <section anchor="cmskdf">
      <name>Use of of HKDF with SHA-256 to Derive Encryption Keys</name>
      <t>The mitigation uses the HMAC-based Extract-and-Expand Key Derivation
Function (HKDF) <xref target="RFC5869"/> to derive output keying material (OKM) from
input key material (IKM).  HKDF is used with the SHA-256 hash function
<xref target="FIPS180"/>.  The derivation includes the DER-encoded AlgorithmIdentifier as
the optional info input value.  The encoded value includes the ASN.1 tag
for SEQUENCE (0x30), the length, and the value.  This AlgoritmIdentifier is
carried as the parameter to the id-alg-cek-hkdf-sha256 algorithm identifier.  If
an attacker were to change the originator-provided AlgoritmIdentifier, then the
recipient will derive a different content-encryption key or
content-authenticated-encryption key.</t>
      <t>The CMS_CEK_HKDF_SHA256 function uses the HKDF-Extract and HKDF-Expand functions
to derive the OKM from the IKM:</t>
      <artwork><![CDATA[
Inputs:
   IKM      input keying material
   info     DER-encoded AlgoritmIdentifier

Output:
   OKM      output keying material (same size as IKM)

The output OKM is calculated as follows:

   OKM_SIZE = len(IKM)
   IF OKM_SIZE > 8160 THEN raise error

   salt = "The Cryptographic Message Syntax"
   PRK = HKDF-Extract(salt, IKM)

   OKM = HKDF-Expand(PRK, info, OKM_SIZE)
   
]]></artwork>
    </section>
    <section anchor="alg-def">
      <name>The id-alg-cek-hkdf-sha256 Algorithm Identifier</name>
      <t>The id-alg-cek-hkdf-sha256 algoritm identifier indicates that the CMS_CEK_HKDF_SHA256
function defined in <xref target="cmskdf"/> is used to derive the content-encryption key or the
content-authenticated-encryption key.</t>
      <t>The following object identifier identifies the id-alg-cek-hkdf-sha256
algorithm:</t>
      <sourcecode type="asn.1"><![CDATA[
   id-alg-cek-hkdf-sha256 OBJECT IDENTIFIER ::= { iso(1)
      member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs-9(9)
      smime(16) alg(3) 31 }
]]></sourcecode>
      <t>The id-alg-cek-hkdf-sha256 parameters field has an ASN.1 type of AlgorithmIdentifier.</t>
      <t>Using the conventions from <xref target="RFC5911"/>, the id-alg-cek-hkdf-sha256 algorithm identifier
is defined as:</t>
      <sourcecode type="asn.1"><![CDATA[
  ContentEncryptionAlgorithmIdentifier ::=
    AlgorithmIdentifier{CONTENT-ENCRYPTION, { ... } }

  cea-CEKHKDFSHA256 CONTENT-ENCRYPTION ::= {
    IDENTIFIER id-alg-cek-hkdf-sha256
    PARAMS TYPE ContentEncryptionAlgorithmIdentifier ARE required
    SMIME-CAPS { IDENTIFIED BY id-alg-cek-hkdf-sha256 } }
]]></sourcecode>
    </section>
    <section anchor="smimecapabilities-attribute-conventions">
      <name>SMIMECapabilities Attribute Conventions</name>
      <t>The SMIMECapabilities Attribute is defined in <xref section="2.5.2" sectionFormat="of" target="RFC8551"/>.  An
S/MIME client announces the set of cryptographic functions it supports using the
SMIMECapabilities attribute.</t>
      <t>If an S/MIME client supports the mechanism in this document, the
id-alg-cek-hkdf-sha256 object identifier <bcp14>SHOULD</bcp14> be included in the set of
cryptographic functions.  The parameter with this encoding <bcp14>MUST</bcp14> be absent.</t>
      <t>The encoding for id-alg-cek-hkdf-sha256, in hexadecimal, is:</t>
      <artwork><![CDATA[
   30 0d 06 0b 2a 86 48 86 f7 0d 01 09 10 03 1f
]]></artwork>
    </section>
    <section anchor="use-of-hkdf-with-sha-256-with-cms">
      <name>Use of HKDF with SHA-256 with CMS</name>
      <t>This section describes the originator and recipient processing to implement
this mitigation for each of the CMS encrypting content types.</t>
      <section anchor="enveloped-data-content-type">
        <name>Enveloped-Data Content Type</name>
        <t>The fourth step of constructing an Enveloped-data is repeated below
from <xref section="6" sectionFormat="of" target="RFC5652"/>:</t>
        <artwork><![CDATA[
4.  The content is encrypted with the content-encryption key.
    Content encryption may require that the content be padded to a
    multiple of some block size; see Section 6.3 of [RFC5652].

]]></artwork>
        <t>To implement this mitigation, the originator expands this step as follows:</t>
        <ul spacing="normal">
          <li>
            <t>Include the id-alg-cek-hkdf-sha256 algorithm identifier in the
contentEncryptionAlgorithm.algorithm field of the EncryptedContentInfo
structure, and set the contentEncryptionAlgorithm.parameters field to the
AlgorithmIdentifier for the content-encryption algorithm that will be used
to encrypt the content, including both the algorithm and optional parameters.</t>
          </li>
          <li>
            <t>Derive the new content-encryption key (CEK') from the original
content-encryption key (CEK) and the ContentEncryptionAlgorithmIdentifier,
which is carried in the contentEncryptionAlgorithm.parameters field:</t>
          </li>
        </ul>
        <artwork><![CDATA[
CEK' = CMS_CEK_HKDF_SHA256(CEK, ContentEncryptionAlgorithmIdentifier)
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>The content is encrypted with the new content-encryption key (CEK').
Content encryption may require that the content be padded to a
multiple of some block size; see <xref section="6.3" sectionFormat="of" target="RFC5652"/>.</t>
          </li>
        </ul>
        <t>The presence of the id-alg-cek-hkdf-sha256 algorithm identifier in the
contentEncryptionAlgorithm.algorithm field of the EncryptedContentInfo
structure tells the recipient to derive the new content-encryption
key (CEK') as shown above, and then use it for decryption of the
EncryptedContent.  If the id-alg-cek-hkdf-sha256 algorithm identifier
is not present in the contentEncryptionAlgorithm.algorithm field of
the EncryptedContentInfo structure, then the recipient uses the original
content-encryption key (CEK) for decryption of the EncryptedContent.</t>
      </section>
      <section anchor="encrypted-data-content-type">
        <name>Encrypted-Data Content Type</name>
        <t>As specified in <xref section="8" sectionFormat="of" target="RFC5652"/>, the content-encryption key
is managed by other means.</t>
        <t>To implement this mitigation, the originator performs the following:</t>
        <ul spacing="normal">
          <li>
            <t>Include the id-alg-cek-hkdf-sha256 algorithm identifier in the
contentEncryptionAlgorithm.algorithm field of the EncryptedContentInfo
structure, and set the contentEncryptionAlgorithm.parameters field to the
AlgorithmIdentifier for the content-encryption algorithm that will be used
to encrypt the content, including both the algorithm and optional parameters.</t>
          </li>
          <li>
            <t>Derive the new content-encryption key (CEK') from the original
content-encryption key (CEK) and the ContentEncryptionAlgorithmIdentifier,
which is carried in the contentEncryptionAlgorithm.parameters field:</t>
          </li>
        </ul>
        <artwork><![CDATA[
CEK' = CMS_CEK_HKDF_SHA256(CEK, ContentEncryptionAlgorithmIdentifier)
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>The content is encrypted with the new content-encryption key (CEK').
Content encryption may require that the content be padded to a
multiple of some block size; see <xref section="6.3" sectionFormat="of" target="RFC5652"/>.</t>
          </li>
        </ul>
        <t>The presence of the id-alg-cek-hkdf-sha256 algorithm identifier in the
contentEncryptionAlgorithm.algorithm field of the EncryptedContentInfo
structure tells the recipient to derive the new content-encryption
key (CEK') as shown above, and then use it for decryption of the
EncryptedContent.  If the id-alg-cek-hkdf-sha256 algorithm identifier
is not present in the contentEncryptionAlgorithm.algorithm field of
the EncryptedContentInfo structure, then the recipient uses the original
content-encryption key (CEK) for decryption of the EncryptedContent.</t>
      </section>
      <section anchor="authenticated-enveloped-data-content-type">
        <name>Authenticated-Enveloped-Data Content Type</name>
        <t>The fifth step of constructing an Authenticated-Enveloped-Data is
repeated below from <xref section="2" sectionFormat="of" target="RFC5083"/>:</t>
        <artwork><![CDATA[
5.  The attributes collected in step 4 are authenticated and the CMS
    content is authenticated and encrypted with the content-
    authenticated-encryption key.  If the authenticated encryption
    algorithm requires either the additional authenticated data (AAD)
    or the content to be padded to a multiple of some block size,
    then the padding is added as described in Section 6.3 of
    [RFC5652].

]]></artwork>
        <t>To implement this mitigation, the originator expands this step as follows:</t>
        <ul spacing="normal">
          <li>
            <t>Include the id-alg-cek-hkdf-sha256 algorithm identifier in the
contentEncryptionAlgorithm.algorithm field of the EncryptedContentInfo
structure, and set the contentEncryptionAlgorithm.parameters field to the
AlgorithmIdentifier for the content-authenticated-encryption algorithm that
will be used for authenticated encryption of the content, including both the
algorithm and optional parameters.</t>
          </li>
          <li>
            <t>Derive the new content-authenticated-encryption key (CEK') from the
original content-authenticated-encryption key (CEK) and the
ContentEncryptionAlgorithmIdentifier:</t>
          </li>
        </ul>
        <artwork><![CDATA[
CEK' = CMS_CEK_HKDF_SHA256(CEK, ContentEncryptionAlgorithmIdentifier)
]]></artwork>
        <ul spacing="normal">
          <li>
            <t>The attributes collected in step 4 are authenticated and the CMS
content is authenticated and encrypted with the new
content-authenticated-encryption key (CEK').  If the authenticated
encryption algorithm requires either the additional authenticated data (AAD)
or the content to be padded to a multiple of some block size,
then the padding is added as described in <xref section="6.3" sectionFormat="of" target="RFC5652"/>.</t>
          </li>
        </ul>
        <t>The presence of the id-alg-cek-hkdf-sha256 algorithm identifier in the
contentEncryptionAlgorithm.algorithm field of the EncryptedContentInfo
structure tells the recipient to derive the new content-authenticated-encryption
key (CEK') as shown above, and then use it for authenticated decryption of the
EncryptedContent and the authentication of the AAD.  If the id-alg-cek-hkdf-sha256
algorithm identifier is not present in the contentEncryptionAlgorithm.algorithm
field of the EncryptedContentInfo structure, then the recipient uses the original
content-authenticated-encryption (CEK) for decryption and authentication of
the EncryptedContent and the authentication of the AAD.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This mitigation always uses HKDF with SHA-256.  One KDF algorithm was
selected to avoid the need for negotiation.  In the future, if a weakness
is found in the KDF algorithm, a new attribute  will need to be assigned for
use with an alternative KDF algorithm.</t>
      <t>If the attacker removes the id-alg-cek-hkdf-sha256 object identifier from the
contentEncryptionAlgorithm.algorithm field of the EncryptedContentInfo
structure prior to delivery to the recipient, then the recipient will not
attempt to derive CEK', which will deny the recipient access to the content,
but will not assist the attacker in recovering the plaintext content.</t>
      <t>If the attacker changes contentEncryptionAlgorithm.parameters field of the
EncryptedContentInfo structure prior to delivery to the recipient, then the
recipient will derive a different CEK', which will not assist the attacker in
recovering the plaintext content.  Providing the object identifier as an input to
the key derivation function is sufficient to mitigate the attack described
in <xref target="RS2023"/>, but this mitigation includes both the object identifier and the
parameters to protect against some yet-to-be-discovered attack that only
manipulates the parameters.</t>
      <t>Implementations <bcp14>MUST</bcp14> protect the content-encryption keys and
content-authenticated-encryption keys, this includes the CEK and CEK'.
Compromise of a content-encryption key may result in disclosure of the
associated encrypted content.  Compromise of a content-authenticated-encryption
key may result in disclosure of the associated encrypted content or allow
modification of the authenticated content and the additional authenticated
data (AAD).</t>
      <t>Implementations <bcp14>MUST</bcp14> randomly generate content-encryption keys and
content-authenticated-encryption keys.  Using an inadequate pseudo-random
number generator (PRNG) to generate cryptographic keys can result in little or
no security.  An attacker may find it much easier to reproduce the PRNG
environment that produced the keys, and then 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 on this topic.</t>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>If the message-digest attribute is included in the AuthAttributes,
then the attribute value will contain the unencrypted one-way hash
value of the plaintext of the content.  Disclosure of this hash value
enables content tracking, and it can be used to determine if the
content matches one or more candidates.  For these reasons,
the AuthAttributes <bcp14>SHOULD NOT</bcp14> contain the message-digest attribute.</t>
    </section>
    <section anchor="operations-considerations">
      <name>Operations Considerations</name>
      <t>CMS is often used to provide encryption in messaging environments,
where various forms of unsolicited messages (such as spam and phishing)
represent a significant volume of unwanted traffic.  Mitigation strategies for
unwanted message traffic involve analysis of message content plaintext.  When
recipients accept unsolicited encrypted messages, they become even more
vulnerable to unwanted traffic since many mitigation strategies will be
unable to access the message content plaintext.  Therefore, software that
receives messages that have been encrypted using CMS ought to provide alternate
mechanisms to handle the unwanted message traffic.  One approach that
does not require disclosure of keying material to a server is to reject
or discard encrypted messages unless they purport to come from a member
of a previously approved originator list.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>For the ASN.1 Module in the <xref target="appendix-asn1"/> of this document, IANA
is requested to assign an object identifier (OID) for the module
identifier (TBD0) with a Description of "id-mod-CMS-CEK-HKDF-SHA256-2023".  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>
      <t>IANA has allocated the id-alg-cek-hkdf-sha256 algorithm identifier as specified
in <xref target="alg-def"/> of this document.  The object identifier (OID) value of
1.2.840.113549.1.9.16.3.31 was allocated with a description of
"id-alg-cek-hkdf-sha256" in the "SMI Security for S/MIME Algorithms"
registry (1.2.840.113549.1.9.16.3).</t>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Thanks to
Mike Ounsworth,
Carl Wallace, and
Joe Mandel
their careful review and constructive comments.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC5083">
          <front>
            <title>Cryptographic Message Syntax (CMS) Authenticated-Enveloped-Data Content Type</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <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="RFC5652">
          <front>
            <title>Cryptographic Message Syntax (CMS)</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <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="RFC5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <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="RFC8551">
          <front>
            <title>Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 4.0 Message Specification</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <author fullname="B. Ramsdell" initials="B." surname="Ramsdell"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="April" year="2019"/>
            <abstract>
              <t>This document defines Secure/Multipurpose Internet Mail Extensions (S/MIME) version 4.0. S/MIME provides a consistent way to send and receive secure MIME data. Digital signatures provide authentication, message integrity, and non-repudiation with proof of origin. Encryption provides data confidentiality. Compression can be used to reduce data size. This document obsoletes RFC 5751.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8551"/>
          <seriesInfo name="DOI" value="10.17487/RFC8551"/>
        </reference>
        <reference anchor="FIPS180">
          <front>
            <title>Secure Hash Standard (SHS)</title>
            <author>
              <organization>National Institute of Standards and Technology (NIST)</organization>
            </author>
            <date year="2015" month="August"/>
          </front>
          <seriesInfo name="FIPS PUB" value="180-4"/>
        </reference>
        <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="ITU-T Recommendation" value="X.680"/>
          <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 -- 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">
          <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="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <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="RFC5084">
          <front>
            <title>Using AES-CCM and AES-GCM Authenticated Encryption in the Cryptographic Message Syntax (CMS)</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="November" year="2007"/>
            <abstract>
              <t>This document specifies the conventions for using the AES-CCM and the AES-GCM authenticated encryption algorithms with the Cryptographic Message Syntax (CMS) authenticated-enveloped-data content type. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5084"/>
          <seriesInfo name="DOI" value="10.17487/RFC5084"/>
        </reference>
        <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="RS2023" target="https://datatracker.ietf.org/meeting/118/materials/slides-118-lamps-attack-against-aead-in-cms">
          <front>
            <title>AEAD-to-CBC Downgrade Attacks on CMS</title>
            <author initials="J." surname="Roth" fullname="Johannes Roth">
              <organization>MTG AG</organization>
            </author>
            <author initials="F." surname="Strenzke" fullname="Falko Strenzke">
              <organization>MTG AG</organization>
            </author>
            <date year="2023" month="November" day="08"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 474?>

<section anchor="appendix-asn1">
      <name>ASN.1 Module</name>
      <t>This ASN.1 Module builds upon the conventions established in <xref target="RFC5911"/> and <xref target="RFC5912"/>.</t>
      <sourcecode type="asn.1"><![CDATA[
<CODE STARTS>

CMS-CEK-HKDF-SHA256-Module-2024
  { iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs9(9)
    id-smime(16) id-mod(0) id-mod-CMS-CEK-HKDF-SHA256-2024(TBD0) }

DEFINITIONS IMPLICIT TAGS ::= BEGIN

EXPORTS ALL;

IMPORTS
  AlgorithmIdentifier{}, CONTENT-ENCRYPTION, SMIME-CAPS
  FROM AlgorithmInformation-2009 -- in [RFC5911]
    { iso(1) identified-organization(3) dod(6) internet(1)
      security(5) mechanisms(5) pkix(7) id-mod(0)
      id-mod-algorithmInformation-02(58) } ;


--
-- CEK-HKDF-SHA256 Algorithm
--

id-alg-cek-hkdf-sha256 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
    us(840) rsadsi(113549) pkcs(1) pkcs-9(9) smime(16) alg(3) 31 }

ContentEncryptionAlgorithmIdentifier ::=
    AlgorithmIdentifier{CONTENT-ENCRYPTION, { ... } }

cea-CEKHKDFSHA256 CONTENT-ENCRYPTION ::= {
    IDENTIFIER id-alg-cek-hkdf-sha256
    PARAMS TYPE ContentEncryptionAlgorithmIdentifier ARE required
    SMIME-CAPS { IDENTIFIED BY id-alg-cek-hkdf-sha256 } }

--
-- S/MIIME Capability for CEK-HKDF-SHA256 Algorithm
--

SMimeCaps SMIME-CAPS ::= { cap-CMSCEKHKDFSHA256, ... }

cap-CMSCEKHKDFSHA256 SMIME-CAPS ::=
    { -- No value -- IDENTIFIED BY id-alg-cek-hkdf-sha256 }
     
END

<CODE ENDS>
]]></sourcecode>
    </section>
    <section anchor="cmscekhkdfsha256-function-examples">
      <name>CMS_CEK_HKDF_SHA256 Function Examples</name>
      <t>This appendix provides two test vectores for the CMS_CEK_HKDF_SHA256 function.</t>
      <section anchor="cmscekhkdfsha256-with-aes-128-gcm">
        <name>CMS_CEK_HKDF_SHA256 with AES-128-GCM</name>
        <t>This test vector uses includes an AlgorithmIdentifier for<br/>
AES-128-GCM.</t>
        <artwork><![CDATA[
IKM = c702e7d0a9e064b09ba55245fb733cf3

The AES-128-GCM AlgorithmIdentifier:
 algorithm=2.16.840.1.101.3.4.1.6
 parameters=GCMParameters:
  aes-nonce=0x5c79058ba2f43447639d29e2
  aes-ICVlen is ommited; it indicates the DEFAULT of 12

DER-encoded AlgorithmIdentifier:
  301b0609608648016503040106300e040c5c79058ba2f43447639d29e2

OKM = 2124ffb29fac4e0fbbc7d5d87492bff3

]]></artwork>
      </section>
      <section anchor="cmscekhkdfsha256-with-aes-128-cbc">
        <name>CMS_CEK_HKDF_SHA256 with AES-128-CBC</name>
        <t>This test vector uses includes an AlgorithmIdentifier for<br/>
AES-128-CBC.</t>
        <artwork><![CDATA[
IKM = c702e7d0a9e064b09ba55245fb733cf3

The AES-128-CBC AlgorithmIdentifier:
 algorithm=2.16.840.1.101.3.4.1.2
 parameters=AES-IV=0x651f722ffd512c52fe072e507d72b377

DER-encoded AlgorithmIdentifier:
  301d06096086480165030401020410651f722ffd512c52fe072e507d72b377

OKM = 9cd102c52f1e19ece8729b35bfeceb50

]]></artwork>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
