<?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-00" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.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-00"/>
    <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="January" day="29"/>
    <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 ::= { TBD1 }
]]></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 TBD
]]></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>For the id-alg-cek-hkdf-sha256 algorithm identifier in <xref target="alg-def"/> of this
document, IANA is requested to assign an object identifier (OID) (TBD1) with a
Description of "id-alg-cek-hkdf-sha256".  The OID for the algoritm should be
allocated 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" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8551.xml">
          <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 471?>

<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 ::= { TBD1 }

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

-->

</rfc>
