<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.18 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-lamps-cms-sphincs-plus-11" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.24.0 -->
  <front>
    <title abbrev="SLH-DSA Signature Algorithm in CMS">Use of the SLH-DSA Signature Algorithm in the Cryptographic Message Syntax (CMS)</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-lamps-cms-sphincs-plus-11"/>
    <author initials="R." surname="Housley" fullname="Russ Housley">
      <organization abbrev="Vigil Security">Vigil Security, LLC</organization>
      <address>
        <email>housley@vigilsec.com</email>
      </address>
    </author>
    <author initials="S." surname="Fluhrer" fullname="Scott Fluhrer">
      <organization>Cisco Systems</organization>
      <address>
        <email>sfluhrer@cisco.com</email>
      </address>
    </author>
    <author initials="P." surname="Kampanakis" fullname="Panos Kampanakis">
      <organization>Amazon Web Services</organization>
      <address>
        <email>kpanos@amazon.com</email>
      </address>
    </author>
    <author initials="B." surname="Westerbaan" fullname="Bas Westerbaan">
      <organization>Cloudflare</organization>
      <address>
        <email>bas@westerbaan.name</email>
      </address>
    </author>
    <date year="2024" month="November" day="03"/>
    <area>Security</area>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 126?>

<t>SLH-DSA is a stateless hash-based signature scheme.  This document
specifies the conventions for using the SLH-DSA signature algorithm
with the Cryptographic Message Syntax (CMS).  In addition, the
algorithm identifier and public key syntax are provided.</t>
    </abstract>
  </front>
  <middle>
    <?line 133?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document specifies the conventions for using the SLH-DSA hash-based
signature algorithm <xref target="FIPS205"/> with the Cryptographic Message
Syntax (CMS) <xref target="RFC5652"/> signed-data content type.</t>
      <t>SLH-DSA offers two signature modes: pure mode and pre-hash mode. SLH-DSA
signature operations include a context string as input.  The context string
has a maximum length of 255 bytes.  By default, the context string is the
empty string.  This document only specifies the use of pure mode with an empty
context string for the CMS signed-data content type.</t>
      <t>SLH-DSA offers three security levels.  The parameters for each of the
security levels were chosen to provide 128 bits of security, 192 bits of
security, and 256 bits of security.  Separate algorithm identifiers have
been assigned for SLH-DSA at each of these security levels.</t>
      <t>SLH-DSA is a stateless hash-based signature algorithm.  Other hash-based
signature algorithms are stateful, including HSS/LMS <xref target="RFC8554"/> and
XMSS <xref target="RFC8391"/>.  Without the need for state kept by the signer,
SLH-DSA is much less fragile.</t>
      <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="motivation">
        <name>Motivation</name>
        <t>There have been recent advances in cryptanalysis and advances in the
development of quantum computers.  Each of these advances pose a
threat to widely deployed digital signature algorithms.</t>
        <t>If cryptographically relevant quantum computers (CRQC) are ever built, they
will be able to break many of the public-key cryptosystems currently in use,
including RSA, DSA, ECDSA, and EdDSA.  A post-quantum cryptosystem (PQC) is
secure against quantum computers that have more than a trivial number of quantum
bits (qu-bits).  It is open to conjecture when it will be feasible to build
such quantum computers; however, it is prudent to use cryptographic
algorithms that remain secure if a CRQC is invented.  SLH-DSA is a PQC
signature algorithm.</t>
        <t>One use of a PQC signature algoritm is the protection of software
updates, perhaps using the format described in <xref target="RFC4108"/>, to enable
deployment of software that implements other new PQC algorithms for
key management and confidentiality.</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="slh-dsa-hash-based-signature-algorithm-overview">
      <name>SLH-DSA Hash-based Signature Algorithm Overview</name>
      <t>SLH-DSA is a hash-based signature scheme which consists of a few
time signature construction, namely Forest of Random Subsets (FORS)
and a hypertree. FORS signs a message with a private key. The
corresponding FORS public keys are the leaves in k binary trees.
The roots of these trees are hashed together to form a FORS root.
SLH-DSA uses a one-time signature scheme called WOTS+. The FORS
tree roots are signed by a WOTS+ one-time signature private
key. The corresponding WOTS+ public keys form the leaves in d-layers
of Merkle subtrees in the SLH-DSA hypertree. The bottom layer of
that hypertree signs the FORS roots with WOTS+. The root of the
bottom Merkle subtrees are then signed with WOTS+ and the
corresponding WOTS+ public keys form the leaves of the next level up
subtree. Subtree roots are consequently signed by their corresponding
subtree layers until we reach the top subtree. The top layer subtree
forms the hypertree root which is trusted at the verifier.</t>
      <t>A SLH-DSA signature consists of the randomization string, the FORS signature,
the WOTS+ signature in each layer, and the path to the root of each subtree
until the root of the hypertree is reached.</t>
      <t>A SLH-DSA signature is verified by verifying the FORS signature, the
WOTS+ signatures and the path to the root of each subtree. When reaching
the root of the hypertree, the signature verifies only if it hashes to
the pre-trusted root of the SLH-DSA hypertree.</t>
      <t>SLH-DSA is a stateless hash-based signature algorithm. Stateful
hash-based signature schemes require that the WOTS+ private key
(generated by using a state index) is never reused or the scheme
loses it security. Although its security decreases, FORS which is
used at the bottom of the SLH-DSA hypertree does not collapse if
the same private key used to sign two or more different messages
like in stateful hash-based signature schemes. Without the need for
state kept by the signer to ensure it is not reused, SLH-DSA is much
less fragile.</t>
      <t>SLH-DSA was designed to sign up to 2^64 messages and offers three
security levels.  The parameters of the SLH-DSA hypertree include the
security parameter, the hash function, the tree height, the number of
layers of subtrees, the Winternitz parameter of WOTS+, the number of FORS
trees and leaves in each.  The parameters for each of the security levels
were chosen to at least as secure as a generic block cipher of 128, 192,
or 256 bits.</t>
    </section>
    <section anchor="slh-dsa-public-key-identifier">
      <name>SLH-DSA Public Key Identifier</name>
      <t>The AlgorithmIdentifier for a SLH-DSA public key <bcp14>MUST</bcp14> use one of the
twelve id-slh-dsa object identifiers listed below, based on the
security level used to generate the SLH-DSA hypertree, the small or fast
version of the algorithm, and the use of SHA-256 <xref target="FIPS180"/> or
SHAKE256 <xref target="FIPS202"/>.  For example, id-slh-dsa-shake-256s
represents the 256-bit security level, the small version of the
algorithm, and the use of SHAKE256.  The parameters field of the
AlgorithmIdentifier for the SLH-DSA public key <bcp14>MUST</bcp14> be absent.</t>
      <artwork><![CDATA[
   nistAlgorithms OBJECT IDENTIFIER ::= { joint-iso-itu-t(2) 
     country(16) us(840) organization(1) gov(101) csor(3) 4 }

   sigAlgs OBJECT IDENTIFIER ::= { nistAlgorithms 3 }

   id-slh-dsa-sha2-128s OBJECT IDENTIFIER ::= { sigAlgs 20 }

   id-slh-dsa-sha2-128f OBJECT IDENTIFIER ::= { sigAlgs 21 }

   id-slh-dsa-sha2-192s OBJECT IDENTIFIER ::= { sigAlgs 22 }

   id-slh-dsa-sha2-192f OBJECT IDENTIFIER ::= { sigAlgs 23 }

   id-slh-dsa-sha2-256s OBJECT IDENTIFIER ::= { sigAlgs 24 }

   id-slh-dsa-sha2-256f OBJECT IDENTIFIER ::= { sigAlgs 25 }

   id-slh-dsa-shake-128s OBJECT IDENTIFIER ::= { sigAlgs 26 }

   id-slh-dsa-shake-128f OBJECT IDENTIFIER ::= { sigAlgs 27 }

   id-slh-dsa-shake-192s OBJECT IDENTIFIER ::= { sigAlgs 28 }

   id-slh-dsa-shake-192f OBJECT IDENTIFIER ::= { sigAlgs 29 }

   id-slh-dsa-shake-256s OBJECT IDENTIFIER ::= { sigAlgs 30 }

   id-slh-dsa-shake-256f OBJECT IDENTIFIER ::= { sigAlgs 31 }
]]></artwork>
      <t>When this AlgorithmIdentifier appears in the SubjectPublicKeyInfo field of
an X.509 certificate <xref target="RFC5280"/>, the certificate key usage extension <bcp14>MAY</bcp14>
contain digitalSignature, nonRepudiation, keyCertSign, and cRLSign; the
certificate key usage extension <bcp14>MUST NOT</bcp14> contain other values.</t>
      <artwork><![CDATA[
   pk-slh-dsa-sha2-128s PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-sha2-128s
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-sha2-128f PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-sha2-128f
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-sha2-192s PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-sha2-192s
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-sha2-192f PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-sha2-192f
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-sha2-256s PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-sha2-256s
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-sha2-256f PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-sha2-256f
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-shake-128s PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-shake-128s
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-shake-128f PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-shake-128f
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-shake-192s PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-shake-192s
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-shake-192f PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-shake-192f
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-shake-256s PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-shake-256s
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   pk-slh-dsa-shake-256f PUBLIC-KEY ::= {
       IDENTIFIER id-slh-dsa-shake-256f
       -- KEY no ASN.1 wrapping --
       CERT-KEY-USAGE
         { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
       -- PRIVATE-KEY no ASN.1 wrapping -- }

   SLH-DSA-PublicKey ::= OCTET STRING

   SLH-DSA-PrivateKey ::= OCTET STRING
]]></artwork>
      <t>No additional encoding of the SLH-DSA public key is applied in the
SubjectPublicKeyInfo field of an X.509 certificate <xref target="RFC5280"/>.</t>
      <t>No additional encoding of the SLH-DSA private key is applied in the
PrivateKeyInfo field of the privateKey field of the OneAsymmetricKey
type of an Asymmetric Key Package <xref target="RFC5958"/>.</t>
      <t>When SLH-DSA public key appears outside of aa SubjectPublicKeyInfo type
in an environment that uses ASN.1 encoding, the SLH-DSA public key
can be encoded as an OCTET STRING by using the SLH-DSA-PublicKey type.</t>
      <t>When the SLH-DSA private key appears outside of an Asymmetric Key Package
in an environment that uses ASN.1 encoding, the SLH-DSA private key
can be encoded as an OCTET STRING by using the SLH-DSA-PrivateKey type.</t>
    </section>
    <section anchor="signed-data-conventions">
      <name>Signed-data Conventions</name>
      <t>As specified in CMS <xref target="RFC5652"/>, the digital signature is produced from
the message digest and the signer's private key. The signature is computed
over different values depending on whether signed attributes are absent or
present.</t>
      <t>When signed attributes are absent, the SLH-DSA (pure mode) signature is computed over
the content. When signed attributes are present, a hash is computed over
the content using the same hash function that is used in the SLH-DSA tree. The
signed attributes <bcp14>MUST</bcp14> include a content-type attribute and a message-digest
attribute. The message-digest attribute contains the hash value of the
content. The SLH-DSA signature is computed over the DER encoding of the set
of signed attributes. The SLH-DSA signature generation operation is called
slh_sign; see Section 10.2.1 of <xref target="FIPS205"/>. In summary:</t>
      <artwork><![CDATA[
   IF (signed attributes are absent)
   THEN slh_sign(content)
   ELSE message-digest attribute = Hash(content);
        slh_sign(DER(SignedAttributes))
]]></artwork>
      <t>In some implementations, performance may be significantly improved by
signing and verifying DER(SignedAttributes) when the content is large. That
is, passing an entire large message content to the signing function or the
signature validation function can have an impact on performance. When the
signed attributes are present, <xref section="5.3" sectionFormat="of" target="RFC5652"/> requires the
inclusion of the content-type attribute and the message-digest attribute. Other
attributes can also be included.</t>
      <t>When using SLH-DSA and signed attributes are present in the SignerInfo, the
digestAlgorithms field in the SignedData <bcp14>MUST</bcp14> include the identifier for the
one-way hash function used to compute the message digest.</t>
      <t>When using SLH-DSA, the fields in the SignerInfo are used as follows:</t>
      <dl newline="true">
        <dt>digestAlgorithm:</dt>
        <dd>
          <t>The digestAlgorithm <bcp14>MUST</bcp14> identify a one-way hash function.  To ensure
collision resistance, the identified hash function <bcp14>SHOULD</bcp14> produce a
hash value that is at least twice the size of the hash function used in
the  SLH-DSA tree.  The hash functions defined in <xref target="FIPS180"/> and <xref target="FIPS202"/>
            <bcp14>MUST</bcp14> be supported for use with the variants of SLH-DSA as shown below; however,
other hash functions <bcp14>MAY</bcp14> also be supported:</t>
        </dd>
      </dl>
      <artwork><![CDATA[
      id-slh-dsa-sha2-128s:  SHA-256
      id-slh-dsa-sha2-128f:  SHA-256
      id-slh-dsa-sha2-192s:  SHA-512
      id-slh-dsa-sha2-192f:  SHA-512
      id-slh-dsa-sha2-256s:  SHA-512
      id-slh-dsa-sha2-256f:  SHA-512
      id-slh-dsa-shake-128s: SHAKE128 with 256 bit output
      id-slh-dsa-shake-128f: SHAKE128 with 256 bit output
      id-slh-dsa-shake-192s: SHAKE256 with 512 bit output
      id-slh-dsa-shake-192f: SHAKE256 with 512 bit output
      id-slh-dsa-shake-256s: SHAKE256 with 512 bit output
      id-slh-dsa-shake-256f: SHAKE256 with 512 bit output

      The object identifiers for SHA-256 and SHA-512 are included
      in [RFC8017].  The object identifiers for SHAKE128 and
      SHAKE256 are included in [RFC8702].  In all four cases, the
      AlgorithmIdentifier SHOULD NOT include parameters.
]]></artwork>
      <dl newline="true">
        <dt>signatureAlgorithm:</dt>
        <dd>
          <t>The signatureAlgorithm <bcp14>MUST</bcp14> contain one of the the SLH-DSA algorithm
identifiers, and the algorithm parameters field <bcp14>MUST</bcp14> be absent.  The
algorithm identifier <bcp14>MUST</bcp14> be one of the following:</t>
        </dd>
      </dl>
      <artwork><![CDATA[
      id-slh-dsa-sha2-128s,  id-slh-dsa-sha2-128f,
      id-slh-dsa-sha2-192s,  id-slh-dsa-sha2-192f,
      id-slh-dsa-sha2-256s,  id-slh-dsa-sha2-256f,
      id-slh-dsa-shake-128s, id-slh-dsa-shake-128f,
      id-slh-dsa-shake-192s, id-slh-dsa-shake-192f,
      id-slh-dsa-shake-256s, id-slh-dsa-shake-256f.
]]></artwork>
      <dl newline="true">
        <dt>signature:</dt>
        <dd>
          <t>The signature contains the signature value resulting from the
SLH-DSA signing operation with the parameters associated with the
selected signatureAlgorithm.  The SLH-DSA signature generation
operation is specified in Section 10.2.1 of <xref target="FIPS205"/> and the SLH-DSA
signature verification operation is specified in Section 10.3.1 of <xref target="FIPS205"/>.</t>
        </dd>
      </dl>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Implementations <bcp14>MUST</bcp14> protect the private keys.  Compromise of the
private keys may result in the ability to forge signatures.</t>
      <t>When generating an SLH-DSA key pair, an implementation <bcp14>MUST</bcp14> generate
each key pair independently of all other key pairs in the SLH-DSA
hypertree.</t>
      <t>A SLH-DSA tree <bcp14>MUST NOT</bcp14> be used for more than 2^64 signing operations.</t>
      <t>The generation of private keys relies on random numbers.  The use
of inadequate pseudo-random number generators (PRNGs) to generate
these values can result in little or no security.  An attacker may
find it much easier to reproduce the PRNG environment that produced
the keys, searching the resulting small set of possibilities, rather
than brute force searching the whole key space.  The generation of
quality random numbers is difficult, and <xref target="RFC4086"/> offers
important guidance in this area.</t>
      <t>When computing signatures, the same hash function <bcp14>SHOULD</bcp14> be used to
compute the message digest of the content and the signed attributes, if
they are present.</t>
      <t>When computing signatures, implementations <bcp14>SHOULD</bcp14> include protections against
fault injection attacks <xref target="CMP2018"/>.  Protections against these attacks
include signature verification prior to releasing the signature value to
confirm that no error injected and generating the signature a few times to
confirm that the same signature value is produced each time.</t>
      <t>To avoid algorithm substitution attacks, the CMSAlgorithmProtection attribute
defined in <xref target="RFC6211"/> <bcp14>SHOULD</bcp14> be included in signed attributes.</t>
      <t>Implementers <bcp14>SHOULD</bcp14> consider their particular use cases and may
choose to implement <bcp14>OPTIONAL</bcp14> fault attack countermeasures
<xref target="CMP2018"/> <xref target="Ge2023"/>.  Verifying a signature before releasing the
signature value is a typical fault attack countermeasure; however, this
countermeasure is not effective for SLH-DSA <xref target="Ge2023"/>.  Redundancy
by replicating the signature generation process <bcp14>MAY</bcp14> be used as an
effective fault attack countermeasure for SLH-DSA <xref target="Ge2023"/>;
however, the SLH-DSA signature generation is already considered slow.</t>
      <t>Likewise, Implementers <bcp14>SHOULD</bcp14> consider their particular use cases and may
choose to implement protections against passive power and emissions
side-channel attacks <xref target="SLotH"/>.</t>
    </section>
    <section anchor="operational-considerations">
      <name>Operational Considerations</name>
      <t>If slh_sign is implemented in a hardware device such as hardware
security module (HSM) or portable cryptographic token, implementations
might want to  avoid is sending the full content to the device.  By
including signed attributes, which necessarily include the message-digest
attribute and the content-type attribute as described in <xref section="5.3" sectionFormat="of" target="RFC5652"/>,
the much smaller set of signed attributes are sent to the device for signing.</t>
      <t>Following the approach in the previous paragraph is essentially the same as
using SLH-DSA in pre-hash mode, which means that a hash of the content is
passed to the SLH-DSA signature operation instead of the full message content.
For this reason, this document only specifies the use of SLH-DSA pure mode.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <t>For the ASN.1 Module in the Appendix of this document, IANA
is requested to assign an object identifier (OID) for the module
identifier (TBD1) with a Description of "id-mod-slh-dsa-2024".
The OID for the module should be allocated in the
"SMI Security for PKIX Module Identifier" registry (1.3.6.1.5.5.7.0).</t>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Thanks to
Mike Ounsworth,
Tomas Gustavsson,
Daniel Van Geest,
Carl Wallace, and
Phillip Hallam-Baker
for their careful review and constructive comments.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="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="FIPS202">
          <front>
            <title>SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions</title>
            <author>
              <organization>National Institute of Standards and Technology (NIST)</organization>
            </author>
            <date year="2015" month="August"/>
          </front>
          <seriesInfo name="FIPS PUB" value="202"/>
        </reference>
        <reference anchor="FIPS205" target="https://doi.org/10.6028/NIST.FIPS.205">
          <front>
            <title>Stateless Hash-Based Digital Signature Standard</title>
            <author>
              <organization>National Institute of Standards and Technology (NIST)</organization>
            </author>
            <date year="2024" month="August" day="13"/>
          </front>
          <seriesInfo name="FIPS PUB" value="205"/>
        </reference>
        <reference anchor="RFC5280">
          <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">
          <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="RFC5958">
          <front>
            <title>Asymmetric Key Packages</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document defines the syntax for private-key information and a content type for it. Private-key information includes a private key for a specified public-key algorithm and a set of attributes. The Cryptographic Message Syntax (CMS), as defined in RFC 5652, can be used to digitally sign, digest, authenticate, or encrypt the asymmetric key format content type. This document obsoletes RFC 5208. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5958"/>
          <seriesInfo name="DOI" value="10.17487/RFC5958"/>
        </reference>
        <reference anchor="RFC6211">
          <front>
            <title>Cryptographic Message Syntax (CMS) Algorithm Identifier Protection Attribute</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>The Cryptographic Message Syntax (CMS), unlike X.509/PKIX certificates, is vulnerable to algorithm substitution attacks. In an algorithm substitution attack, the attacker changes either the algorithm being used or the parameters of the algorithm in order to change the result of a signature verification process. In X.509 certificates, the signature algorithm is protected because it is duplicated in the TBSCertificate.signature field with the proviso that the validator is to compare both fields as part of the signature validation process. This document defines a new attribute that contains a copy of the relevant algorithm identifiers so that they are protected by the signature or authentication process. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6211"/>
          <seriesInfo name="DOI" value="10.17487/RFC6211"/>
        </reference>
        <reference anchor="RFC8017">
          <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="RFC8702">
          <front>
            <title>Use of the SHAKE One-Way Hash Functions in the Cryptographic Message Syntax (CMS)</title>
            <author fullname="P. Kampanakis" initials="P." surname="Kampanakis"/>
            <author fullname="Q. Dang" initials="Q." surname="Dang"/>
            <date month="January" year="2020"/>
            <abstract>
              <t>This document updates the "Cryptographic Message Syntax (CMS) Algorithms" (RFC 3370) and describes the conventions for using the SHAKE family of hash functions in the Cryptographic Message Syntax as one-way hash functions with the RSA Probabilistic Signature Scheme (RSASSA-PSS) and Elliptic Curve Digital Signature Algorithm (ECDSA). The conventions for the associated signer public keys in CMS are also described.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8702"/>
          <seriesInfo name="DOI" value="10.17487/RFC8702"/>
        </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="RFC4108">
          <front>
            <title>Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="August" year="2005"/>
            <abstract>
              <t>This document describes the use of the Cryptographic Message Syntax (CMS) to protect firmware packages, which provide object code for one or more hardware module components. CMS is specified in RFC 3852. A digital signature is used to protect the firmware package from undetected modification and to provide data origin authentication. Encryption is optionally used to protect the firmware package from disclosure, and compression is optionally used to reduce the size of the protected firmware package. A firmware package loading receipt can optionally be generated to acknowledge the successful loading of a firmware package. Similarly, a firmware package load error report can optionally be generated to convey the failure to load a firmware package. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4108"/>
          <seriesInfo name="DOI" value="10.17487/RFC4108"/>
        </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="RFC8554">
          <front>
            <title>Leighton-Micali Hash-Based Signatures</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <author fullname="M. Curcio" initials="M." surname="Curcio"/>
            <author fullname="S. Fluhrer" initials="S." surname="Fluhrer"/>
            <date month="April" year="2019"/>
            <abstract>
              <t>This note describes a digital-signature system based on cryptographic hash functions, following the seminal work in this area of Lamport, Diffie, Winternitz, and Merkle, as adapted by Leighton and Micali in 1995. It specifies a one-time signature scheme and a general signature scheme. These systems provide asymmetric authentication without using large integer mathematics and can achieve a high security level. They are suitable for compact implementations, are relatively simple to implement, and are naturally resistant to side-channel attacks. Unlike many other signature systems, hash-based signatures would still be secure even if it proves feasible for an attacker to build a quantum computer.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF. This has been reviewed by many researchers, both in the research group and outside of it. The Acknowledgements section lists many of them.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8554"/>
          <seriesInfo name="DOI" value="10.17487/RFC8554"/>
        </reference>
        <reference anchor="RFC8391">
          <front>
            <title>XMSS: eXtended Merkle Signature Scheme</title>
            <author fullname="A. Huelsing" initials="A." surname="Huelsing"/>
            <author fullname="D. Butin" initials="D." surname="Butin"/>
            <author fullname="S. Gazdag" initials="S." surname="Gazdag"/>
            <author fullname="J. Rijneveld" initials="J." surname="Rijneveld"/>
            <author fullname="A. Mohaisen" initials="A." surname="Mohaisen"/>
            <date month="May" year="2018"/>
            <abstract>
              <t>This note describes the eXtended Merkle Signature Scheme (XMSS), a hash-based digital signature system that is based on existing descriptions in scientific literature. This note specifies Winternitz One-Time Signature Plus (WOTS+), a one-time signature scheme; XMSS, a single-tree scheme; and XMSS^MT, a multi-tree variant of XMSS. Both XMSS and XMSS^MT use WOTS+ as a main building block. XMSS provides cryptographic digital signatures without relying on the conjectured hardness of mathematical problems. Instead, it is proven that it only relies on the properties of cryptographic hash functions. XMSS provides strong security guarantees and is even secure when the collision resistance of the underlying hash function is broken. It is suitable for compact implementations, is relatively simple to implement, and naturally resists side-channel attacks. Unlike most other signature systems, hash-based signatures can so far withstand known attacks using quantum computers.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8391"/>
          <seriesInfo name="DOI" value="10.17487/RFC8391"/>
        </reference>
        <reference anchor="CMP2018" target="https://link.springer.com/chapter/10.1007/978-3-319-79063-3_8">
          <front>
            <title>Grafting Trees: A Fault Attack Against the SPHINCS Framework</title>
            <author initials="L." surname="Castelnovi" fullname="Laurent Castelnovi">
              <organization/>
            </author>
            <author initials="A." surname="Martinelli" fullname="Ange Martinelli">
              <organization/>
            </author>
            <author initials="T." surname="Prest" fullname="Thomas Prest">
              <organization/>
            </author>
            <date year="2018"/>
          </front>
          <seriesInfo name="Post-Quantum Cryptography" value="pp. 165-184"/>
          <seriesInfo name="PQCrypto" value="2018"/>
          <seriesInfo name="Lecture Notes in Computer Science" value="vol 10786"/>
        </reference>
        <reference anchor="SLotH" target="https://eprint.iacr.org/2024/367.pdf">
          <front>
            <title>Accelerating SLH-DSA by Two Orders of Magnitude with a Single Hash Unit</title>
            <author initials="M.-J." surname="Saarinen" fullname="M-J. Saarinen">
              <organization/>
            </author>
            <date year="2024"/>
          </front>
        </reference>
        <reference anchor="Ge2023" target="https://tches.iacr.org/index.php/TCHES/article/view/10278/9726">
          <front>
            <title>On Protecting SPHINCS+ Against Fault Attacks</title>
            <author initials="A." surname="Genêt" fullname="Aymeric Genêt">
              <organization/>
            </author>
            <date year="2023"/>
          </front>
          <seriesInfo name="TCHES" value="2023/02"/>
          <seriesInfo name="DOI" value="10.46586/tches.v2023.i2.80-114"/>
        </reference>
      </references>
    </references>
    <?line 569?>

<section anchor="appendix-asn1-module">
      <name>Appendix: ASN.1 Module</name>
      <t>This ASN.1 Module builds upon the conventions established in <xref target="RFC5911"/>.</t>
      <sourcecode type="asn.1" markers="true"><![CDATA[
SLH-DSA-Module-2024
  { iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs9(9)
    id-smime(16) id-mod(0) id-mod-slh-dsa-2024(TBD1) }

DEFINITIONS IMPLICIT TAGS ::= BEGIN

EXPORTS ALL;

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

--
-- Object Identifiers
--

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

sigAlgs OBJECT IDENTIFIER ::= { nistAlgorithms 3 }

id-slh-dsa-sha2-128s OBJECT IDENTIFIER ::= { sigAlgs 20 }

id-slh-dsa-sha2-128f OBJECT IDENTIFIER ::= { sigAlgs 21 }

id-slh-dsa-sha2-192s OBJECT IDENTIFIER ::= { sigAlgs 22 }

id-slh-dsa-sha2-192f OBJECT IDENTIFIER ::= { sigAlgs 23 }

id-slh-dsa-sha2-256s OBJECT IDENTIFIER ::= { sigAlgs 24 }

id-slh-dsa-sha2-256f OBJECT IDENTIFIER ::= { sigAlgs 25 }

id-slh-dsa-shake-128s OBJECT IDENTIFIER ::= { sigAlgs 26 }

id-slh-dsa-shake-128f OBJECT IDENTIFIER ::= { sigAlgs 27 }

id-slh-dsa-shake-192s OBJECT IDENTIFIER ::= { sigAlgs 28 }

id-slh-dsa-shake-192f OBJECT IDENTIFIER ::= { sigAlgs 29 }

id-slh-dsa-shake-256s OBJECT IDENTIFIER ::= { sigAlgs 30 }

id-slh-dsa-shake-256f OBJECT IDENTIFIER ::= { sigAlgs 31 }

--
-- Signature Algorithm, Public Key, and Private Key
--

sa-slh-dsa-sha2-128s SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-sha2-128s
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-sha2-128s }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-sha2-128s } }

sa-slh-dsa-sha2-128f SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-sha2-128f
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-sha2-128f }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-sha2-128f } }

sa-slh-dsa-sha2-192s SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-sha2-192s
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-sha2-192s }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-sha2-192s } }

sa-slh-dsa-sha2-192f SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-sha2-192f
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-sha2-192f }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-sha2-192f } }

sa-slh-dsa-sha2-256s SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-sha2-256s
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-sha2-256s }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-sha2-256s } }

sa-slh-dsa-sha2-256f SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-sha2-256f
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-sha2-256f }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-sha2-256f } }

sa-slh-dsa-shake-128s SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-shake-128s
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-shake-128s }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-shake-128s } }

sa-slh-dsa-shake-128f SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-shake-128f
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-shake-128f }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-shake-128f } }

sa-slh-dsa-shake-192s SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-shake-192s
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-shake-192s }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-shake-192s } }

sa-slh-dsa-shake-192f SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-shake-192f
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-shake-192f }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-shake-192f } }

sa-slh-dsa-shake-256s SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-shake-256s
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-shake-256s }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-shake-256s } }

sa-slh-dsa-shake-256f SIGNATURE-ALGORITHM ::= {
    IDENTIFIER id-slh-dsa-shake-256f
    PARAMS ARE absent
    PUBLIC-KEYS { pk-slh-dsa-shake-256f }
    SMIME-CAPS { IDENTIFIED BY id-slh-dsa-shake-256f } }

pk-slh-dsa-sha2-128s PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-sha2-128s
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-sha2-128f PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-sha2-128f
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-sha2-192s PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-sha2-192s
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-sha2-192f PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-sha2-192f
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-sha2-256s PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-sha2-256s
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-sha2-256f PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-sha2-256f
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-shake-128s PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-shake-128s
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-shake-128f PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-shake-128f
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-shake-192s PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-shake-192s
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-shake-192f PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-shake-192f
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-shake-256s PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-shake-256s
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

pk-slh-dsa-shake-256f PUBLIC-KEY ::= {
    IDENTIFIER id-slh-dsa-shake-256f
    -- KEY no ASN.1 wrapping --
    CERT-KEY-USAGE
      { digitalSignature, nonRepudiation, keyCertSign, cRLSign }
    -- PRIVATE-KEY no ASN.1 wrapping -- }

SLH-DSA-PublicKey ::= OCTET STRING

SLH-DSA-PrivateKey ::= OCTET STRING

--
-- Expand the signature algorithm set used by CMS [RFC5911]
--

SignatureAlgorithmSet SIGNATURE-ALGORITHM ::=
    { sa-slh-dsa-sha2-128s |
      sa-slh-dsa-sha2-128f |
      sa-slh-dsa-sha2-192s |
      sa-slh-dsa-sha2-192f |
      sa-slh-dsa-sha2-256s |
      sa-slh-dsa-sha2-256f |
      sa-slh-dsa-shake-128s |
      sa-slh-dsa-shake-128f |
      sa-slh-dsa-shake-192s |
      sa-slh-dsa-shake-192f |
      sa-slh-dsa-shake-256s |
      sa-slh-dsa-shake-256f,
      ... }

--
-- Expand the S/MIME capabilities set used by CMS [RFC5911]
--

SMimeCaps SMIME-CAPS ::=
    { sa-slh-dsa-sha2-128s.&smimeCaps |
      sa-slh-dsa-sha2-128f.&smimeCaps |
      sa-slh-dsa-sha2-192s.&smimeCaps |
      sa-slh-dsa-sha2-192f.&smimeCaps |
      sa-slh-dsa-sha2-256s.&smimeCaps |
      sa-slh-dsa-sha2-256f.&smimeCaps |
      sa-slh-dsa-shake-128s.&smimeCaps |
      sa-slh-dsa-shake-128f.&smimeCaps |
      sa-slh-dsa-shake-192s.&smimeCaps |
      sa-slh-dsa-shake-192f.&smimeCaps |
      sa-slh-dsa-shake-256s.&smimeCaps |
      sa-slh-dsa-shake-256f.&smimeCaps,
      ... }
     
END
]]></sourcecode>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
