<?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.17 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lamps-cms-cek-hkdf-sha256-02" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.22.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-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>
    <date year="2024" month="July" day="08"/>
    <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 AlgoritmIdentifier 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>
      <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 473?>

<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 [FRC5911]
    { 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-CGM 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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
Ur66lK8u5atL+epS/qe4lAdbVEryMH/6QBr24GK+YsWkjG8kZbYQoXthQMG1
XnZMVpYWDLDnJAhgkjYcBEybjuYK1cPMKpk+45xqbw98INFLWwt3FiZTeSqu
Wzh9zp8/G1OQtvjQVM/zje0urkIZbaXXO9GlxaJLMaeROfvxkPXQHZepgOEs
5BwShOYLxQsHmUUrQ5O/ppt/UWzwhCYE9BzoPXOxAi2zS+o2Oh3LwodCW8TO
AILz3SHEg82HGwEFXWswnUpPnl/NNZc8xZ3/VZHBF9qf51ofoPETu0Js6FFu
hai1p0SYPt8GfakFerr9+X8Q5+xsZ31m1LPBr0djoFQ6cxNzJgNY/ViUVNpw
yz8/SmKPEvmzo6Sd2lMaL1Gv1yZVSkO3JxCRjnHMDS20OQpoFYv02KZYOBfB
WtwqjchW8R74gZdR8HVG+bVQTEljjFD5biLfM0JmvEMoZ1Hi615GvNWhM/KV
JqM/BX1dS3EdSqUwxJ1GqzDNxwp7gdyR5KZ20Hgi2kgbAaGUPwv1vgyFU/e/
IWJ4GY4uLxUX1Yc/yTzXRhvLBUj5Qwe4Jec6qYf509V5GftRrBXYdMRutoCW
CqMmTZQwwEsulnkTgEq9b3Jg0y4S3m5MFy6etNitrANnQPZ0ZaK2SorE87Fj
2AX6xfaMN2tFdtO4f5PkuvVFPSu42WFXinr6LOo9oYtmi3S76cAepQPnl9Tc
Y0dsS5U+U9ftLklEJkA3S6fdVWkrBMazq+nUd629N2qdvwSROTdGzi27UoB8
3eohtn1VaamnBEATGeW4A1ub+xjpZQzywbcywduYE+l4viLKoMPVcFFJAjsR
2cYljWIZaWjjfG2/9IGn3WxHnesa++8AzCd1eKh9TYVCSxnwnPBE3tdYP1rA
jgtfn3CKXdUYXXCh2wFAasQ4iBQKpBHbrI83F3tlgrFrlwe99SN78of2xKBK
YBrEdJt90ZEUnbu76Xx2RG0si9rodLKcfzEsEy2C27QX+Mu5CATUPSakPMKD
SBPXXSq58iJHb8jCFXbN2F0B/crl1fnbKspvBknhMJ6A0HciLJEDP0kwzoxZ
GOFpNrlZamHI3zu6BZOFTi2ByBQMhxTK172DsVzS9TGtpLg/k+GNH0ehyWYF
HXrjCE1qLaNp/KWkiN25tR8aLPylFti8CykjAwYuI7BPtu1hH+htwm1AZBKj
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

-->

</rfc>
