<?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.6.29 (Ruby 3.1.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lamps-rfc5990bis-00" category="std" consensus="true" submissionType="IETF" obsoletes="5990" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.1 -->
  <front>
    <title abbrev="RSA-KEM with CMS KEMRecipientInfo">Use of the RSA-KEM Algorithm in the Cryptographic Message Syntax (CMS)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-rfc5990bis-00"/>
    <author initials="R." surname="Housley" fullname="Russ Housley">
      <organization abbrev="Vigil Security">Vigil Security, LLC</organization>
      <address>
        <postal>
          <street>516 Dranesville Road</street>
          <city>Herndon, VA</city>
          <code>20170</code>
          <country>US</country>
        </postal>
        <email>housley@vigilsec.com</email>
      </address>
    </author>
    <author initials="S." surname="Turner" fullname="Sean Turner">
      <organization>sn3rd</organization>
      <address>
        <email>sean@sn3rd.com</email>
      </address>
    </author>
    <date year="2023" month="April" day="19"/>
    <area>Security</area>
    <workgroup>Limited Additional Mechanisms for PKIX and SMIME</workgroup>
    <keyword>Key Encapsulation Mechanism (KEM)</keyword>
    <keyword>KEMRecipientInfo</keyword>
    <abstract>
      <t>The RSA Key Encapsulation Mechanism (RSA-KEM) Algorithm is a one-pass
(store-and-forward) cryptographic mechanism for an originator to securely
send keying material to a recipient using the recipient's RSA public key.
The RSA-KEM Algorithm is specified in Clause 11.5 of ISO/IEC: 18033-2:2006.
This document specifies the conventions for using the RSA-KEM Algorithm
with the Cryptographic Message Syntax (CMS) using KEMRecipientInfo as
specified in draft-ietf-lamps-cms-kemri.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-lamps-rfc5990bis/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Limited Additional Mechanisms for PKIX and SMIME Working Group mailing list (<eref target="mailto:spasm@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/spasm/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/spasm/"/>.
      </t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>The RSA Key Encapsulation Mechanism (RSA-KEM) Algorithm is a one-pass
(store-and-forward) cryptographic mechanism for an originator to securely
send keying material to a recipient using the recipient's RSA public key.
The RSA-KEM Algorithm is specified in Clause 11.5 of <xref target="ISO18033-2"/>.</t>
      <t>The RSA-KEM Algorithm takes a different approach than other RSA key
transport mechanisms <xref target="RFC8017"/>, with the goal of providing higher
security assurance.  The RSA-KEM Algorithm encrypts a random integer
with the recipient's RSA public key, derives a key-encryption key from
the random integer, and wraps a symmetric content-encryption key with
the key-encryption key.  In this way, the originator and the recipient
end up with the same content-encryption key.   Given a
content-encryption key CEK, RSA-KEM can be summarized as:</t>
      <ol spacing="normal" type="1"><li>Generate a random integer z between 0 and n-1.</li>
        <li>
          <t>Encrypt the integer z with the recipient's RSA public key:  </t>
          <artwork><![CDATA[
    c = z^e mod n
]]></artwork>
        </li>
        <li>
          <t>Derive a key-encryption key KEK from the integer z:  </t>
          <artwork><![CDATA[
    KEK = KDF(z)
]]></artwork>
        </li>
        <li>
          <t>Wrap the CEK with the KEK to obtain wrapped keying material WK:  </t>
          <artwork><![CDATA[
    WK = WRAP(KEK, CEK)
]]></artwork>
        </li>
        <li>The originator sends c and WK to the recipient.</li>
      </ol>
      <t>This different approach provides higher security assurance for two
reasons.  First, the input to the underlying RSA operation is effectively
a random integer between 0 and n-1, where n is the RSA modulus, so it does
not have any structure that could be exploited by an adversary.  Second,
the input is independent of the keying material so the result of the
RSA decryption operation is not directly available to an adversary.
As a result, the RSA-KEM Algorithm enjoys a "tight" security proof in the
random oracle model.  (In other padding schemes, such as
PKCS #1 v1.5 <xref target="RFC8017"/>, the input has structure and/or depends on the
keying material, and the provable security assurances are not as
strong.)  The approach is also architecturally convenient because the
public-key operations are separate from the symmetric operations on the
keying material.  Another benefit is that the length of the keying material
is bounded only by the symmetric key-wrapping algorithm, not the size of
the RSA modulus.</t>
      <t>For completeness, a specification of the RSA-KEM Algorithm is given in
Appendix A of this document; ASN.1 syntax is given in Appendix B.</t>
      <section anchor="conventions-and-definitions">
        <name>Conventions and Definitions</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      </section>
      <section anchor="asn1">
        <name>ASN.1</name>
        <t>CMS values are generated using ASN.1 <xref target="X.680"/>, which uses the Basic
Encoding Rules (BER) and the Distinguished Encoding Rules (DER) <xref target="X.690"/>.</t>
      </section>
      <section anchor="changes-since-rfc-5990">
        <name>Changes Since RFC 5990</name>
        <t>RFC 5990 <xref target="RFC5990"/> specified the conventions for using the RSA-KEM Algorithm
in CMS as a key transport algorithm.  That is, it used KeyTransRecipientInfo <xref target="RFC5652"/>
for each recipient.  This approach resulted in a very complex parameter
definition with the id-rsa-kem algorithm identifier.  Implementation
experience with many different algorithms has shown that complex
parameter structures cause interoperability issues.  Since the publication
of RFC 5990, a new KEMRecipientInfo structure <xref target="I-D.ietf-lamps-cms-kemri"/>
has been defined to support KEM algorithms, and this new structure avoids the
complex parameters structure that was used in RFC 5990.  Likewise, when
the id-rsa-kem algorithm identifier appears in the SubjectPublicKeyInfo
field of a certificate, this document encourages the omission of any
parameters.</t>
        <t>RFC 5990 uses EK and the EncryptedKey, which the concatenation of
C and WK (C || WK).  The use of EK is necessary to align with the
KeyTransRecipientInfo structure.  In this document, C and WK are sent
in separate fields of new KEMRecipientInfo structure.  In particular,
C is carried in the kemct field, and WK is carried in the encryptedKey
field.</t>
        <t>RFC 5990 supports the future definition of additional KEM algorithms that
use RSA; this document supports only one, and it is identified by the
id-kem-rsa object identifier.</t>
        <t>RFC 5990 includes support for Camellia and Triple-DES block ciphers;
discussion of these block ciphers is removed from this document, but
the algorithm identifiers remain in the ASN.1 Module <xref target="app-asn1-module"/>.</t>
        <t>RFC 5990 includes support for SHA-1 hash function; discussion of this
hash function is removed from this document, but the algorithm identifier
remains in the ASN.1 module <xref target="app-asn1-module"/>.</t>
        <t>RFC 5990 required support for the KDF3 <xref target="ANS-X9.44"/> key-derivation
function; this document continues to require support for the KDF3
key-derivation function, but it requires support for SHA-256 <xref target="SHS"/> as
the hash function.</t>
        <t>RFC 5990 recommends support for alternatives to KDF3 and AES-Wrap-128;
this document simply states that other key-derivation functions and
key-encryption algorithms <bcp14>MAY</bcp14> be supported.</t>
        <t>RFC 5990 includes an ASN.1 module; this document provides an alternative
ASN.1 module that follows the conventions established in <xref target="RFC5911"/>,
<xref target="RFC5912"/>, and <xref target="RFC6268"/>. The new ASN.1 module <xref target="app-asn1-module"/>
produces the same bits-on-the-wire as the one in RFC 5990.</t>
      </section>
    </section>
    <section anchor="use-of-the-rsa-kem-algorithm-in-cms">
      <name>Use of the RSA-KEM Algorithm in CMS</name>
      <t>The RSA-KEM Algorithm <bcp14>MAY</bcp14> be employed for one or more recipients in the
CMS enveloped-data content type <xref target="RFC5652"/>, the CMS authenticated-data
content type <xref target="RFC5652"/>, or the CMS authenticated-enveloped-data
content type <xref target="RFC5083"/>.  In each case, the KEMRecipientInfo
<xref target="I-D.ietf-lamps-cms-kemri"/> is used with with the RSA-KEM Algorithm
to securely transfer the content-encryption key from the originator to
the recipient.</t>
      <section anchor="underlying-components">
        <name>Underlying Components</name>
        <t>A CMS implementation that supports the RSA-KEM Algorithm <bcp14>MUST</bcp14> support at
least the following underlying components:</t>
        <ul spacing="normal">
          <li>For the key-derivation function, an implementation <bcp14>MUST</bcp14> support
KDF3 <xref target="ANS-X9.44"/> with SHA-256 <xref target="SHS"/>.</li>
          <li>For key-wrapping, an implementation <bcp14>MUST</bcp14> support the
AES-Wrap-128 <xref target="RFC3394"/> key-encryption algorithm.</li>
        </ul>
        <t>An implementation <bcp14>MAY</bcp14> also support other key-derivation functions and
key-encryption algorithms as well.</t>
      </section>
      <section anchor="recipientinfo-conventions">
        <name>RecipientInfo Conventions</name>
        <t>When the RSA-KEM Algorithm is employed for a recipient, the
RecipientInfo alternative for that recipient <bcp14>MUST</bcp14> be
OtherRecipientInfo using the KEMRecipientInfo structure
<xref target="I-D.ietf-lamps-cms-kemri"/>.  The fields of the
KEMRecipientInfo <bcp14>MUST</bcp14> have the following values:</t>
        <ul empty="true">
          <li>
            <t>version is the syntax version number; it <bcp14>MUST</bcp14> be 0.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>rid identifies the recipient's certificate or public key.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>kem identifies the KEM algorithm; it <bcp14>MUST</bcp14> contain id-kem-rsa.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>kemct is the ciphertext produced for this recipient; it contains
C from steps 1 and 2 of Originator's Operations in <xref target="app-alg"/>.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>kdf identifies the key-derivation algorithm.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>kekLength is the size of the key-encryption key in octets.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>ukm is an optional random input to the key-derivation function.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>wrap identifies a key-encryption algorithm used to encrypt the
content-encryption key.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>encryptedKey is the result of encrypting the keying material with the
key-encryption key.  When used with the CMS enveloped-data content
type <xref target="RFC5652"/>, the keying material is a content-encryption key.  When
used with the CMS authenticated-data content type <xref target="RFC5652"/>, the
keying material is a message-authentication key.  When used with the
CMS authenticated-enveloped-data content type <xref target="RFC5083"/>, the
keying material is a content-authenticated-encryption key.</t>
          </li>
        </ul>
        <t>NOTE: For backward compatibility, implementations <bcp14>MAY</bcp14>
also support RSA-KEM Key Transport Algorithm, which uses
KeyTransRecipientInfo as specified in <xref target="RFC5990"/>.</t>
      </section>
      <section anchor="certificate-conventions">
        <name>Certificate Conventions</name>
        <t>The conventions specified in this section augment RFC 5280 <xref target="RFC5280"/>.</t>
        <t>A recipient who employs the RSA-KEM Algorithm <bcp14>MAY</bcp14> identify the public key
in a certificate by the same AlgorithmIdentifier as for the
PKCS #1 v1.5 algorithm, that is, using the rsaEncryption object
identifier <xref target="RFC8017"/>.  The fact that the recipient will accept RSA-KEM
with this public key is not indicated by the use of this object
identifier.  The willingness to accept the RSA-KEM Algorithm <bcp14>MAY</bcp14> be
signaled by the use of the appropriate SMIME Capabilities either in a
message or in the certificate.</t>
        <t>If the recipient wishes only to employ the RSA-KEM Algorithm with a given
public key, the recipient <bcp14>MUST</bcp14> identify the public key in the certificate
using the id-rsa-kem object identifier; see <xref target="app-asn1"/>.  When the
id-rsa-kem object identifier appears in the SubjectPublicKeyInfo algorithm
field of the certificate, the parameters field from AlgorithmIdentifier
<bcp14>SHOULD</bcp14> be absent.  That is, the AlgorithmIdentifier <bcp14>SHOULD</bcp14> be a SEQUENCE of
one component, the id-rsa-kem object identifier.</t>
        <t>When the AlgorithmIdentifier parameters are present, the
GenericHybridParameters <bcp14>MUST</bcp14> be used.  As described in the next
section, the GenericHybridParameters constrain the values that can
be used with the RSA public key for the kdf, kekLength, and wrap
fields of the KEMRecipientInfo structure.</t>
        <t>Regardless of the AlgorithmIdentifier used, the RSA public key <bcp14>MUST</bcp14> be
carried in the subjectPublicKey BIT STRING within the SubjectPublicKeyInfo
filed of the certificate using the RSAPublicKey type defined in <xref target="RFC8017"/>.</t>
        <t>The intended application for the public key <bcp14>MAY</bcp14> be indicated in the key
usage certificate extension as specified in <xref section="4.2.1.3" sectionFormat="of" target="RFC5280"/>.  If
the keyUsage extension is present in a certificate that conveys an RSA
public key with the id-rsa-kem object identifier as discussed above,
then the key usage extension <bcp14>MUST</bcp14> contain the following value:</t>
        <ul empty="true">
          <li>
            <t>keyEncipherment</t>
          </li>
        </ul>
        <t>The digitalSignatrure and dataEncipherment values <bcp14>SHOULD NOT</bcp14> be
present.  That is, a public key intended to be employed only with the
RSA-KEM Algorithm <bcp14>SHOULD NOT</bcp14> also be employed for data encryption or
for digital signatures.  Good cryptographic practice employs a given RSA
key pair in only one scheme.  This practice avoids the risk that vulnerability
in one scheme may compromise the security of the other, and may be
essential to maintain provable security.</t>
      </section>
      <section anchor="smimecapabilities-attribute-conventions">
        <name>SMIMECapabilities Attribute Conventions</name>
        <t><xref section="2.5.2" sectionFormat="of" target="RFC8551"/> defines the SMIMECapabilities signed
attribute (defined as a SEQUENCE of SMIMECapability SEQUENCEs) to
announce a partial list of algorithms that an S/MIME implementation
can support.  When constructing a CMS signed-data content type <xref target="RFC5652"/>,
a compliant implementation <bcp14>MAY</bcp14> include the SMIMECapabilities signed
attribute announcing that it supports the RSA-KEM Algorithm.</t>
        <t>The SMIMECapability SEQUENCE representing the RSA-KEM Algorithm <bcp14>MUST</bcp14>
include the id-rsa-kem object identifier in the capabilityID field;
see <xref target="app-asn1"/> for the object identifier value, and see <xref target="app-example"/>
for examples.  When the id-rsa-kem object identifier appears in the
capabilityID field and the parameters are present, then the parameters
field <bcp14>MUST</bcp14> use the GenericHybridParameters type.</t>
        <artwork><![CDATA[
  GenericHybridParameters ::= SEQUENCE {
    kem  KeyEncapsulationMechanism,
    dem  DataEncapsulationMechanism }
]]></artwork>
        <t>The fields of the GenericHybridParameters type have the following meanings:</t>
        <ul empty="true">
          <li>
            <t>kem is an AlgorithmIdentifer; the algorithm field <bcp14>MUST</bcp14> be set to id-kem-rsa;
the parameters field <bcp14>MUST</bcp14> be RsaKemParameters, which is a SEQUENCE of an
AlgorithmIdentifier that identifies the supported key-derivation function
and a positive INTEGER that identifies the length of the key-encryption
key in octets.  If the GenericHybridParameters are present, then the
provided kem value <bcp14>MUST</bcp14> be used as the key-derivation function in the
kdf field of KEMRecipientInfo, and the provided key length <bcp14>MUST</bcp14> be used
in the kekLength of KEMRecipientInfo.</t>
          </li>
        </ul>
        <ul empty="true">
          <li>
            <t>dem is an AlgorithmIdentifier; the algorithm field <bcp14>MUST</bcp14> be present, and it
identifies the key-encryption algorithm; parameters are optional.  If the
GenericHybridParameters are present, then the provided dem value <bcp14>MUST</bcp14> be
used in the wrap field of KEMRecipientInfo.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The RSA-KEM Algorithm should be considered as a replacement for the
widely implemented PKCS #1 v1.5 <xref target="RFC8017"/> for new applications
that use CMS to avoid potential vulnerabilities to chosen-ciphertext
attacks and gain a tighter security proof; however, the RSA-KEM Algorithm
has the disadvantage of slightly longer encrypted keying material.</t>
      <t>The security of the RSA-KEM Algorithm can be shown to be tightly related
to the difficulty of either solving the RSA problem or breaking the
underlying symmetric key-encryption algorithm, if the underlying
key-derivation function is modeled as a random oracle, and assuming that
the symmetric key-encryption algorithm satisfies the properties of a
data encapsulation mechanism <xref target="SHOUP"/>.  While in practice a random-oracle
result does not provide an actual security proof for any particular
key-derivation function, the result does provide assurance that the general
construction is reasonable; a key-derivation function would need to be
particularly weak to lead to an attack that is not possible in the
random-oracle model.</t>
      <t>The RSA key size and the underlying components need to be selected
consistent with the desired security level.  Several security levels
have been identified in the NIST SP 800-57 Part 1 <xref target="NISTSP800-57pt1r5"/>.
To achieve 128-bit security, the RSA key size <bcp14>SHOULD</bcp14> be at least 3072 bits,
the key-derivation function <bcp14>SHOULD</bcp14> make use of SHA-256, and the symmetric
key-encryption algorithm <bcp14>SHOULD</bcp14> be AES Key Wrap with a 128-bit key.</t>
      <t>Implementations <bcp14>MUST</bcp14> protect the RSA private key, the key-encryption key,
the content-encryption key, the content-authenticated-encryption key.
Compromise of the RSA private key could result in the disclosure of all
messages protected with that key.  Compromise of the key-encryption key,
the content-encryption key, or content-authenticated-encryption key could
result in disclosure of the associated encrypted content.</t>
      <t>Additional considerations related to key management may be found in
<xref target="NISTSP800-57pt1r5"/>.</t>
      <t>The security of the RSA-KEM Algorithm also depends on the strength of the
random number generator, which <bcp14>SHOULD</bcp14> have a comparable security level.  For
further discussion on random number generation, see <xref target="RFC4086"/>.</t>
      <t>Implementations <bcp14>SHOULD NOT</bcp14> reveal information about intermediate
values or calculations, whether by timing or other "side channels",
otherwise an opponent may be able to determine information about
the keying data and/or the recipient's private key.  Although not all
intermediate information may be useful to an opponent, it is
preferable to conceal as much information as is practical, unless
analysis specifically indicates that the information would not be
useful to an opponent.</t>
      <t>Generally, good cryptographic practice employs a given RSA key pair
in only one scheme.  This practice avoids the risk that vulnerability
in one scheme may compromise the security of the other, and may be
essential to maintain provable security.  While RSA public keys have
often been employed for multiple purposes such as key transport and
digital signature without any known bad interactions, for increased
security assurance, such combined use of an RSA key pair is <bcp14>NOT
RECOMMENDED</bcp14> in the future (unless the different schemes are
specifically designed to be used together).</t>
      <t>Accordingly, an RSA key pair used for the RSA-KEM Algorithm <bcp14>SHOULD NOT</bcp14>
also be used for digital signatures.  Indeed, the Accredited Standards
Committee X9 (ASC X9) requires such a separation between key pairs used
for key establishment and key pairs used for digital signature
<xref target="ANS-X9.44"/>.  Continuing this principle of key separation, a key pair
used for the RSA-KEM Algorithm <bcp14>SHOULD NOT</bcp14> be used with other key
establishment schemes, or for data encryption, or with more
than one set of underlying algorithm components.</t>
      <t>Parties <bcp14>MAY</bcp14> gain assurance that implementations are correct through
formal implementation validation, such as the NIST Cryptographic
Module Validation Program (CMVP) <xref target="CMVP"/>.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>For the ASN.1 Module in <xref target="app-asn1-module"/>, IANA is requested to assign an
object identifier (OID) for the module identifier. 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), and the Description for the new OID
should be set to "id-mod-cms-rsa-kem-2023".</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="I-D.ietf-lamps-cms-kemri" target="https://datatracker.ietf.org/doc/html/draft-ietf-lamps-cms-kemri-00" xml:base="https://bib.ietf.org/public/rfc/bibxml3/reference.I-D.ietf-lamps-cms-kemri.xml">
          <front>
            <title>Using Key Encapsulation Mechanism (KEM) Algorithms in the Cryptographic Message Syntax (CMS)</title>
            <author fullname="Russ Housley" initials="R." surname="Housley">
              <organization>Vigil Security, LLC</organization>
            </author>
            <author fullname="John Gray" initials="J." surname="Gray">
              <organization>Entrust</organization>
            </author>
            <author fullname="Tomofumi Okubo" initials="T." surname="Okubo">
              <organization>DigiCert, Inc.</organization>
            </author>
            <date day="24" month="February" year="2023"/>
            <abstract>
              <t>The Cryptographic Message Syntax (CMS) supports key transport and key agreement algorithms. In recent years, cryptographers have been specifying Key Encapsulation Mechanism (KEM) algorithms, including quantum-secure KEM algorithms. This document defines conventions for the use of KEM algorithms by the originator and recipients to encrypt CMS content.</t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-cms-kemri-00"/>
        </reference>
        <reference anchor="RFC5083" target="https://www.rfc-editor.org/info/rfc5083" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5083.xml">
          <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="RFC5280" target="https://www.rfc-editor.org/info/rfc5280" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5280.xml">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="D. Cooper" initials="D." surname="Cooper"/>
            <author fullname="S. Santesson" initials="S." surname="Santesson"/>
            <author fullname="S. Farrell" initials="S." surname="Farrell"/>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="W. Polk" initials="W." surname="Polk"/>
            <date month="May" year="2008"/>
            <abstract>
              <t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5280"/>
          <seriesInfo name="DOI" value="10.17487/RFC5280"/>
        </reference>
        <reference anchor="RFC5652" target="https://www.rfc-editor.org/info/rfc5652" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5652.xml">
          <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="RFC5911" target="https://www.rfc-editor.org/info/rfc5911" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5911.xml">
          <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" target="https://www.rfc-editor.org/info/rfc5912" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5912.xml">
          <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="RFC6268" target="https://www.rfc-editor.org/info/rfc6268" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6268.xml">
          <front>
            <title>Additional New ASN.1 Modules for the Cryptographic Message Syntax (CMS) and the Public Key Infrastructure Using X.509 (PKIX)</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="July" year="2011"/>
            <abstract>
              <t>The Cryptographic Message Syntax (CMS) format, and many associated formats, are expressed using ASN.1.  The current ASN.1 modules conform to the 1988 version of ASN.1.  This document updates some auxiliary ASN.1 modules to conform to the 2008 version of ASN.1; the 1988 ASN.1 modules remain the normative version.  There are no bits- on-the-wire changes to any of the formats; this is simply a change to the syntax.  This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6268"/>
          <seriesInfo name="DOI" value="10.17487/RFC6268"/>
        </reference>
        <reference anchor="RFC8551" target="https://www.rfc-editor.org/info/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="SHS">
          <front>
            <title>Secure Hash Standard</title>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date year="2015" month="July"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.fips.180-4"/>
        </reference>
        <reference anchor="X.680" target="https://www.itu.int/rec/T-REC-X.680">
          <front>
            <title>Information technology -- Abstract Syntax Notation One (ASN.1): Specification of basic notation</title>
            <author>
              <organization>ITU-T</organization>
            </author>
            <date year="2021" month="February"/>
          </front>
          <seriesInfo name="ITU-T Recommendation" value="X.680"/>
          <seriesInfo name="ISO/IEC" value="8824-1:2021"/>
        </reference>
        <reference anchor="X.690" target="https://www.itu.int/rec/T-REC-X.680">
          <front>
            <title>Information technology -- ASN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)</title>
            <author>
              <organization>ITU-T</organization>
            </author>
            <date year="2021" month="February"/>
          </front>
          <seriesInfo name="ITU-T Recommendation" value="X.690"/>
          <seriesInfo name="ISO/IEC" value="8825-1:2021"/>
        </reference>
        <reference anchor="ISO18033-2" target="https://www.iso.org/standard/37971.html">
          <front>
            <title>Information technology -- Security techniques -- Encryption algorithms -- Part 2: Asymmetric ciphers</title>
            <author>
              <organization>ISO/IEC JTC 1/SC 27</organization>
            </author>
            <date year="2006"/>
          </front>
          <seriesInfo name="ISO/IEC" value="18033-2:2006"/>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml">
          <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" target="https://www.rfc-editor.org/info/rfc8174" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml">
          <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>
        <name>Informative References</name>
        <reference anchor="RFC3394" target="https://www.rfc-editor.org/info/rfc3394" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.3394.xml">
          <front>
            <title>Advanced Encryption Standard (AES) Key Wrap Algorithm</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="September" year="2002"/>
          </front>
          <seriesInfo name="RFC" value="3394"/>
          <seriesInfo name="DOI" value="10.17487/RFC3394"/>
        </reference>
        <reference anchor="RFC4086" target="https://www.rfc-editor.org/info/rfc4086" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.4086.xml">
          <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="RFC5990" target="https://www.rfc-editor.org/info/rfc5990" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.5990.xml">
          <front>
            <title>Use of the RSA-KEM Key Transport Algorithm in the Cryptographic Message Syntax (CMS)</title>
            <author fullname="J. Randall" initials="J." surname="Randall"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <author fullname="J. Brainard" initials="J." surname="Brainard"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="September" year="2010"/>
            <abstract>
              <t>The RSA-KEM Key Transport Algorithm is a one-pass (store-and-forward) mechanism for transporting keying data to a recipient using the recipient's RSA public key. ("KEM" stands for "key encapsulation mechanism".) This document specifies the conventions for using the RSA-KEM Key Transport Algorithm with the Cryptographic Message Syntax (CMS).  The ASN.1 syntax is aligned with an expected forthcoming change to American National Standard (ANS) X9.44.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5990"/>
          <seriesInfo name="DOI" value="10.17487/RFC5990"/>
        </reference>
        <reference anchor="RFC6194" target="https://www.rfc-editor.org/info/rfc6194" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.6194.xml">
          <front>
            <title>Security Considerations for the SHA-0 and SHA-1 Message-Digest Algorithms</title>
            <author fullname="T. Polk" initials="T." surname="Polk"/>
            <author fullname="L. Chen" initials="L." surname="Chen"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="March" year="2011"/>
            <abstract>
              <t>This document includes security considerations for the SHA-0 and SHA-1 message digest algorithm.  This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6194"/>
          <seriesInfo name="DOI" value="10.17487/RFC6194"/>
        </reference>
        <reference anchor="RFC8017" target="https://www.rfc-editor.org/info/rfc8017" xml:base="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8017.xml">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson"/>
            <author fullname="A. Rusch" initials="A." surname="Rusch"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t>
              <t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series. By publishing this RFC, change control is transferred to the IETF.</t>
              <t>This document also obsoletes RFC 3447.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8017"/>
          <seriesInfo name="DOI" value="10.17487/RFC8017"/>
        </reference>
        <reference anchor="NISTSP800-57pt1r5" target="http://dx.doi.org/10.6028/nist.sp.800-57pt1r5" xml:base="https://bib.ietf.org/public/rfc/bibxml7/reference.DOI.10.6028/NIST.SP.800-57pt1r5.xml?anchor=NISTSP800-57pt1r5">
          <front>
            <title>Recommendation for key management:</title>
            <author fullname="Elaine Barker" surname="Barker"/>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date month="May" year="2020"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-57pt1r5"/>
        </reference>
        <reference anchor="ANS-X9.44">
          <front>
            <title>Public Key Cryptography for the Financial Services Industry -- Key Establishment Using Integer Factorization Cryptography</title>
            <author>
              <organization>American National Standards Institute</organization>
            </author>
            <date year="2007"/>
          </front>
          <seriesInfo name="American National Standard" value="X9.44"/>
        </reference>
        <reference anchor="CMVP" target="https://csrc.nist.gov/projects/cryptographic-module-validation-program">
          <front>
            <title>Cryptographic Module Validation Program</title>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date year="2016"/>
          </front>
        </reference>
        <reference anchor="SHOUP" target="https://eprint.iacr.org/2001/112">
          <front>
            <title>A Proposal for an ISO Standard for Public Key Encryption</title>
            <author initials="V." surname="Shoup" fullname="Victor Shoup">
              <organization/>
            </author>
            <date year="2001"/>
          </front>
          <seriesInfo name="Cryptology ePrint Archive" value="Paper 2001/112"/>
        </reference>
      </references>
    </references>
    <section anchor="app-alg">
      <name>RSA-KEM Algorithm</name>
      <t>The RSA-KEM Algorithm is a one-pass (store-and-forward) cryptographic
mechanism for an originator to securely send keying material to a recipient
using the recipient's RSA public key.</t>
      <t>With this type of algorithm, an originator encrypts the keying material
using the recipient's public key, and then sends the resulting encrypted
keying material to the recipient.  The recipient decrypts the encrypted
keying material using the recipient's private key to recover the keying
material.</t>
      <section anchor="underlying-components-1">
        <name>Underlying Components</name>
        <t>The RSA-KEM Algorithm has the following underlying components:</t>
        <ul spacing="normal">
          <li>KDF, a key-derivation function, which derives key-encryption key of a
specified length from a shared secret value;</li>
          <li>Wrap, a symmetric key-encryption algorithm, which encrypts keying material
using key-encryption key that was produced by the KDF.</li>
        </ul>
        <t>The kekLen value denotes the length in bytes of the key-encryption key
for the underlying symmetric key-encryption algorithm.</t>
        <t>The length of the keying material <bcp14>MUST</bcp14> be among the lengths supported by
the underlying symmetric key-encryption algorithm.  For example, the
AES-Wrap key-encryption algorithm requires the kekLen to be 16, 24,
or 32 octets.  Usage and formatting of the keying material is outside
the scope of the RSA-KEM Algorithm.</t>
        <t>Many key-derivation functions support the inclusion of other information
in addition to the shared secret value in the input to the function.
Also, with some symmetric key-encryption algorithms, it is possible to
associate a label with the keying material.  Such uses are outside the scope
of this document, as they are not directly supported by CMS.</t>
      </section>
      <section anchor="originators-operations">
        <name>Originator's Operations</name>
        <t>Let (n,e) be the recipient's RSA public key; see <xref target="RFC8017"/> for details.</t>
        <t>Let K be the keying material to be securely transferred from the originator
to the recipient.</t>
        <t>Let nLen denote the length in bytes of the modulus n, i.e., the least
integer such that 2^(8*nLen) &gt; n.</t>
        <t>The originator performs the following operations:</t>
        <ol spacing="normal" type="1"><li>
            <t>Generate a random integer z between 0 and n-1 (see note), and
convert z to a byte string Z of length nLen, most significant byte
first:  </t>
            <artwork><![CDATA[
     z = RandomInteger (0, n-1)

     Z = IntegerToString (z, nLen)
]]></artwork>
          </li>
          <li>
            <t>Encrypt the random integer z using the recipient's RSA public key
(n,e), and convert the resulting integer c to a ciphertext C, a
byte string of length nLen:  </t>
            <artwork><![CDATA[
     c = z^e mod n

     C = IntegerToString (c, nLen)
]]></artwork>
          </li>
          <li>
            <t>Derive a symmetric key-encryption key KEK of length kekLen bytes
from the byte string Z using the underlying key-derivation function:  </t>
            <artwork><![CDATA[
     KEK = KDF (Z, kekLen)
]]></artwork>
          </li>
          <li>
            <t>Wrap the keying material K with the symmetric key-encryption key
KEK using the key-encryption algorithm to obtain wrapped keying
material WK:  </t>
            <artwork><![CDATA[
     WK = Wrap (KEK, K)
]]></artwork>
          </li>
          <li>Send the ciphertext C and the wrapped keying material WK to the recipient.</li>
        </ol>
        <t>NOTE: The random integer z <bcp14>MUST</bcp14> be generated independently at random
for different encryption operations, whether for the same or
different recipients.</t>
      </section>
      <section anchor="recipients-operations">
        <name>Recipient's Operations</name>
        <t>Let (n,d) be the recipient's RSA private key; see <xref target="RFC8017"/> for details,
but other private key formats are allowed.</t>
        <t>Let WK be the encrypted keying material.</t>
        <t>Let C be the ciphertext.</t>
        <t>Let nLen denote the length in bytes of the modulus n.</t>
        <t>The recipient performs the following operations:</t>
        <ol spacing="normal" type="1"><li>If the length of the encrypted keying material is less than nLen
bytes, output "decryption error", and stop.</li>
          <li>
            <t>Convert the ciphertext C to an integer c, most significant byte
first.  Decrypt the integer c using the recipient's private key
(n,d) to recover an integer z (see NOTE below):  </t>
            <artwork><![CDATA[
     c = StringToInteger (C)

     z = c^d mod n
]]></artwork>
            <t>
If the integer c is not between 0 and n-1, output "decryption
error", and stop.</t>
          </li>
          <li>
            <t>Convert the integer z to a byte string Z of length nLen, most
significant byte first (see NOTE below):  </t>
            <artwork><![CDATA[
     Z = IntegerToString (z, nLen)
]]></artwork>
          </li>
          <li>
            <t>Derive a symmetric key-encryption key KEK of length kekLen bytes from
the byte string Z using the key-derivation function (see NOTE below):  </t>
            <artwork><![CDATA[
     KEK = KDF (Z, kekLen)
]]></artwork>
          </li>
          <li>
            <t>Unwrap the wrapped keying material WK with the symmetric
key-encryption key KEK using the underlying key-encryption
algorithm to recover the keying material K:  </t>
            <artwork><![CDATA[
     K = Unwrap (KEK, WK)
]]></artwork>
            <t>
If the unwrapping operation outputs an error, output "decryption
error", and stop.</t>
          </li>
          <li>Output the keying material K.</li>
        </ol>
        <t>NOTE: Implementations <bcp14>SHOULD NOT</bcp14> reveal information about the
integer z, the string Z, or about the calculation of the
exponentiation in Step 2, the conversion in Step 3, or the key
derivation in Step 4, whether by timing or other "side channels".
The observable behavior of the implementation <bcp14>SHOULD</bcp14> be the same at
these steps for all ciphertexts C that are in range.  For example,
IntegerToString conversion should take the same amount of time
regardless of the actual value of the integer z.  The integer z, the
string Z, and other intermediate results <bcp14>MUST</bcp14> be securely deleted
when they are no longer needed.</t>
      </section>
    </section>
    <section anchor="app-asn1">
      <name>ASN.1 Syntax</name>
      <t>The ASN.1 syntax for identifying the RSA-KEM Algorithm
is an extension of the syntax for the "generic hybrid cipher" in
ANS X9.44 <xref target="ANS-X9.44"/>.</t>
      <t>The ASN.1 Module is unchanged from RFC 5990.  The id-rsa-kem
object identifier is used in a backward compatible manner
in certificates <xref target="RFC5280"/> and SMIMECapabilities <xref target="RFC8551"/>.
Of course, the use of the id-kem-rsa object identifier in the
new KEMRecipientInfo structure <xref target="I-D.ietf-lamps-cms-kemri"/>
was not yet defined at the time that RFC 5990 was written.</t>
      <section anchor="app-asn1-intro">
        <name>Underlying Components</name>
        <t>Implementations that conform to this specification <bcp14>MUST</bcp14> support
the KDF3 <xref target="ANS-X9.44"/> key-derivation function using SHA-256 <xref target="SHS"/>.</t>
        <t>The object identifier for KDF3 is:</t>
        <artwork><![CDATA[
   id-kdf-kdf3 OBJECT IDENTIFIER ::= { x9-44-components kdf3(2) }
]]></artwork>
        <t>The KDF3 parameters identify the underlying hash function.  For
alignment with the ANS X9.44, the hash function <bcp14>MUST</bcp14> be an ASC X9-approved
hash function.  While the SHA-1 hash algorithm is included in the
ASN.1 definitions, SHA-1 <bcp14>MUST NOT</bcp14> be used.  SHA-1 is considered
to be obsolete; see <xref target="RFC6194"/>.  SHA-1 remains in the ASN.1 module for
compatibility with RFC 5990.  In addition, other hash functions <bcp14>MAY</bcp14> be
used with CMS.</t>
        <artwork><![CDATA[
   kda-kdf3 KEY-DERIVATION ::= {
      IDENTIFIER id-kdf-kdf3
      PARAMS TYPE KDF3-HashFunction ARE required
      -- No S/MIME caps defined -- }

   KDF3-HashFunction ::=
      AlgorithmIdentifier { DIGEST-ALGORITHM, {KDF3-HashFunctions} }

   KDF3-HashFunctions DIGEST-ALGORITHM ::= { X9-HashFunctions, ... }

   X9-HashFunctions DIGEST-ALGORITHM ::= {
      mda-sha1 | mda-sha224 | mda-sha256 | mda-sha384 |
      mda-sha512, ... }
]]></artwork>
        <t>Implementations that conform to this specification <bcp14>MUST</bcp14> support
the AES Key Wrap <xref target="RFC3394"/> key-encryption algorithm with a 128-bit
key.  There are three object identifiers for the AES Key Wrap, one for
each permitted size of the key-encryption key.  There are three object
identifiers imported from <xref target="RFC5912"/>, and none of these algorithm
identifiers have associated parameters:</t>
        <artwork><![CDATA[
   kwa-aes128-wrap KEY-WRAP ::= {
       IDENTIFIER id-aes128-wrap
       PARAMS ARE absent
       SMIME-CAPS { IDENTIFIED BY id-aes128-wrap } }

   kwa-aes192-wrap KEY-WRAP ::= {
       IDENTIFIER id-aes192-wrap
       PARAMS ARE absent
       SMIME-CAPS { IDENTIFIED BY id-aes192-wrap } }

   kwa-aes256-wrap KEY-WRAP ::= {
       IDENTIFIER id-aes256-wrap
       PARAMS ARE absent
       SMIME-CAPS { IDENTIFIED BY id-aes256-wrap } }
]]></artwork>
      </section>
      <section anchor="app-asn1-module">
        <name>ASN.1 Module</name>
        <t>RFC EDITOR: Please replace TBD2 with the value assigned by IANA
during the publication of <xref target="I-D.ietf-lamps-cms-kemri"/>.</t>
        <sourcecode type="asn.1" markers="true"><![CDATA[
CMS-RSA-KEM-2023
   { iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1)
     pkcs-9(9) smime(16) modules(0) id-mod-cms-rsa-kem-2023(TBD1) }

DEFINITIONS ::= BEGIN

-- EXPORTS ALL

IMPORTS

  KEM-ALGORITHM
    FROM KEMAlgorithmInformation-2023  -- [I-D.ietf-lamps-cms-kemri]
       { iso(1) identified-organization(3) dod(6) internet(1)
         security(5) mechanisms(5) pkix(7) id-mod(0)
         id-mod-kemAlgorithmInformation-2023(TBD3) }

  AlgorithmIdentifier{}, PUBLIC-KEY, DIGEST-ALGORITHM,
  KEY-DERIVATION, KEY-WRAP
    FROM AlgorithmInformation-2009  -- [RFC5912]
      { iso(1) identified-organization(3) dod(6) internet(1)
        security(5) mechanisms(5) pkix(7) id-mod(0)
        id-mod-algorithmInformation-02(58) }

  kwa-aes128-wrap, kwa-aes192-wrap, kwa-aes256-wrap
    FROM CMSAesRsaesOaep-2009  -- [RFC5911]
      { iso(1) member-body(2) us(840) rsadsi(113549)
        pkcs(1) pkcs-9(9) smime(16) modules(0)
        id-mod-cms-aes-02(38) }

  kwa-3DESWrap
    FROM CryptographicMessageSyntaxAlgorithms-2009  -- [RFC5911]
      { iso(1) member-body(2) us(840) rsadsi(113549)
        pkcs(1) pkcs-9(9) smime(16) modules(0)
        id-mod-cmsalg-2001-02(37) }

  id-camellia128-wrap, id-camellia192-wrap, id-camellia256-wrap
    FROM CamelliaEncryptionAlgorithmInCMS  -- [RFC3657]
      { iso(1) member-body(2) us(840) rsadsi(113549)
        pkcs(1) pkcs9(9) smime(16) modules(0)
        id-mod-cms-camellia(23) }

  mda-sha1, pk-rsa, RSAPublicKey
    FROM PKIXAlgs-2009  -- [RFC5912]
      { iso(1) identified-organization(3) dod(6) internet(1)
        security(5) mechanisms(5) pkix(7) id-mod(0)
        id-mod-pkix1-algorithms2008-02(56) }

  mda-sha224, mda-sha256, mda-sha384, mda-sha512
    FROM PKIX1-PSS-OAEP-Algorithms-2009  -- [RFC5912]
      { iso(1) identified-organization(3) dod(6) internet(1)
        security(5) mechanisms(5) pkix(7) id-mod(0)
        id-mod-pkix1-rsa-pkalgs-02(54) } ;


-- Useful types and definitions

OID ::= OBJECT IDENTIFIER  -- alias

NullParms ::= NULL

-- ISO/IEC 18033-2 arc

is18033-2 OID ::= { iso(1) standard(0) is18033(18033) part2(2) }

-- NIST algorithm arc

nistAlgorithm OID ::= { joint-iso-itu-t(2) country(16) us(840)
   organization(1) gov(101) csor(3) nistAlgorithm(4) }

-- PKCS #1 arc

pkcs-1 OID ::= { iso(1) member-body(2) us(840) rsadsi(113549)
   pkcs(1) pkcs-1(1) }

-- X9.44 arc

x9-44 OID ::= { iso(1) identified-organization(3) tc68(133)
   country(16) x9(840) x9Standards(9) x9-44(44) }

x9-44-components OID ::= { x9-44 components(1) }

-- RSA-KEM Algorithm

id-rsa-kem OID ::= { iso(1) member-body(2) us(840) rsadsi(113549)
   pkcs(1) pkcs-9(9) smime(16) alg(3) 14 }

GenericHybridParameters ::= SEQUENCE {
   kem  KeyEncapsulationMechanism,
   dem  DataEncapsulationMechanism }

KeyEncapsulationMechanism ::=
   AlgorithmIdentifier { KEM-ALGORITHM, {KEMAlgorithms} }

KEMAlgorithms KEM-ALGORITHM ::= { kema-kem-rsa | kema-rsa-kem, ... }

kema-rsa-kem KEM-ALGORITHM ::= {
   IDENTIFIER id-rsa-kem
   PARAMS TYPE GenericHybridParameters ARE optional
   PUBLIC-KEYS { pk-rsa | pk-rsa-kem }
   UKM ARE optional
   SMIME-CAPS { TYPE GenericHybridParameters
      IDENTIFIED BY id-rsa-kem } }

kema-kem-rsa KEM-ALGORITHM ::= {
   IDENTIFIER id-kem-rsa
   PARAMS TYPE RsaKemParameters ARE optional
   PUBLIC-KEYS { pk-rsa | pk-rsa-kem }
   UKM ARE optional
   SMIME-CAPS { TYPE GenericHybridParameters
      IDENTIFIED BY id-rsa-kem } }

id-kem-rsa OID ::= { is18033-2 key-encapsulation-mechanism(2)
   rsa(4) }

RsaKemParameters ::= SEQUENCE {
   keyDerivationFunction  KeyDerivationFunction,
   keyLength              KeyLength }

pk-rsa-kem PUBLIC-KEY ::= {
  IDENTIFIER id-rsa-kem
  KEY RSAPublicKey
  PARAMS TYPE GenericHybridParameters ARE preferredAbsent
  -- Private key format is not specified here --
  CERT-KEY-USAGE {keyEncipherment} }

KeyDerivationFunction ::=
   AlgorithmIdentifier { KEY-DERIVATION, {KDFAlgorithms} }

KDFAlgorithms KEY-DERIVATION ::= { kda-kdf2 | kda-kdf3, ... }

KeyLength ::= INTEGER (1..MAX)

DataEncapsulationMechanism ::=
   AlgorithmIdentifier { KEY-WRAP, {DEMAlgorithms} }

DEMAlgorithms KEY-WRAP ::= {
   X9-SymmetricKeyWrappingSchemes |
   Camellia-KeyWrappingSchemes, ... }

X9-SymmetricKeyWrappingSchemes KEY-WRAP ::= {
   kwa-aes128-wrap | kwa-aes192-wrap | kwa-aes256-wrap |
   kwa-3DESWrap, ... }

X9-SymmetricKeyWrappingScheme ::=
   AlgorithmIdentifier { KEY-WRAP, {X9-SymmetricKeyWrappingSchemes} }

Camellia-KeyWrappingSchemes KEY-WRAP ::= {
   kwa-camellia128-wrap | kwa-camellia192-wrap |
   kwa-camellia256-wrap, ... }

Camellia-KeyWrappingScheme ::=
   AlgorithmIdentifier { KEY-WRAP, {Camellia-KeyWrappingSchemes} }

kwa-camellia128-wrap KEY-WRAP ::= {
   IDENTIFIER id-camellia128-wrap
   PARAMS ARE absent
   SMIME-CAPS { IDENTIFIED BY id-camellia128-wrap } }

kwa-camellia192-wrap KEY-WRAP ::= {
   IDENTIFIER id-camellia192-wrap
   PARAMS ARE absent
   SMIME-CAPS { IDENTIFIED BY id-camellia192-wrap } }

kwa-camellia256-wrap KEY-WRAP ::= {
   IDENTIFIER id-camellia256-wrap
   PARAMS ARE absent
   SMIME-CAPS { IDENTIFIED BY id-camellia256-wrap } }

-- Key Derivation Functions

id-kdf-kdf2 OID ::= { x9-44-components kdf2(1) }

kda-kdf2 KEY-DERIVATION ::= {
   IDENTIFIER id-kdf-kdf2
   PARAMS TYPE KDF2-HashFunction ARE required
   -- No S/MIME caps defined -- }

KDF2-HashFunction ::=
   AlgorithmIdentifier { DIGEST-ALGORITHM, {KDF2-HashFunctions} }

KDF2-HashFunctions DIGEST-ALGORITHM ::= { X9-HashFunctions, ... }

id-kdf-kdf3 OID ::= { x9-44-components kdf3(2) }

kda-kdf3 KEY-DERIVATION ::= {
   IDENTIFIER id-kdf-kdf3
   PARAMS TYPE KDF3-HashFunction ARE required
   -- No S/MIME caps defined -- }

KDF3-HashFunction ::=
   AlgorithmIdentifier { DIGEST-ALGORITHM, {KDF3-HashFunctions} }

KDF3-HashFunctions DIGEST-ALGORITHM ::= { X9-HashFunctions, ... }

-- Hash Functions

X9-HashFunctions DIGEST-ALGORITHM ::= {
   mda-sha1 | mda-sha224 | mda-sha256 | mda-sha384 |
   mda-sha512, ... }

END
]]></sourcecode>
      </section>
    </section>
    <section anchor="app-example">
      <name>SMIMECapabilities Examples</name>
      <t>To indicate support for the RSA-KEM algorithm coupled with the KDF3
key-derivation function with SHA-256 and the AES Key Wrap symmetric
key-encryption algorithm 128-bit key-encryption key, the
SMIMECapabilities will include the following entry:</t>
      <artwork><![CDATA[
SEQUENCE {
   id-rsa-kem,                                -- RSA-KEM Algorithm
   SEQUENCE {                           -- GenericHybridParameters
      SEQUENCE {                    -- key encapsulation mechanism
         id-kem-rsa,                                    -- RSA-KEM
         SEQUENCE {                            -- RsaKemParameters
            SEQUENCE {                  -- key derivation function
               id-kdf-kdf3,                                -- KDF3
               SEQUENCE {                     -- KDF3-HashFunction
                  id-sha256  -- SHA-256; no parameters (preferred)
               },
            16                              -- KEK length in bytes
            },
      SEQUENCE {                   -- data encapsulation mechanism
         id-aes128-Wrap             -- AES-128 Wrap; no parameters
      }
   }
}
]]></artwork>
      <t>This SMIMECapability value has the following DER encoding (in hexadecimal):</t>
      <artwork><![CDATA[
30 47
  06 0b 2a 86 48 86 f7 0d 01 09 10 03 0e           -- id-rsa-kem
  30 38
     30 29
        06 07 28 81 8c 71 02 02 04                 -- id-kem-rsa
        30 1e
           30 19
              06 0a 2b 81 05 10 86 48 09 2c 01 02  -- id-kdf-kdf3
              30 0b
                 06 09 60 86 48 01 65 03 04 02 01  -- id-sha256
                 02 01 10                          -- 16 bytes
      30 0b
         06 09 60 86 48 01 65 03 04 01 05         -- id-aes128-Wrap
]]></artwork>
      <t>To indicate support for the RSA-KEM algorithm coupled with the KDF3
key-derivation function with SHA-384 and the AES Key Wrap symmetric
key-encryption algorithm 192-bit key-encryption key, the
SMIMECapabilities will include the following SMIMECapability value
(in hexadecimal):</t>
      <artwork><![CDATA[
  30 47 06 0b 2a 86 48 86 f7 0d 01 09 10 03 0e 30
  38 30 29 06 07 28 81 8c 71 02 02 04 30 1e 30 19
  06 0a 2b 81 05 10 86 48 09 2c 01 02 30 0b 06 09
  60 86 48 01 65 03 04 02 02 02 01 18 30 0b 06 09
  60 86 48 01 65 03 04 01 19
]]></artwork>
      <t>To indicate support for the RSA-KEM algorithm coupled with the KDF3
key-derivation function with SHA-512 and the AES Key Wrap symmetric
key-encryption algorithm 256-bit key-encryption key, the
SMIMECapabilities will include the following SMIMECapability value
(in hexadecimal):</t>
      <artwork><![CDATA[
  30 47 06 0b 2a 86 48 86 f7 0d 01 09 10 03 0e 30
  38 30 29 06 07 28 81 8c 71 02 02 04 30 1e 30 19
  06 0a 2b 81 05 10 86 48 09 2c 01 02 30 0b 06 09
  60 86 48 01 65 03 04 02 03 02 01 20 30 0b 06 09
  60 86 48 01 65 03 04 01 2d
]]></artwork>
    </section>
    <section anchor="rsa-kem-cms-enveloped-data-example">
      <name>RSA-KEM CMS Enveloped-Data Example</name>
      <t>This example shows the establishment of an AES-128 content-encryption
key using:</t>
      <ul spacing="normal">
        <li>RSA-KEM with a 3072-bit key;</li>
        <li>key derivation using KDF2 with SHA-256; and</li>
        <li>key wrap using AES-128-KEYWRAP.</li>
      </ul>
      <t>In real-world use, the originator would encrypt the content-encryption
key in a manner that would allow decryption with their own private key
as well as the recipient's private key.  This is omitted in an attempt
to simplify the example.</t>
      <section anchor="originator-processing">
        <name>Originator Processing</name>
        <t>Alice obtains Bob's public key:</t>
        <artwork><![CDATA[
   -----BEGIN PUBLIC KEY-----
   MIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEA3ocW14cxncPJ47fnEjBZ
   AyfC2lqapL3ET4jvV6C7gGeVrRQxWPDwl+cFYBBR2ej3j3/0ecDmu+XuVi2+s5JH
   Keeza+itfuhsz3yifgeEpeK8T+SusHhn20/NBLhYKbh3kiAcCgQ56dpDrDvDcLqq
   vS3jg/VO+OPnZbofoHOOevt8Q/roahJe1PlIyQ4udWB8zZezJ4mLLfbOA9YVaYXx
   2AHHZJevo3nmRnlgJXo6mE00E/6qkhjDHKSMdl2WG6mO9TCDZc9qY3cAJDU6Ir0v
   SH7qUl8/vN13y4UOFkn8hM4kmZ6bJqbZt5NbjHtY4uQ0VMW3RyESzhrO02mrp39a
   uLNnH3EXdXaV1tk75H3qC7zJaeGWMJyQfOE3YfEGRKn8fxubji716D8UecAxAzFy
   FL6m1JiOyV5acAiOpxN14qRYZdHnXOM9DqGIGpoeY1UuD4Mo05osOqOUpBJHA9fS
   whSZG7VNf+vgNWTLNYSYLI04KiMdulnvU6ds+QPz+KKtAgMBAAE=
   -----END PUBLIC KEY-----
]]></artwork>
        <t>Bob's RSA public key has the following key identifier:</t>
        <artwork><![CDATA[
   9eeb67c9b95a74d44d2f16396680e801b5cba49c
]]></artwork>
        <t>Alice randomly generates integer z between 0 and n-1:</t>
        <artwork><![CDATA[
   9c126102a5c1c0354672a3c2f19fc9ddea988f815e1da812c7bd4f8eb082bdd1
   4f85a7f7c2f1af11d5333e0d6bcb375bf855f208da72ba27e6fb0655f2825aa6
   2b93b1f9bbd3491fed58f0380fa0de36430e3a144d569600bd362609be5b9481
   0875990b614e406fa6dff500043cbca95968faba61f795096a7fb3687a51078c
   4ca2cb663366b0bea0cd9cccac72a25f3f4ed03deb68b4453bba44b943f4367b
   67d6cd10c8ace53f545aac50968fc3c6ecc80f3224b64e37038504e2d2c0e2b2
   9d45e46c62826d96331360e4c17ea3ef89a9efc5fac99eda830e81450b6534dc
   0bdf042b8f3b706649c631fe51fc2445cc8d447203ec2f41f79cdfea16de1ce6
   abdfdc1e2ef2e5d5d8a65e645f397240ef5a26f5e4ff715de782e30ecf477293
   e89e13171405909a8e04dd31d21d0c57935fc1ceea8e1033e31e1bc8c56da0f3
   d79510f3f380ff58e5a61d361f2f18e99fbae5663172e8cd1f21deaddc5bbbea
   060d55f1842b93d1a9c888d0bf85d0af9947fe51acf940c7e7577eb79cabecb3
]]></artwork>
        <t>Alice encrypts integer z using the Bob's RSA public key, the result is
called c:</t>
        <artwork><![CDATA[
   c071fc273af8e7bdb152e06bf73310361074154a43abcf3c93c13499d2065344
   3eed9ef5d3c0685e4aa76a6854815bb97691ff9f8dac15eea7d74f452bf350a6
   46163d68288e978cbf7a73089ee52712f9a4f49e06ace7bbc85ab14d4e336c97
   c5728a2654138c7b26e8835c6b0a9fbed26495c4eadf745a2933be283f6a88b1
   6695fc06666873cfb6d36718ef3376cefc100c3941f3c494944078325807a559
   186b95ccabf3714cfaf79f83bd30537fdd9aed5a4cdcbd8bd0486faed73e9d48
   6b3087d6c806546b6e2671575c98461e441f65542bd95de26d0f53a64e7848d7
   31d9608d053e8d345546602d86236ffe3704c98ad59144f3089e5e6d527b5497
   ba103c79d62e80d0235410b06f71a7d9bd1c38000f910d6312ea2f20a3557535
   ad01b3093fb5f7ee507080d0f77d48c9c3b3796f6b7dd3786085fb895123f04c
   a1f1c1be22c747a8dface32370fb0d570783e27dbb7e74fca94ee39676fde3d8
   a9553d878224736e37e191dab953c7e228c07ad5ca3122421c14debd072a9ab6
]]></artwork>
        <t>Alice encodes the CMSORIforKEMOtherInfo structure with the algorithm
identifier for AES-128-KEYWRAP and a key length of 16 octets.
The DER encoding of CMSORIforKEMOtherInfo produces 18 octets:</t>
        <artwork><![CDATA[
   3010300b0609608648016503040105020110
]]></artwork>
        <t>The CMSORIforKEMOtherInfo structure contains:</t>
        <ul empty="true">
          <li>
            <artwork><![CDATA[
  0  16: SEQUENCE {
  2  11:  SEQUENCE {
  4   9:   OBJECT IDENTIFIER aes128-wrap (2 16 840 1 101 3 4 1 5)
       :    }
 15   1:  INTEGER 16
       :   }
]]></artwork>
          </li>
        </ul>
        <t>Alice derives the key-encryption key from integer z and the
CMSORIforKEMOtherInfo structure with KDF2 and SHA-256, the KEK is:</t>
        <artwork><![CDATA[
   4a95fe82f8d6ba56c83b4d51ef7dc06b
]]></artwork>
        <t>Alice randomly generates a 128-bit content-encryption key:</t>
        <artwork><![CDATA[
   77f2a84640304be7bd42670a84a1258b
]]></artwork>
        <t>Alice uses AES-128-KEYWRAP to encrypt the 128-bit content-encryption
key with the derived key-encryption key:</t>
        <artwork><![CDATA[
   904dbeb0271fc02082fe6d358c03352ae4ae6b540b782423
]]></artwork>
        <t>Alice encrypts the padded content using AES-128-CBC with the
content-encryption key.  The 16-octet IV used is:</t>
        <artwork><![CDATA[
   480ccafebabefacedbaddecaf8887781
]]></artwork>
        <t>The padded content plaintext is:</t>
        <artwork><![CDATA[
   48656c6c6f2c20776f726c6421030303
]]></artwork>
        <t>The resulting ciphertext is:</t>
        <artwork><![CDATA[
   c6ca65db7bdd76b0f37e2fab6264b66d
]]></artwork>
      </section>
      <section anchor="contentinfo-and-envelopeddata">
        <name>ContentInfo and EnvelopedData</name>
        <t>Alice encodes the EnvelopedData (using KEMRecipientInfo) and
ContentInfo, and then sends the result to Bob.  The Base64-encoded:
result is:</t>
        <ul empty="true">
          <li>
            <artwork><![CDATA[
MIICXAYJKoZIhvcNAQcDoIICTTCCAkkCAQMxggIEpIICAAYLKoZIhvcNAQkQDQMwggH
vAgEAgBSe62fJuVp01E0vFjlmgOgBtcuknDAJBgcogYxxAgIEBIIBgMBx/Cc6+Oe9sV
Lga/czEDYQdBVKQ6vPPJPBNJnSBlNEPu2e9dPAaF5Kp2poVIFbuXaR/5+NrBXup9dPR
SvzUKZGFj1oKI6XjL96cwie5ScS+aT0ngas57vIWrFNTjNsl8VyiiZUE4x7JuiDXGsK
n77SZJXE6t90Wikzvig/aoixZpX8BmZoc8+202cY7zN2zvwQDDlB88SUlEB4MlgHpVk
Ya5XMq/NxTPr3n4O9MFN/3ZrtWkzcvYvQSG+u1z6dSGswh9bIBlRrbiZxV1yYRh5EH2
VUK9ld4m0PU6ZOeEjXMdlgjQU+jTRVRmAthiNv/jcEyYrVkUTzCJ5ebVJ7VJe6EDx51
i6A0CNUELBvcafZvRw4AA+RDWMS6i8go1V1Na0Bswk/tffuUHCA0Pd9SMnDs3lva33T
eGCF+4lRI/BMofHBviLHR6jfrOMjcPsNVweD4n27fnT8qU7jlnb949ipVT2HgiRzbjf
hkdq5U8fiKMB61coxIkIcFN69ByqatjAbBgorgQUQhkgJLAEBMA0GCWCGSAFlAwQCAQ
UAAgEQMAsGCWCGSAFlAwQBBQQYkE2+sCcfwCCC/m01jAM1KuSua1QLeCQjMDwGCSqGS
Ib3DQEHATAdBglghkgBZQMEAQIEEEgMyv66vvrO263eyviId4GAEMbKZdt73Xaw834v
q2Jktm0=
]]></artwork>
          </li>
        </ul>
        <t>This result decodes to:</t>
        <ul empty="true">
          <li>
            <artwork><![CDATA[
  0 604: SEQUENCE {
  4   9:  OBJECT IDENTIFIER envelopedData (1 2 840 113549 1 7 3)
 15 589:  [0] {
 19 585:   SEQUENCE {
 23   1:    INTEGER 3
 26 516:    SET {
 30 512:     [4] {
 34  11:      OBJECT IDENTIFIER
       :       KEMRecipientInfo (1 2 840 113549 1 9 16 13 3)
 47 495:      SEQUENCE {
 51   1:       INTEGER 0
 54  20:       [0]
       :       9E EB 67 C9 B9 5A 74 D4 4D 2F 16 39 66 80 E8 01
       :       B5 CB A4 9C
 76   9:       SEQUENCE {
 78   7:        OBJECT IDENTIFIER kemRSA (1 0 18033 2 2 4)
       :         }
 87 384:       OCTET STRING
       :       C0 71 FC 27 3A F8 E7 BD B1 52 E0 6B F7 33 10 36
       :       10 74 15 4A 43 AB CF 3C 93 C1 34 99 D2 06 53 44
       :       3E ED 9E F5 D3 C0 68 5E 4A A7 6A 68 54 81 5B B9
       :       76 91 FF 9F 8D AC 15 EE A7 D7 4F 45 2B F3 50 A6
       :       46 16 3D 68 28 8E 97 8C BF 7A 73 08 9E E5 27 12
       :       F9 A4 F4 9E 06 AC E7 BB C8 5A B1 4D 4E 33 6C 97
       :       C5 72 8A 26 54 13 8C 7B 26 E8 83 5C 6B 0A 9F BE
       :       D2 64 95 C4 EA DF 74 5A 29 33 BE 28 3F 6A 88 B1
       :       66 95 FC 06 66 68 73 CF B6 D3 67 18 EF 33 76 CE
       :       FC 10 0C 39 41 F3 C4 94 94 40 78 32 58 07 A5 59
       :       18 6B 95 CC AB F3 71 4C FA F7 9F 83 BD 30 53 7F
       :       DD 9A ED 5A 4C DC BD 8B D0 48 6F AE D7 3E 9D 48
       :       6B 30 87 D6 C8 06 54 6B 6E 26 71 57 5C 98 46 1E
       :       44 1F 65 54 2B D9 5D E2 6D 0F 53 A6 4E 78 48 D7
       :       31 D9 60 8D 05 3E 8D 34 55 46 60 2D 86 23 6F FE
       :       37 04 C9 8A D5 91 44 F3 08 9E 5E 6D 52 7B 54 97
       :       BA 10 3C 79 D6 2E 80 D0 23 54 10 B0 6F 71 A7 D9
       :       BD 1C 38 00 0F 91 0D 63 12 EA 2F 20 A3 55 75 35
       :       AD 01 B3 09 3F B5 F7 EE 50 70 80 D0 F7 7D 48 C9
       :       C3 B3 79 6F 6B 7D D3 78 60 85 FB 89 51 23 F0 4C
       :       A1 F1 C1 BE 22 C7 47 A8 DF AC E3 23 70 FB 0D 57
       :       07 83 E2 7D BB 7E 74 FC A9 4E E3 96 76 FD E3 D8
       :       A9 55 3D 87 82 24 73 6E 37 E1 91 DA B9 53 C7 E2
       :       28 C0 7A D5 CA 31 22 42 1C 14 DE BD 07 2A 9A B6
475  27:       SEQUENCE {
477  10:        OBJECT IDENTIFIER
       :         kdf2 (1 3 133 16 840 9 44 1 1)
489  13:        SEQUENCE {
491   9:         OBJECT IDENTIFIER
       :          sha-256 (2 16 840 1 101 3 4 2 1)
502   0:         NULL
       :          }
       :         }
504   1:       INTEGER 16
507  11:       SEQUENCE {
509   9:        OBJECT IDENTIFIER
       :         aes128-wrap (2 16 840 1 101 3 4 1 5)
       :         }
520  24:       OCTET STRING
       :       90 4D BE B0 27 1F C0 20 82 FE 6D 35 8C 03 35 2A
       :       E4 AE 6B 54 0B 78 24 23
       :        }
       :       }
       :      }
546  60:    SEQUENCE {
548   9:     OBJECT IDENTIFIER data (1 2 840 113549 1 7 1)
559  29:     SEQUENCE {
561   9:      OBJECT IDENTIFIER
       :       aes128-CBC (2 16 840 1 101 3 4 1 2)
572  16:      OCTET STRING
       :      48 0C CA FE BA BE FA CE DB AD DE CA F8 88 77 81
       :       }
590  16:     [0] C6 CA 65 DB 7B DD 76 B0 F3 7E 2F AB 62 64 B6 6D
       :      }
       :     }
       :    }
       :   }
]]></artwork>
          </li>
        </ul>
        <t>ß## Recipient Processing</t>
        <t>Bob's private key:</t>
        <artwork><![CDATA[
   -----BEGIN PRIVATE KEY-----
   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
   -----END PRIVATE KEY-----
]]></artwork>
        <t>Bob decrypts the integer z with his RSA private key:</t>
        <artwork><![CDATA[
   9c126102a5c1c0354672a3c2f19fc9ddea988f815e1da812c7bd4f8eb082bdd1
   4f85a7f7c2f1af11d5333e0d6bcb375bf855f208da72ba27e6fb0655f2825aa6
   2b93b1f9bbd3491fed58f0380fa0de36430e3a144d569600bd362609be5b9481
   0875990b614e406fa6dff500043cbca95968faba61f795096a7fb3687a51078c
   4ca2cb663366b0bea0cd9cccac72a25f3f4ed03deb68b4453bba44b943f4367b
   67d6cd10c8ace53f545aac50968fc3c6ecc80f3224b64e37038504e2d2c0e2b2
   9d45e46c62826d96331360e4c17ea3ef89a9efc5fac99eda830e81450b6534dc
   0bdf042b8f3b706649c631fe51fc2445cc8d447203ec2f41f79cdfea16de1ce6
   abdfdc1e2ef2e5d5d8a65e645f397240ef5a26f5e4ff715de782e30ecf477293
   e89e13171405909a8e04dd31d21d0c57935fc1ceea8e1033e31e1bc8c56da0f3
   d79510f3f380ff58e5a61d361f2f18e99fbae5663172e8cd1f21deaddc5bbbea
   060d55f1842b93d1a9c888d0bf85d0af9947fe51acf940c7e7577eb79cabecb3
]]></artwork>
        <t>Bob encodes the CMSORIforKEMOtherInfo structure with the algorithm
identifier for AES-128-KEYWRAP and a key length of 16 octets.
The DER encoding of CMSORIforKEMOtherInfo is not repeated here.</t>
        <t>Bob derives the key-encryption key from integer z and the
CMSORIforKEMOtherInfo structure with KDF2 and SHA-256, the KEK is:</t>
        <artwork><![CDATA[
   4a95fe82f8d6ba56c83b4d51ef7dc06b
]]></artwork>
        <t>Bob uses AES-KEY-WRAP to decrypt the content-encryption key
with the key-encryption key; the content-encryption key is:</t>
        <artwork><![CDATA[
   77f2a84640304be7bd42670a84a1258b
]]></artwork>
        <t>Bob decrypts the content using AES-128-CBC with the content-
encryption key.  The 16-octet IV used is:</t>
        <artwork><![CDATA[
   480ccafebabefacedbaddecaf8887781
]]></artwork>
        <t>The received ciphertext content is:</t>
        <artwork><![CDATA[
   c6ca65db7bdd76b0f37e2fab6264b66d
]]></artwork>
        <t>The resulting padded plaintext content is:</t>
        <artwork><![CDATA[
   48656c6c6f2c20776f726c6421030303
]]></artwork>
        <t>After stripping the padding, the plaintext content is:</t>
        <artwork><![CDATA[
   Hello, world!
]]></artwork>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>We thank James Randall, Burt Kaliski, and John Brainard as the
original authors of <xref target="RFC5990"/>; this document is based on their work.</t>
      <t>We thank the members of the ASC X9F1 working group for their
contributions to drafts of ANS X9.44, which led to <xref target="RFC5990"/>.</t>
      <t>We thank Blake Ramsdell, Jim Schaad, Magnus Nystrom, Bob Griffin,
and John Linn for helping bring <xref target="RFC5990"/> to fruition.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
dN+TZo5Y1Uda/Lw/CJY5Bnm8m/s5snEoKhrsQGJRVfLoPkvtowAyT5uK3J6l
YinVaomGhcXkvGix/0wCIO+Seof7aqoLdd0ss5geDGLGvuD60/I1vuVNhX4H
06a2o1SXmhei2uCQ8XtXkmj2mZBiwnc8eZwLc7bp1hwkY+q4JK8j3YroiuJg
lR7fpaF9hjwxQ55QPYh+yN2ATXZpQHbDQpGbMObNlM6esmFBuACsHMwPyVca
H/5Q1f/IN8uFgDtsQp1wik4QDnWeDrNDB7tk+3xEnB/hKp6DELZUNht+fkHP
lqJkfyTY/E4AEZReeESODnlbJ1kK6c0b1JeiOkX59wPzf+PAX8W/inMuywWb
BchCDqvq4fyahD9w8QsYckLpRpjPgelOWgsDfP7OzDAuCEMlONcTLoyvFSE9
hBUmS+p20+0K3vuwYdfOBXhFydatKjDoX8Q+BSu9Le5AOkRIvgpZmydow98O
owGb+eD9kM6YX8JSubBma62fcRpwMMp0zKSnKy/b83RIj+GjUETfPKR2qoSi
MoK2EVC+Gid73Ny1Zq+65uINOnvVwYTfpZNDwvUqZU1Km5TRy7TNMVZQ/HvU
4fbCsnt5xIOntH5u9wU9VZEsXNfz0aIEPkkO5l6rsu/GHxzio0t/+K0/CCi7
9qd86c+AcK+8yAOZq77/cqFd9wGxovHhLs5NLXR+20LhOhy8u2bJ+/AiqjSC
UCywypRCHu5LXQpaQw2qLe+Yn6erHAnaraP9/To6d0E/VNKHAh4W5ZfgFNxW
ZkGZ8cEt1is9XYnT3mcK/aOEJLZspg1zIv1Bpc1VcO6ef1ID8wKEshu2F2y0
1zwcBHsUhDFVKRgmWC3RN/hSuNMIbFUU82tTYBe2YHd3NQuqq8SdLOKY6bBf
aWzwAVpk+xow79d7Dq5L/a/FzUdh6ndma5DvgUKAuq+7lSNTfsMosw/NgmlA
8+H9u1+5WEzMij5yeHnGb8fFVts4xQF2oFUtozVfyCftIr3ftIJohuVPoOJz
RlD7+w0CuzAP7//8wCDsy/j9eh0fmwVQqrfz19QwfKBBty2EQIu3di50ryEr
VA1B75K92N4uFwzUjmXBojjkzFLcF0xFzo+reXaFVH4XGWNAWrVDue53sKRx
JPZY251wZnblj+SOcMOW8fhhmiGjnEDjklmrYjopzZ2RNxYBCJ20HmqwJAtR
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
aHRiDzvBZDC5fX4+az5frFsTzRl4i8Gb8a3vTAJlHPsDlfLH8+vLeHMb2A+j
4ZDc3tw0Evn0bnnaHL3d+N9epg+Pc/X4ZWUOydPd64l2df2+3ITHT/qmIb/2
Ts7adzRyPjGvjjfL1dRYnHU6c2OhmXeXkuze+sN4cnnmPrT7xBgdx7HhN24I
6S6bTu+8fqUPumenau9lTEOeb4+rhr481eKXVdN/vJgt5frwzWw6dy+31sv1
o7ru+Tft3mv3+fnyzlzd3PbN+HTQs84ng2fTPqHFjxcv1sRbXS/WozNPiV4u
+94VuR4o93dj8+26M1n2Ly76zvvo4tocDE/t5fPQGEzPlNv3ye1L0Do9Occx
Xo4b0cNbo7UyLuS71qs/7w7004flha61p97DfRL1Nucd8ziczsb92+7tff+p
M5sO5Ghidpt6d/SAY9z6F1Z8dvfUGfYvNvbrzGu21/1L2UncRjzetDfJeNBb
Xenz07MQgDv79jo4DZ/J+VR+IRfTxeUExziN/e5j40W7eq8fvz/MwpvFeGFv
vm1uiDMfX5s9rWc0TVLvv577izeiaclKezKD9sjWNzdv0or6WOamL7fHJ+cb
/0F3x42Lvt6cyXeX9XioNOzotGFfH38j+ujp4io4bjeX7cbTMwnPpLsE1EAv
uqUyN3Zub67tb1bjzVpslkl0PtOjm3GjftNy3ux1PDePO7f3imNPnIfEebY6
345fVMl+HNws229OaJ3hGIF/fh5FEzUKZ1fm8eaqn5zPxsHzSe/ZHPvat5Pn
B+kluhw0mu07f/jNtZ+f4435OrqJX/pk9TSnOih6uDV1f+aqz+u1tOp6793z
9bBLNs8Pbd0Jnm+6Zxezp85D0phJVuPErHcdvd25PZ9uLKPRuzyjPHZ8c99+
Xz0+PrReep3g/WY5sUnwcNW5V+Tzd+30Vbk5b7zetEh4Mtamb82T4XO7uT6p
B87q8mS6+kbx0Rr4j5vL0zAwlsbsTa+TgWy0n9e9ePpw3l0+jrub93vz/FWK
g+PmoKE8m+FIPplcXgx7o/ike8ZqJFRFiXSp04v1qDd7ul4R0tcWvY19LQWj
G7PVki/Us8bi0TCPzcvxo5uE76DPv9mx9nwpBRbdbt8rbkd/eFbH34KbYety
8mbcxc3mjTEL+7PG7fvpt6frRJ8fTx977/Zj/BKe95y5E55utNlzfz1NaPHO
7PnJeNebJ2bSHbx4FzfHE/VmGuqL3uPxWor9xvPo1b4/vm2OvLb9cnL3ePJ8
7j8031etdWC1F3c06DBbDO8bxqZ7p3gT57o3P14+hXpjlMza16/rp8enpbS+
dFeKef1WTwaLycvtqnHuguZfeBtz1VS7tJhp9RgO7fFleDrQ4rdu40FtPD4M
Vq2W0m9p6xP528OlNDae7/qnD6djad578O+C0XwWjq5P3tXnO8pjDTNajI+f
W2ZPeWxOtMfmsNV7uG6HZv95lby9x9G31/G63/82OZFGycmJdz64u2peP8vB
VXfQXhK6ltFZ16/35Nmtbb+T1vP8+M4ZHF8/3ETr9mU0TZLr6/O5dRV57rm7
oPJzNu+cnq3mU0W5P57GMY6xWMyu5933564qPd55jz1bX09fLs43J46dzIPH
l2v5/vZqFNyNX5TnfhKfvlne/PSma52uNE25XlN8vH3zwORIj50zLVy0VdLv
92f2baiNxo/6/aj1TR6/msHL5va+3q5P9Qt34J60b+8elvHkVj8xtCHVQX1L
vmhvLjtm79oe+uHd8XlLu75/nIycl/5MXd61V807u9ka3kxerpJeL1Qfr2+8
mVKXXo3RW3BD6dJrb44n/rjZIW9nHdtcPa1nY6O5ULzYe3/bNMJp/3jTfHs5
7/WuXqYdv4fy03HPJjo5vX4+e6eFe48rcn550x5cnzw249fuy9vo6aT55ryQ
Ozs+XZ8nGPN+HXeNs/uo83g3gWk60uVmvJpEbfdYYQVzLw19aJqtkdp2X56H
4cVIfXmL78+U3tvyNjIXjWulq7y6U+Wq9/ruufH0cfzefjLds83b00oPqcwl
j92Lpgl+0837q/E80G4WM20j35++m+S4Pb037jbBbPr89GjXA+v+cr70A3Jz
99K8e78ars/nRkB14cg4GSzOhu8L7eJOjVaj0JrfrO4fnjrKa3eePEwuHhdJ
eOleGJ13Veu/RuOz5aP9l0qxWtXRS6vVyt+uypOsNEWHAevK9wH+WT/2z/qx
f9aP/bH6MRS3/yElK/yWi5gsCL0gFC+5OEoVxv+IYg0ENaugyM7A068ef1Q/
T4vfi1/aqrz78UG/EpSfq/TY0sC/LprIJhf+M6smYuIRWjFSqHJIYfv91Q7l
wglekZFXYuwa+HMVGXawxI9xLeOQfa0hLT+B34x5Pp7klEyn+LE2PHLxv7Lz
JraHnxqeEp990jwRfvvOvvxN/L98CZxpQr78FIR7eqH6fCKeOXjFBn4dy5lO
D8XGKl6K5840TCYhq704i8ZzsREDIHjhPCsGF/i5jqmIn3CP4oTdnkrvjbOk
nz9/iKUPtqFAuvh9Y/4R9BBPg8STowIYuFp2jVb2EQJ2b3hHpm0RPaM4Wi3S
M1RhTOtv4tBd8XuWQThiJ1jS/oW7ydlHF6fsA60FGIuzN6b4fYS+M0t8glg4
C2fiwBs7jn8oXjqj+SoRrzZAp2h2iCUn4kkcBkE4PxQyBF2Ec/at1DGZUlq6
9JLZwnw4fRCvQvadvf8LrUceDLnEAAA=

-->

</rfc>
