<?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.2 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lamps-cms-cek-hkdf-sha256-01" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.20.1 -->
  <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-01"/>
    <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="March" day="18"/>
    <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 materiam (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.  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 inout 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 472?>

<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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
kHFRAAA=

-->

</rfc>
