<?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.35 (Ruby 3.4.9) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-cose-split-signing-algs-00" category="std" consensus="true" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.33.0 -->
  <front>
    <title abbrev="Split Signing Algorithms for COSE">Split Signing Algorithms for COSE</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-cose-split-signing-algs-00"/>
    <author fullname="Emil Lundberg" role="editor">
      <organization>Yubico</organization>
      <address>
        <postal>
          <street>Gävlegatan 22</street>
          <city>Stockholm</city>
          <country>SE</country>
        </postal>
        <email>emil@emlun.se</email>
      </address>
    </author>
    <author initials="M. B." surname="Jones" fullname="Michael B. Jones">
      <organization>Self-Issued Consulting</organization>
      <address>
        <postal>
          <country>United States</country>
        </postal>
        <email>michael_b_jones@hotmail.com</email>
        <uri>https://self-issued.info/</uri>
      </address>
    </author>
    <date year="2026" month="April" day="24"/>
    <area>Security</area>
    <workgroup>COSE</workgroup>
    <keyword>COSE</keyword>
    <keyword>Signing</keyword>
    <keyword>Algorithms</keyword>
    <keyword>Split Algorithms</keyword>
    <keyword>Split Signing</keyword>
    <keyword>ARKG</keyword>
    <abstract>
      <?line 149?>

<t>This specification defines COSE algorithm identifiers
for negotiating how to split a signature algorithm between two cooperating parties.
Typically the first party hashes the data to be signed
and the second party finishes the signature over the hashed data.
This is a common technique, useful for example when the signing private key is held in a smart card
or similar hardware component with limited processing power and communication bandwidth.
The resulting signatures are identical in structure to those computed by a single party,
and can be verified using the same verification algorithm
without additional steps to preprocess the signed data.</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-cose-split-signing-algs/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        COSE Working Group mailing list (<eref target="mailto:cose@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/cose/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/cose/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/cose-wg/draft-ietf-cose-split-signing-algs"/>.</t>
    </note>
  </front>
  <middle>
    <?line 161?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>CBOR Object Signing and Encryption (COSE) <xref target="RFC9052"/>
algorithm identifiers are used for algorithm negotiation
and to annotate cryptographic objects with how to interpret them,
for example which algorithm to use to verify a signature or decapsulate a shared key.
Existing COSE algorithm identifiers omit some internal details of how the object was constructed,
since those details are typically irrelevant for the recipient.</t>
      <t>The algorithm identifiers defined in this specification are meant for a complementary use case:
to divide responsibilities during <em>construction</em> of a cryptographic object,
instead of describing how to <em>consume</em> the object.
Specifically, they provide an interoperable way to negotiate
how a signing operation is split between two cooperating parties,
for example, a smart card and a software application,
while the verification algorithm for the resulting signature remains the same
as if the signature was created by a single party.
These split algorithm identifiers are therefore not meant for annotating signature objects,
since the verification algorithm is better indicated using already existing algorithm identifiers.</t>
      <t>As mentioned above, a primary use case for this is for algorithm negotiation
between a software application and a smart card or other hardware security module (HSM) holding the signing private key.
Since the HSM may have limited processing power and communication bandwidth,
it may not be practical to send the entire original message to the HSM.
Instead, since most signature algorithms begin with digesting the message
into a fixed-length intermediate input, this initial digest can be computed by the software application
while the HSM performs the rest of the signature algorithm on the digest.
This is a common technique used in standards such as OpenPGP <xref target="OPENPGPCARD"/>,
PKCS #11 <xref target="PKCS11-Spec-v3.1"/>, and PIV <xref target="NIST-SP-800-73-5"/>.</t>
      <t>Since different signature algorithms digest the message in different ways
and at different stages of the algorithm,
it is not possible for a cryptographic API to specify that, for example, "the hash digest is computed by the caller"
generically for all algorithms.
Security considerations for this split may also differ between algorithms.
Instead, the algorithm identifiers defined in this specification
enable the parties of that cryptographic API to signal precisely, for each signature algorithm individually,
which steps of the algorithm are performed by which party.
We thus define two roles:
the <em>digester</em> (e.g., a software application) that initializes the signing procedure,
and the <em>signer</em> (e.g., an HSM) that holds exclusive control of the signing private key.</t>
      <t>Note that these algorithm identifiers do not define new "pre-hashed" variants of the base signature algorithm,
nor an intermediate "hash envelope" data structure, such as that defined in <xref target="I-D.COSE-Hash-Envelope"/>.
Rather, these identifiers denote existing signature algorithms
that would typically be executed by a single party,
but split into two stages.</t>
      <t>Some signature algorithms,
such as PureEdDSA <xref target="RFC8032"/>,
by their design, cannot be split in this way, and therefore cannot be assigned split signing algorithm identifiers.
However, if such a signature algorithm defines a "pre-hashed" variant,
that "pre-hashed" algorithm can be assigned a split signing algorithm identifier,
enabling the pre-hashing step to be performed by the <em>digester</em>
and the remaining steps by the <em>signer</em>.
For example, this specification defines Ed25519ph-split (<xref target="eddsa-split"/>) as a split variant of Ed25519ph <xref target="RFC8032"/>.
Note that Ed25519 and Ed25519ph have distinct verification algorithms,
but Ed25519ph and Ed25519ph-split use the same verification algorithm.</t>
      <section anchor="requirements-notation-and-conventions">
        <name>Requirements Notation and Conventions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 <xref target="RFC8174">RFC2119</xref> when, and only when, they appear in all capitals, as shown here.</t>
      </section>
      <section anchor="prior-art">
        <name>Prior Art</name>
        <t>Split signing is a common technique used in existing smart card standards.
The following subsections expand on how the technique is applied in OpenPGP <xref target="OPENPGPCARD"/>,
PKCS #11 <xref target="PKCS11-Spec-v3.1"/>, and PIV <xref target="NIST-SP-800-73-5"/>.</t>
        <section anchor="openpgp">
          <name>OpenPGP</name>
          <t>The OpenPGP smart card protocol <xref target="OPENPGPCARD"/>
defines the format of signing commands in section "7.2.10 PSO: COMPUTE DIGITAL SIGNATURE":</t>
          <ul empty="true">
            <li>
              <t><strong>7.2.10 PSO: COMPUTE DIGITAL SIGNATURE</strong></t>
              <t>The command for digital signature computation is shown in the table below.
The hash value (ECDSA) or the DigestInfo is delivered in the data field of the command. [...]</t>
            </li>
          </ul>
          <t>The "Data field" parameter is subsequently defined as "Data to be integrated in the DSI: hash value (ELC) or DigestInfo (RSA)".
Thus both ECDSA and RSA signatures are computed jointly by the host computing the digest of the signed data
and the smart card finalizing the signature on the digest;
the host acts as <em>digester</em> and the smart card acts as <em>signer</em>.</t>
          <t>TODO: Spec 3.4.1 only covers ECDSA and RSA, but some implementations also support Ed25519.
Identify and include good references for how OpenPGP smart cards handle Ed25519.</t>
        </section>
        <section anchor="pkcs-11">
          <name>PKCS #11</name>
          <t>PKCS #11 <xref target="PKCS11-Spec-v3.1"/>
defines signing commands in sections "5.13 Signing and MACing functions" and "5.14 Message-based signing and MACing functions".
These sections define <tt>C_SignInit</tt> and <tt>C_MessageSignInit</tt> functions that both take a <tt>pMechanism</tt> parameter indicating the signature mechanism.
Mechanisms are defined in section "6 Mechanisms", which notably includes the subsections
"6.3.12 ECDSA without hashing" and "6.3.13 ECDSA with hashing":</t>
          <ul empty="true">
            <li>
              <t><strong>6.3.12 ECDSA without hashing</strong></t>
              <t>[...]</t>
              <t>The ECDSA without hashing mechanism, denoted <strong>CKM_ECDSA</strong>, is a mechanism for single-part signatures and verification for ECDSA.
(This mechanism corresponds only to the part of ECDSA that processes the hash value, which should not be longer than 1024 bits;
it does not compute the hash value.)</t>
              <t>[...]</t>
            </li>
          </ul>
          <ul empty="true">
            <li>
              <t><strong>6.3.13 ECDSA with hashing</strong></t>
              <t>[...]</t>
              <t>The ECDSA with SHA-1, SHA-224, SHA-256, SHA-384, SHA-512, SHA3-224, SHA3-256, SHA3-384, SHA3-512 mechanism,
denoted <strong>CKM_ECDSA_[SHA1|SHA224|SHA256|SHA384|SHA512|SHA3_224|SHA3_256|SHA3_384|SHA3_512]</strong> respectively,
is a mechanism for single- and multiple-part signatures and verification for ECDSA.
This mechanism computes the entire ECDSA specification, including the hashing with
SHA-1, SHA-224, SHA-256, SHA-384, SHA-512, SHA3-224, SHA3-256, SHA3-384, SHA3-512 respectively.</t>
              <t>[...]</t>
            </li>
          </ul>
          <t>Thus PKCS #11 supports both split signing using the <strong>CKM_ECDSA</strong> mechanism
and "non-split" signing using the <strong>CKM_ECDSA_SHA*</strong> mechanisms;
when using <strong>CKM_ECDSA</strong>,
the PKCS #11 caller acts as <em>host</em> and the Cryptoki implementation acts as <em>signer</em>.</t>
        </section>
        <section anchor="piv-fips-201-nist-sp-800">
          <name>PIV: FIPS-201, NIST SP 800</name>
          <t>NIST Special Publication 800 <xref target="NIST-SP-800-73-5"/>
contains technical specifications for the Personal Identity Verification (PIV) standard <xref target="FIPS-201"/>,
and defines the format of signing commands in section "3.2.4. GENERAL AUTHENTICATE Card Command":</t>
          <ul empty="true">
            <li>
              <t><strong>3.2.4. GENERAL AUTHENTICATE Card Command</strong>
[...]</t>
              <t>The GENERAL AUTHENTICATE command SHALL be used with the digital signature key ('9C') to
realize the signing functionality on the PIV client application programming interface. Data to be
signed is expected to be hashed off-card. Appendix A.4 illustrates the use of the GENERAL
AUTHENTICATE command for signature generation.</t>
              <t>[...]</t>
            </li>
          </ul>
          <t>Appendix A.4 gives examples of RSA and ECDSA signature generation commands.
For RSA the command needs to be sent in two parts,
giving the "Data Field" argument first as "'7C' – L1 { '82' '00' '81' L2 {first part of the PKCS #1 v1.5 or PSS padded message hash value }}"
and then "{second and last part of the PKCS #1 v1.5 or PSS padded message hash value}";
for ECDSA the "Data Field" argument is given as "'7C' – L1 { '82' '00' '81' L2 {hash value of message}}".</t>
          <t>Thus both ECDSA and RSA signatures are computed jointly by the host computing the digest of the signed data
and the smart card finalizing the signature on the digest;
the host acts as <em>digester</em> and the smart card acts as <em>signer</em>.</t>
        </section>
      </section>
    </section>
    <section anchor="split-algs">
      <name>Split Signing Algorithms</name>
      <t>This section defines divisions of signing algorithm steps between a <em>digester</em> and a <em>signer</em>
in a split signing protocol,
and assigns algorithm identifiers to these algorithm divisions.
The <em>digester</em> performs the first part of the split algorithm and does not have access to the signing private key,
while the <em>signer</em> performs the second part of the split algorithm and has access to the signing private key.
For signing algorithms that format the message to insert domain separation tags,
as described in <xref section="2.2.5" sectionFormat="of" target="RFC9380"/>,
this message formatting is also performed by the <em>signer</em>.</t>
      <t>How the digest, and any related <tt>COSE_Sign_Args</tt> structure (see <xref target="cose-sign-args"/>),
are transported from <em>digester</em> to <em>signer</em> is out of scope for this specification,
but it is expected that the digest will usually be transmitted as the "data to be signed" argument.</t>
      <t>The algorithm identifiers defined in this specification with "-split" in their names
MAY appear in COSE structures used internally between the <em>digester</em> and the <em>signer</em> in a split signing protocol,
but SHOULD NOT appear in COSE structures consumed by signature verifiers.
COSE structures consumed by signature verifiers
SHOULD instead use the corresponding conventional algorithm identifiers for the verification algorithm.
These are listed in the "Verification algorithm" column in the tables defining split signing algorithm identifiers.</t>
      <t>The following subsections define an initial set of split signing algorithm identifiers.
The last subsection provides guidance for defining additional identifiers beyond this initial set.</t>
      <section anchor="ecdsa-split">
        <name>ECDSA</name>
        <t>ECDSA <xref target="FIPS-186-5"/> split signing uses the following division between the <em>digester</em> and the <em>signer</em>
of the steps of the ECDSA signature generation algorithm <xref target="FIPS-186-5"/>:</t>
        <ul spacing="normal">
          <li>
            <t>The signing procedure is defined in Section 6.4.1 of <xref target="FIPS-186-5"/>.</t>
          </li>
          <li>
            <t>The <em>digester</em> performs Step 1 of the signing procedure - hashing the message, producing the value <em>H</em>.</t>
          </li>
          <li>
            <t>The message input to the <em>signer</em> is the value <em>H</em> defined in the signing procedure.</t>
          </li>
          <li>
            <t>The <em>signer</em> resumes the signing procedure from Step 2.</t>
          </li>
        </ul>
        <t>The following algorithm identifiers are defined:</t>
        <table anchor="tbl-ecdsa-split">
          <name>ECDSA split signing algorithm values.</name>
          <thead>
            <tr>
              <th align="left">Name</th>
              <th align="left">COSE Value</th>
              <th align="left">Verification algorithm</th>
              <th align="left">Description</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">ESP256-split</td>
              <td align="left">TBD</td>
              <td align="left">ESP256</td>
              <td align="left">ESP256 split signing as defined in <xref target="ecdsa-split"/></td>
            </tr>
            <tr>
              <td align="left">ESP384-split</td>
              <td align="left">TBD</td>
              <td align="left">ESP384</td>
              <td align="left">ESP384 split signing as defined in <xref target="ecdsa-split"/></td>
            </tr>
            <tr>
              <td align="left">ESP512-split</td>
              <td align="left">TBD</td>
              <td align="left">ESP512</td>
              <td align="left">ESP512 split signing as defined in <xref target="ecdsa-split"/></td>
            </tr>
          </tbody>
        </table>
        <t>Note: This is distinct from the similarly named Split-ECDSA (SECDSA) <xref target="SECDSA"/>,
although SECDSA can be implemented using this split procedure as a component.</t>
      </section>
      <section anchor="eddsa-split">
        <name>HashEdDSA</name>
        <t>Split HashEdDSA <xref target="RFC8032"/> uses the following division between the <em>digester</em> and the <em>signer</em>
of the steps of the HashEdDSA signing algorithm <xref target="RFC8032"/>:</t>
        <ul spacing="normal">
          <li>
            <t>HashEdDSA is a combination of the EdDSA signing procedure and the PureEdDSA signing procedure.
The EdDSA signing procedure is defined in the first paragraph of <xref section="3.3" sectionFormat="of" target="RFC8032"/>.
The PureEdDSA signing procedure is defined in the second paragraph of <xref section="3.3" sectionFormat="of" target="RFC8032"/>.</t>
          </li>
          <li>
            <t>The <em>digester</em> computes the value <tt>PH(M)</tt> defined in the EdDSA signing procedure.</t>
          </li>
          <li>
            <t>The message input to the <em>signer</em> is the value <tt>PH(M)</tt> defined in the EdDSA signing procedure.
This value is represented as <tt>M</tt> in the PureEdDSA signing procedure.</t>
          </li>
          <li>
            <t>The <em>signer</em> executes the PureEdDSA signing procedure,
where the value denoted <tt>M</tt> in the PureEdDSA signing procedure
takes the value denoted <tt>PH(M)</tt> in the EdDSA signing procedure.</t>
          </li>
        </ul>
        <t>PureEdDSA <xref target="RFC8032"/> cannot be divided in this way
since such a division would require that the <em>digester</em> has access to the private key.</t>
        <t>The following algorithm identifiers are defined:</t>
        <table anchor="tbl-eddsa-split">
          <name>HashEdDSA algorithm values.</name>
          <thead>
            <tr>
              <th align="left">Name</th>
              <th align="left">COSE Value</th>
              <th align="left">Verification algorithm</th>
              <th align="left">Description</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Ed25519ph</td>
              <td align="left">TBD</td>
              <td align="left">Ed25519ph</td>
              <td align="left">EdDSA using the Ed25519ph parameter set in <xref section="5.1" sectionFormat="of" target="RFC8032"/></td>
            </tr>
            <tr>
              <td align="left">Ed25519ph-split</td>
              <td align="left">TBD</td>
              <td align="left">Ed25519ph</td>
              <td align="left">EdDSA using the Ed25519ph parameter set in <xref section="5.1" sectionFormat="of" target="RFC8032"/> and split as defined in <xref target="eddsa-split"/></td>
            </tr>
            <tr>
              <td align="left">Ed448ph</td>
              <td align="left">TBD</td>
              <td align="left">Ed448ph</td>
              <td align="left">EdDSA using the Ed448ph parameter set in <xref section="5.2" sectionFormat="of" target="RFC8032"/></td>
            </tr>
            <tr>
              <td align="left">Ed448ph-split</td>
              <td align="left">TBD</td>
              <td align="left">Ed448ph</td>
              <td align="left">EdDSA using the Ed448ph parameter set in <xref section="5.2" sectionFormat="of" target="RFC8032"/> and split as defined in <xref target="eddsa-split"/></td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="ecdsa-arkg">
        <name>ECDSA with ARKG</name>
        <t>TODO: Move <xref section="5" sectionFormat="of" target="I-D.bradleylundberg-ARKG"/> to this document</t>
      </section>
      <section anchor="defining-split-algs">
        <name>Defining Split Signing Algorithms</name>
        <t>Future definitions of additional split signing algorithm identifiers
SHOULD follow the conventions established in <xref target="split-algs"/> as far as possible.
For example, if a signature algorithm prescribes insertion of domain separation tags
in a way that requires processing the entirety of the data to be signed,
it might be necessary to delegate the domain separation responsibility to the <em>digester</em>.
Per the considerations in <xref target="sec-cons-trusted-roles-comp"/>,
split signing algorithm identifiers SHOULD be defined in ways that minimize
how much responsibility is delegated to the <em>digester</em>.</t>
        <t>As a concrete example, consider ML-DSA and HashML-DSA <xref target="FIPS-204"/>.
ML-DSA and HashML-DSA prefix the input data with a 0 octet and a 1 octet respectively,
which enforces domain separation between ML-DSA and HashML-DSA signatures.
<xref section="D" sectionFormat="of" target="RFC9881"/> describes a mode of ML-DSA
that could be assigned a split signing algorithm identifier
where the <em>digester</em> performs <tt>Computeμ</tt> and the <em>signer</em> performs <tt>Signμ</tt>.
Note that this puts the <em>digester</em> in control of the domain separation tags;
this is necessary if the hash step is not performed by the <em>signer</em>.
Therefore with this construction, it is the <em>digester</em> that decides
whether the signing protocol will produce an ML-DSA signature or a HashML-DSA signature.
In contrast, HashML-DSA first hashes the input data alone and then another time with domain separation tags;
therefore HashML-DSA can be assigned a split signing algorithm identifier
that keeps the <em>signer</em> in control of the domain separation tags
and ensures that the signing protocol can only produce HashML-DSA signatures.</t>
      </section>
    </section>
    <section anchor="cose-sign-args">
      <name>COSE Signing Arguments</name>
      <t>While many signature algorithms take the private key and data to be signed as the only two parameters,
some signature algorithms have additional parameters that must also be set.
For example,
to sign using a key derived by ARKG <xref target="I-D.bradleylundberg-ARKG"/>,
two additional arguments <tt>kh</tt> and <tt>ctx</tt> are needed in <tt>ARKG-Derive-Private-Key</tt> to derive the signing private key.</t>
      <t>While such additional arguments are simple to provide to the API of the signing procedure in a single-party context,
in a split signing context these additional arguments also need to be conveyed from the <em>digester</em> to the <em>signer</em>.
For this purpose, we define a new COSE structure <tt>COSE_Sign_Args</tt> for "COSE signing arguments".
This enables defining a unified, algorithm-agnostic protocol between the <em>digester</em> and the <em>signer</em>,
rather than requiring a distinct protocol for each signature algorithm for the sake of conveying algorithm-specific parameters.</t>
      <t><tt>COSE_Sign_Args</tt> is built on a CBOR map.
The set of common parameters that can appear in a <tt>COSE_Sign_Args</tt>
can be found in the IANA "COSE Signing Arguments Common Parameters" registry established in <xref target="common-params-reg"/>.
Additional parameters defined for specific signing algorithms
can be found in the IANA "COSE Signing Arguments Algorithm Parameters" registry established in <xref target="alg-params-reg"/>.</t>
      <t>The CDDL grammar describing <tt>COSE_Sign_Args</tt>, using the CDDL fragment defined in <xref section="1.5" sectionFormat="of" target="RFC9052"/>, is:</t>
      <sourcecode type="cddl"><![CDATA[
COSE_Sign_Args = {
    3 ^ => tstr / int,  ; alg
    * label => values,
}
]]></sourcecode>
      <section anchor="cose-sign-args-common">
        <name>COSE Signing Arguments Common Parameters</name>
        <t>This document defines a set of common parameters for a COSE Signing Arguments object.
<xref target="tbl-cose-sign-args-common"/> provides a summary of the parameters defined in this section.</t>
        <table anchor="tbl-cose-sign-args-common">
          <name>Common parameters of the COSE_Sign_Args structure.</name>
          <thead>
            <tr>
              <th align="left">Name</th>
              <th align="left">Label</th>
              <th align="left">CBOR Type</th>
              <th align="left">Value Registry</th>
              <th align="left">Description</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">alg</td>
              <td align="left">3</td>
              <td align="left">tstr / int</td>
              <td align="left">COSE Algorithms</td>
              <td align="left">Signing algorithm to use</td>
            </tr>
          </tbody>
        </table>
        <ul spacing="normal">
          <li>
            <t>alg: This parameter identifies the signing algorithm the additional arguments apply to.
The signer MUST verify that this algorithm matches any key usage restrictions set on the key to be used.
If the algorithms do not match, then the signature operation MUST be aborted with an error.</t>
          </li>
        </ul>
        <t>Definitions of COSE algorithms MAY define additional algorithm-specific parameters for <tt>COSE_Sign_Args</tt>.</t>
        <t>The following CDDL example conveys additional arguments for signing data
using the ESP256-split algorithm (see <xref target="ecdsa-split"/>)
and a key derived using <tt>ARKG-P256</tt> <xref target="I-D.bradleylundberg-ARKG"/>:</t>
        <sourcecode type="cddl"><![CDATA[
{
  3: -65539,   ; alg: ESP256-split with ARKG-P256 (placeholder value)

               ; ARKG-P256 key handle
               ; (HMAC-SHA-256-128 followed by
                  SEC1 uncompressed ECDH public key)
  -1: h'27987995f184a44cfa548d104b0a461d
        0487fc739dbcdabc293ac5469221da91b220e04c681074ec4692a76ffacb9043de
          c2847ea9060fd42da267f66852e63589f0c00dc88f290d660c65a65a50c86361',

               ; ctx argument to ARKG-Derive-Private-Key
  -2: 'ARKG-P256.test vectors',
}
]]></sourcecode>
      </section>
    </section>
    <section anchor="security-cons">
      <name>Security Considerations</name>
      <section anchor="sec-cons-trusted-roles-protocol">
        <name>Protocol-Level Trusted Roles</name>
        <t>This specification assumes that both the <em>digester</em> and <em>signer</em> roles
described in <xref target="split-algs"/> are trusted and cooperate honestly.
This is because a similar division between "application" and "secure element"
typically exists already:
even if all steps of the signing algorithm are executed in a trusted secure element,
the inputs to the secure element are provided by some outside component such as a software application.
If the application can provide any input to be signed,
then for all practical purposes it is trusted with possession of any private keys
for as long as it is authorized to exercise the secure element.
The application can in practice obtain a signature over any chosen message
without needing to perform a forgery attack.
The same relationship exists between <em>digester</em> and <em>signer</em>.
Applications that cannot trust an external <em>digester</em> -
for example a hardware security device with an integrated secure display of what data is about to be signed -
by definition have no use for split signing algorithm identifiers.</t>
        <t>Similarly from a verifier's perspective,
these split signing procedures are implementation details.
When a signature is generated by a single party,
that single party takes on both the <em>digester</em> and the <em>signer</em> roles,
and obviously trusts itself to perform the <em>digester</em> role honestly.
From the verifier's perspective,
a malicious <em>digester</em> in the split signing model would have the same powers
as a malicious signature generator in a single-party signing model.
Thus, on the application or protocol level,
assuming an honest <em>digester</em> is no more restrictive than assuming an honest signature generator.</t>
      </section>
      <section anchor="sec-cons-trusted-roles-comp">
        <name>Component-Level Trusted Roles</name>
        <t>The reasoning in <xref target="sec-cons-trusted-roles-protocol"/> does not hold on the component level.
A <em>signer</em> implementation MUST NOT assume that the <em>digester</em> implementation
it interoperates with is necessarily honest.
Split signing algorithms MUST NOT be defined in a way
that enables a malicious <em>digester</em> with access to an honest <em>signer</em> to produce forgeries -
any that could not be produced by simply requesting a signature over the desired message -
or extract secrets from the <em>signer</em>.</t>
        <t>For example, for ECDSA (<xref target="ecdsa-split"/>), a malicious <em>digester</em> can choose <em>H</em>
in such a way that the <em>signer</em> will derive any <em>digester</em>-chosen value of <em>e</em>,
including zero or other potentially problematic values.
Fortunately, in this case, this does not enable the <em>digester</em> to extract the signature nonce or private key.
It also does not make forgeries easier,
since the <em>digester</em> still needs to find a preimage of <em>e</em> for the relevant hash function.
Definitions of other algorithms need to ensure that similar chosen-input attacks
do not enable extracting secrets or forging protocol-level messages.</t>
        <t>For example, a naively prehashed version of FALCON <xref target="FALCON"/> would allow such a key compromise:
A FALCON signature is a value <tt>s</tt> such that both <tt>s</tt> and <tt>s * h - hash(r || m)</tt> are short,
where <tt>h</tt> is the public key and <tt>r</tt> a randomizer.
If the digester gets to query the signer for signatures of arbitrary stand-ins for <tt>hash(r || m)</tt>,
they can extract the private key by for example asking for repeated signatures of 0.
Therefore, definitions of split signing algorithms need to be reviewed and potentially have security proofs adjusted.</t>
      </section>
      <section anchor="sec-cons-invalid-alg-use">
        <name>Incorrect Use of Split Signing Algorithm Identifiers</name>
        <t><xref target="split-algs"/> recommends against exposing split signing algorithm identifiers -
including those defined in this specification with "-split" in their names -
to signature verifiers.
For example, they should not appear as the "alg" parameter of a COSE_Key public key sent to a signature verifier.
If a split signing algorithm identifier is encountered in an invalid context like this,
the recipient SHOULD reject the message with a fatal error.</t>
        <t>This is because the purpose of these split signing algorithm identifiers
is to enable more flexible production of signatures that can be verified by existing implementations of existing verification algorithms.
A prevalence of these identifiers appearing outside the split signing context would defeat this purpose;
we therefore recommend such use SHOULD NOT be tolerated.</t>
        <t>This recommendation is the opposite of the oft-cited "robustness principle" stated in paragraph 3.9 of <xref target="RFC1958"/>.
Implementations MAY choose to instead follow the robustness principle and tolerate incorrect use of split signing algorithm identifiers,
instead interpreting the identifier as referencing the defined corresponding verification algorithm.
Note however that this is no longer considered a best practice and is likely to harm interoperability <xref target="RFC9413"/>.</t>
        <t>A verifier's choice to tolerate or not tolerate incorrect use of split signing algorithm identifiers
is expected to not affect security,
assuming a split algorithm identifier is interpreted as an alias representing the same verification algorithm as a non-split algorithm identifier.</t>
      </section>
    </section>
    <section anchor="impl-cons">
      <name>Implementation Considerations</name>
      <section anchor="impl-cons-non-split-algs">
        <name>Using Non-Split Signing Algorithm Identifiers in a Split Signing Protocol</name>
        <t>A protocol designed to use split signing algorithm identifiers such as those defined in this specification
MAY also allow use of algorithm identifiers that do not represent split signing algorithms.
In this case, the <em>signer</em> performs all steps of the signing procedure as usual.
For example, if the <em>signer</em> receives a signature request with an the algorithm identifier "ESP256",
then the <em>digester</em> passes the input data through unmodified
and it is the <em>signer</em> that computes the SHA-256 digest of the input data as defined in the ESP256 definition <xref target="RFC9864"/>.</t>
      </section>
    </section>
    <section anchor="IANA">
      <name>IANA Considerations</name>
      <section anchor="cose-alg-reg">
        <name>COSE Algorithms Registrations</name>
        <t>This section registers the following values in the IANA "COSE Algorithms" registry <xref target="IANA.COSE"/>:</t>
        <ul spacing="normal">
          <li>
            <t>Name: ESP256-split
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD (Requested Assignment -300)</t>
              </li>
              <li>
                <t>Description: ESP256 split signing</t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: <xref target="ecdsa-split"/> of this specification</t>
              </li>
              <li>
                <t>Recommended: Yes</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: ESP384-split
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD (Requested Assignment -301)</t>
              </li>
              <li>
                <t>Description: ESP384 split signing</t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: <xref target="ecdsa-split"/> of this specification</t>
              </li>
              <li>
                <t>Recommended: Yes</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: ESP512-split
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD (Requested Assignment -302)</t>
              </li>
              <li>
                <t>Description: ESP512 split signing</t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: <xref target="ecdsa-split"/> of this specification</t>
              </li>
              <li>
                <t>Recommended: Yes</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: Ed25519ph
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD</t>
              </li>
              <li>
                <t>Description: EdDSA using the Ed25519ph parameter set in <xref section="5.1" sectionFormat="of" target="RFC8032"/></t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: <xref section="5.1" sectionFormat="of" target="RFC8032"/></t>
              </li>
              <li>
                <t>Recommended: Yes</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: Ed25519ph-split
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD (Requested Assignment -303)</t>
              </li>
              <li>
                <t>Description: Ed25519ph split as defined in <xref target="eddsa-split"/></t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: <xref target="eddsa-split"/> of this specification</t>
              </li>
              <li>
                <t>Recommended: Yes</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: Ed448ph
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD</t>
              </li>
              <li>
                <t>Description: EdDSA using the Ed448ph parameter set in <xref section="5.2" sectionFormat="of" target="RFC8032"/></t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: <xref section="5.2" sectionFormat="of" target="RFC8032"/></t>
              </li>
              <li>
                <t>Recommended: Yes</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: Ed448ph-split
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD (Requested Assignment -304)</t>
              </li>
              <li>
                <t>Description: Ed448ph split as defined in <xref target="eddsa-split"/></t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: <xref target="eddsa-split"/> of this specification</t>
              </li>
              <li>
                <t>Recommended: Yes</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: ESP256-ARKG
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD</t>
              </li>
              <li>
                <t>Description: ESP256 using private key derived by ARKG-P256</t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: <xref target="RFC9864"/>, <xref target="I-D.bradleylundberg-ARKG"/></t>
              </li>
              <li>
                <t>Recommended: TBD</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: ESP256-split-ARKG
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD (placeholder -65539)</t>
              </li>
              <li>
                <t>Description: ESP256-split using private key derived by ARKG-P256</t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: This document, <xref target="I-D.bradleylundberg-ARKG"/></t>
              </li>
              <li>
                <t>Recommended: TBD</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: ESP384-ARKG
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD</t>
              </li>
              <li>
                <t>Description: ESP384 using private key derived by ARKG-P384</t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: <xref target="RFC9864"/>, <xref target="I-D.bradleylundberg-ARKG"/></t>
              </li>
              <li>
                <t>Recommended: TBD</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: ESP384-split-ARKG
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD</t>
              </li>
              <li>
                <t>Description: ESP384-split using private key derived by ARKG-P384</t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: This document, <xref target="I-D.bradleylundberg-ARKG"/></t>
              </li>
              <li>
                <t>Recommended: TBD</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: ESP512-ARKG
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD</t>
              </li>
              <li>
                <t>Description: ESP512 using private key derived by ARKG-P521</t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: <xref target="RFC9864"/>, <xref target="I-D.bradleylundberg-ARKG"/></t>
              </li>
              <li>
                <t>Recommended: TBD</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: ESP512-split-ARKG
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD</t>
              </li>
              <li>
                <t>Description: ESP512-split using private key derived by ARKG-P521</t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: This document, <xref target="I-D.bradleylundberg-ARKG"/></t>
              </li>
              <li>
                <t>Recommended: TBD</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Name: ESP256K-ARKG
            </t>
            <ul spacing="normal">
              <li>
                <t>Value: TBD</t>
              </li>
              <li>
                <t>Description: ESP256K using private key derived by ARKG-P256k</t>
              </li>
              <li>
                <t>Capabilities: [kty]</t>
              </li>
              <li>
                <t>Change Controller: IETF</t>
              </li>
              <li>
                <t>Reference: [RFC8812], <xref target="I-D.bradleylundberg-ARKG"/></t>
              </li>
              <li>
                <t>Recommended: TBD</t>
              </li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="common-params-reg">
        <name>COSE Signing Arguments Common Parameters Registry</name>
        <t>This specification establishes the "COSE Signing Arguments Common Parameters" registry.
The registry uses the "Expert Review Required" registration procedure.
Guidelines for the experts are the same as those in <xref section="11.6" sectionFormat="of" target="RFC9052"/>.
It should be noted that, in addition to the expert review,
some portions of the registry require a specification,
potentially a Standards Track RFC, be supplied as well.</t>
        <t>The columns of the registry are:</t>
        <dl>
          <dt>Name:</dt>
          <dd>
            <t>A descriptive name that enables easier reference to the item.
It is not used in the encoding.</t>
          </dd>
          <dt>Label:</dt>
          <dd>
            <t>The value used as the CBOR map label for this parameter.
Labels MUST be unique.
The label can be a positive integer, a negative integer, or a string.
Integer values between 0 and 255 and strings of length 1 are designated as "Standards Action".
Integer values from 256 to 65535 and strings of length 2 are designated as "Specification Required".
Integer values of greater than 65535 and strings of length greater than 2 are designated as "Expert Review".
Integer values in the range -65536 to -1 are
"used for signing arguments specific to a single algorithm delegated
to the COSE Signing Arguments Algorithm Parameters registry".
Integer values less than -65536 are marked as private use.</t>
          </dd>
          <dt>CBOR Type:</dt>
          <dd>
            <t>The CBOR type of the parameter's value.</t>
          </dd>
          <dt>Value Registry:</dt>
          <dd>
            <t>The registry that values come from, if one exists.</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>A brief description for the parameter.</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>A pointer to the public specification for the parameter, if one exists.</t>
          </dd>
        </dl>
        <section anchor="initial-contents">
          <name>Initial Contents</name>
          <t>The initial contents of this registry are the values in <xref target="tbl-cose-sign-args-common"/>.
All of the entries in the "References" column of this registry point to this document.</t>
        </section>
      </section>
      <section anchor="alg-params-reg">
        <name>COSE Signing Arguments Algorithm Parameters Registry</name>
        <t>This specification establishes the "COSE Signing Arguments Algorithm Parameters" registry.
The registry uses the "Expert Review Required" registration procedure.
Guidelines for the experts are the same as those in <xref section="11.6" sectionFormat="of" target="RFC9052"/>.</t>
        <t>The columns of the table are:</t>
        <dl>
          <dt>Name:</dt>
          <dd>
            <t>A descriptive name that enables easier reference to the item.
It is not used in the encoding.</t>
          </dd>
          <dt>Algorithms:</dt>
          <dd>
            <t>The algorithm(s) that this registry entry is used for.
Values are taken from the "COSE Algorithms" registry.
Multiple algorithms can be specified in this entry.
For the table, the algorithm/label pair MUST be unique.</t>
          </dd>
          <dt>Label:</dt>
          <dd>
            <t>The value used as the CBOR map label for this parameter.
The label is a negative integer value in the range -65536 to -1.
Labels are expected to be reused for multiple algorithms.</t>
          </dd>
          <dt>CBOR Type:</dt>
          <dd>
            <t>The CBOR type of the parameter's value.</t>
          </dd>
          <dt>Required:</dt>
          <dd>
            <t>"Required" if the parameter is required for this algorithm, otherwise "Optional".</t>
          </dd>
          <dt>Description:</dt>
          <dd>
            <t>A brief description for the parameter.</t>
          </dd>
          <dt>Reference:</dt>
          <dd>
            <t>A pointer to the public specification for the parameter, if one exists.</t>
          </dd>
        </dl>
        <section anchor="alg-params-reg-initial">
          <name>Initial Contents</name>
          <t>The initial contents of this registry are as follows.
These values come from <xref section="5.3" sectionFormat="of" target="I-D.bradleylundberg-ARKG"/>.</t>
          <section anchor="kh">
            <name>kh</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>kh</t>
              </dd>
              <dt>Algorithms:</dt>
              <dd>
                <t>ESP256-ARKG, ESP256-split-ARKG, ESP384-ARKG, ESP384-split-ARKG, ESP512-ARKG, ESP512-split-ARKG, ESP256K-ARKG</t>
              </dd>
              <dt>Label:</dt>
              <dd>
                <t>-1</t>
              </dd>
              <dt>Cbor Type:</dt>
              <dd>
                <t>bstr</t>
              </dd>
              <dt>Required:</dt>
              <dd>
                <t>Required</t>
              </dd>
              <dt>Description:</dt>
              <dd>
                <t>kh argument to ARKG-Derive-Private-Key.</t>
              </dd>
              <dt>Reference:</dt>
              <dd>
                <t><xref section="5.3" sectionFormat="of" target="I-D.bradleylundberg-ARKG"/></t>
              </dd>
            </dl>
          </section>
          <section anchor="ctx">
            <name>ctx</name>
            <dl>
              <dt>Name:</dt>
              <dd>
                <t>ctx</t>
              </dd>
              <dt>Algorithms:</dt>
              <dd>
                <t>ESP256-ARKG, ESP256-split-ARKG, ESP384-ARKG, ESP384-split-ARKG, ESP512-ARKG, ESP512-split-ARKG, ESP256K-ARKG</t>
              </dd>
              <dt>Label:</dt>
              <dd>
                <t>-2</t>
              </dd>
              <dt>Cbor Type:</dt>
              <dd>
                <t>bstr</t>
              </dd>
              <dt>Required:</dt>
              <dd>
                <t>Required</t>
              </dd>
              <dt>Description:</dt>
              <dd>
                <t>ctx argument to ARKG-Derive-Private-Key.</t>
              </dd>
              <dt>Reference:</dt>
              <dd>
                <t><xref section="5.3" sectionFormat="of" target="I-D.bradleylundberg-ARKG"/></t>
              </dd>
            </dl>
          </section>
        </section>
      </section>
    </section>
    <section anchor="impl-status">
      <name>Implementation Status</name>
      <t>This section is to be removed from the specification by the RFC Editor before publication as an RFC.</t>
      <t>There are currently two known implementations using features defined by this specification:</t>
      <ul spacing="normal">
        <li>
          <t><eref target="https://github.com/wwWallet">wwWallet</eref>, an EU Digital Identity pilot project.
wwWallet was entered into the
<eref target="https://www.sprind.org/en/actions/challenges/eudi-wallet-prototypes">"EUDI Wallet Prototypes" competition held by SprinD GmbH</eref>,
and a branch of the wallet was submitted in the competition.
The competition entry implements ARKG <xref target="I-D.bradleylundberg-ARKG"/>
for efficiently generating single-use hardware-bound holder binding keys.  </t>
          <t>
The <eref target="https://github.com/gunet/funke-s3a-wallet-frontend/blob/stage-3/src/services/keystore.ts">implementation</eref>
uses the <tt>COSE_Key_Ref</tt> data structure defined in version 01 of this specification
in order to send ARKG inputs to a WebAuthn authenticator,
and uses the placeholder value for the experimental split algorithm identifier ESP256-split-ARKG
defined in Section 5.2 of <xref target="I-D.bradleylundberg-ARKG"/>
to negotiate creation and usage of ARKG-derived keys for signing operations.
Thus wwWallet assumes the <em>digester</em> role while the WebAuthn authenticator assumes the <em>signer</em> role.</t>
        </li>
        <li>
          <t><eref target="https://www.yubico.com/">Yubico</eref>, a hardware security key vendor,
has produced limited-availability prototypes of their YubiKey product
with an ARKG implementation interoperable with wwWallet.
The YubiKey implementation uses the <tt>COSE_Key_Ref</tt> data structure defined in version 01 of this specification
to receive ARKG inputs from a WebAuthn Relying Party,
and uses the placeholder value for the experimental split algorithm identifier ESP256-split-ARKG
defined in Section 5.2 of <xref target="I-D.bradleylundberg-ARKG"/>
to negotiate creation and usage of ARKG-derived keys for signing operations.
Thus the YubiKey assumes the <em>signer</em> role while the WebAuthn Relying Party assumes the <em>digester</em> role.</t>
        </li>
      </ul>
      <t><xref target="tbl-impl-status-matrix"/> summarizes implementation status for individual features.</t>
      <table anchor="tbl-impl-status-matrix">
        <name>Implementation status of individual features.</name>
        <thead>
          <tr>
            <th align="left">Feature</th>
            <th align="left">Defined by</th>
            <th align="left">Digester</th>
            <th align="left">Signer</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">ESP256-split</td>
            <td align="left">This specification</td>
            <td align="left">-</td>
            <td align="left">-</td>
          </tr>
          <tr>
            <td align="left">ESP384-split</td>
            <td align="left">This specification</td>
            <td align="left">-</td>
            <td align="left">-</td>
          </tr>
          <tr>
            <td align="left">ESP512-split</td>
            <td align="left">This specification</td>
            <td align="left">-</td>
            <td align="left">-</td>
          </tr>
          <tr>
            <td align="left">Ed25519ph-split</td>
            <td align="left">This specification</td>
            <td align="left">-</td>
            <td align="left">-</td>
          </tr>
          <tr>
            <td align="left">Ed448ph-split</td>
            <td align="left">This specification</td>
            <td align="left">-</td>
            <td align="left">-</td>
          </tr>
          <tr>
            <td align="left">ESP256-split-ARKG</td>
            <td align="left">
              <xref target="I-D.bradleylundberg-ARKG"/></td>
            <td align="left">wwWallet</td>
            <td align="left">Yubico</td>
          </tr>
          <tr>
            <td align="left">ESP384-split-ARKG</td>
            <td align="left">
              <xref target="I-D.bradleylundberg-ARKG"/></td>
            <td align="left">-</td>
            <td align="left">-</td>
          </tr>
          <tr>
            <td align="left">ESP512-split-ARKG</td>
            <td align="left">
              <xref target="I-D.bradleylundberg-ARKG"/></td>
            <td align="left">-</td>
            <td align="left">-</td>
          </tr>
          <tr>
            <td align="left">
              <tt>COSE_Sign_Args</tt></td>
            <td align="left">This specification</td>
            <td align="left">wwWallet</td>
            <td align="left">Yubico</td>
          </tr>
        </tbody>
      </table>
      <section anchor="impl-status-dependents">
        <name>Dependent Specifications</name>
        <t>This specification is mutually dependent on <xref target="I-D.bradleylundberg-ARKG"/>:</t>
        <ul spacing="normal">
          <li>
            <t><xref section="5.2" sectionFormat="of" target="I-D.bradleylundberg-ARKG"/>
duplicates the definitions of the COSE algorithm identifiers
ESP256-ARKG, ESP256-split-ARKG, ESP384-ARKG, ESP384-split-ARKG, ESP512-ARKG and ESP512-split-ARKG
registered in <xref target="cose-alg-reg"/> of this specification.</t>
          </li>
          <li>
            <t>The initial contents of the COSE Signing Arguments Algorithm Parameters Registry registered in <xref target="alg-params-reg-initial"/>
are defined in <xref section="5.3" sectionFormat="of" target="I-D.bradleylundberg-ARKG"/>.</t>
          </li>
        </ul>
        <t>These sections of <xref target="I-D.bradleylundberg-ARKG"/> will likely be moved to <xref target="ecdsa-arkg"/>
in a future revision of this specification.</t>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="I-D.bradleylundberg-ARKG">
          <front>
            <title>The Asynchronous Remote Key Generation (ARKG) algorithm</title>
            <author fullname="Emil Lundberg" initials="E." surname="Lundberg">
              <organization>Yubico</organization>
            </author>
            <author fullname="John Bradley" initials="J." surname="Bradley">
              <organization>Yubico</organization>
            </author>
            <date day="27" month="February" year="2026"/>
            <abstract>
              <t>   Asynchronous Remote Key Generation (ARKG) is an abstract algorithm
   that enables delegation of asymmetric public key generation without
   giving access to the corresponding private keys.  This capability
   enables a variety of applications: a user agent can generate
   pseudonymous public keys to prevent tracking; a message sender can
   generate ephemeral recipient public keys to enhance forward secrecy;
   two paired authentication devices can each have their own private
   keys while each can register public keys on behalf of the other.

   This document provides three main contributions: a specification of
   the generic ARKG algorithm using abstract primitives; a set of
   formulae for instantiating the abstract primitives using concrete
   primitives; and an initial set of fully specified concrete ARKG
   instances.  We expect that additional instances will be defined in
   the future.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-bradleylundberg-cfrg-arkg-10"/>
        </reference>
        <reference anchor="IANA.COSE" target="https://www.iana.org/assignments/cose/">
          <front>
            <title>CBOR Object Signing and Encryption (COSE)</title>
            <author>
              <organization>IANA</organization>
            </author>
            <date>n.d.</date>
          </front>
        </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="RFC8032">
          <front>
            <title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA). The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves. An example implementation and test vectors are provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8032"/>
          <seriesInfo name="DOI" value="10.17487/RFC8032"/>
        </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>
        <reference anchor="RFC8610">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
            <author fullname="C. Vigano" initials="C." surname="Vigano"/>
            <author fullname="C. Bormann" initials="C." surname="Bormann"/>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049). Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC9052">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <date month="August" year="2022"/>
            <abstract>
              <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol. This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization. This specification additionally describes how to represent cryptographic keys using CBOR.</t>
              <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="96"/>
          <seriesInfo name="RFC" value="9052"/>
          <seriesInfo name="DOI" value="10.17487/RFC9052"/>
        </reference>
        <reference anchor="RFC9864">
          <front>
            <title>Fully-Specified Algorithms for JSON Object Signing and Encryption (JOSE) and CBOR Object Signing and Encryption (COSE)</title>
            <author fullname="M.B. Jones" initials="M.B." surname="Jones"/>
            <author fullname="O. Steele" initials="O." surname="Steele"/>
            <date month="October" year="2025"/>
            <abstract>
              <t>This specification refers to cryptographic algorithm identifiers that fully specify the cryptographic operations to be performed, including any curve, key derivation function (KDF), and hash functions, as being "fully specified". It refers to cryptographic algorithm identifiers that require additional information beyond the algorithm identifier to determine the cryptographic operations to be performed as being "polymorphic". This specification creates fully-specified algorithm identifiers for registered JSON Object Signing and Encryption (JOSE) and CBOR Object Signing and Encryption (COSE) polymorphic algorithm identifiers, enabling applications to use only fully-specified algorithm identifiers. It deprecates those polymorphic algorithm identifiers.</t>
              <t>This specification updates RFCs 7518, 8037, and 9053. It deprecates polymorphic algorithms defined by RFCs 8037 and 9053 and provides fully-specified replacements for them. It adds to the instructions to designated experts in RFCs 7518 and 9053.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9864"/>
          <seriesInfo name="DOI" value="10.17487/RFC9864"/>
        </reference>
        <reference anchor="SEC1" target="https://www.secg.org/sec1-v2.pdf">
          <front>
            <title>SEC 1: Elliptic Curve Cryptography</title>
            <author>
              <organization>Certicom Research</organization>
            </author>
            <date year="2009" month="May"/>
          </front>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="FALCON" target="https://falcon-sign.info/">
          <front>
            <title>FALCON: Fast-Fourier Lattice-based Compact Signatures over NTRU</title>
            <author fullname="Pierre-Alain Fouque">
              <organization/>
            </author>
            <author fullname="Jeffrey Hoffstein">
              <organization/>
            </author>
            <author fullname="Paul Kirchner">
              <organization/>
            </author>
            <author fullname="Vadim Lyubashevsky">
              <organization/>
            </author>
            <author fullname="Thomas Pornin">
              <organization/>
            </author>
            <author fullname="Thomas Prest">
              <organization/>
            </author>
            <author fullname="Thomas Ricosset">
              <organization/>
            </author>
            <author fullname="Gregor Seiler">
              <organization/>
            </author>
            <author fullname="William Whyte">
              <organization/>
            </author>
            <author fullname="Zhenfei Zhang">
              <organization/>
            </author>
            <date year="2017"/>
          </front>
        </reference>
        <reference anchor="FIPS-201" target="https://csrc.nist.gov/pubs/fips/201-3/final">
          <front>
            <title>Personal Identity Verification (PIV) of Federal Employees and Contractors</title>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date year="2022"/>
          </front>
        </reference>
        <reference anchor="FIPS-204" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.204.pdf">
          <front>
            <title>Module-Lattice-Based Digital Signature Standard</title>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date year="2024" month="August"/>
          </front>
        </reference>
        <reference anchor="FIPS-186-5" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf">
          <front>
            <title>Digital Signature Standard (DSS)</title>
            <author>
              <organization>National Institute of Standards and Technology</organization>
            </author>
            <date year="2023" month="February"/>
          </front>
        </reference>
        <reference anchor="I-D.COSE-Hash-Envelope">
          <front>
            <title>COSE Hash Envelope</title>
            <author fullname="Orie Steele" initials="O." surname="Steele">
         </author>
            <author fullname="Steve Lasker" initials="S." surname="Lasker">
         </author>
            <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <date day="15" month="November" year="2025"/>
            <abstract>
              <t>   This document defines new COSE header parameters for signaling a
   payload as an output of a hash function.  This mechanism enables
   faster validation, as access to the original payload is not required
   for signature validation.  Additionally, hints of the hashed
   payload's content format and availability are defined, providing
   references to optional discovery mechanisms that can help to find
   original payload content.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cose-hash-envelope-10"/>
        </reference>
        <reference anchor="NIST-SP-800-73-5" target="https://doi.org/10.6028/NIST.SP.800-73pt2-5">
          <front>
            <title>Interfaces for Personal Identity Verification: Part 2 – PIV Card Application Card Command Interface</title>
            <author fullname="Hildegard Ferraiolo">
              <organization>National Institute of Standards and Technology, Gaithersburg, MD</organization>
            </author>
            <author fullname="Ketan Mehta">
              <organization>National Institute of Standards and Technology, Gaithersburg, MD</organization>
            </author>
            <author fullname="Salvatore Francomacaro">
              <organization>National Institute of Standards and Technology, Gaithersburg, MD</organization>
            </author>
            <author fullname="Ramaswamy Chandramouli">
              <organization>National Institute of Standards and Technology, Gaithersburg, MD</organization>
            </author>
            <author fullname="Sarbari Gupta">
              <organization>National Institute of Standards and Technology, Gaithersburg, MD</organization>
            </author>
            <date year="2024"/>
          </front>
          <refcontent>NIST Special Publication (SP) NIST SP 800-73pt2-5</refcontent>
        </reference>
        <reference anchor="PKCS11-Spec-v3.1" target="https://docs.oasis-open.org/pkcs11/pkcs11-spec/v3.1/os/pkcs11-spec-v3.1-os.html">
          <front>
            <title>PKCS #11 Specification Version 3.1.</title>
            <author fullname="Dieter Bong">
              <organization/>
            </author>
            <author fullname="Tony Cox">
              <organization/>
            </author>
            <date year="2023" month="July" day="23"/>
          </front>
          <annotation>Latest stage: <eref target="https://docs.oasis-open.org/pkcs11/pkcs11-spec/v3.1/pkcs11-spec-v3.1.html">https://docs.oasis-open.org/pkcs11/pkcs11-spec/v3.1/pkcs11-spec-v3.1.html</eref>.</annotation>
          <refcontent>OASIS Standard</refcontent>
        </reference>
        <reference anchor="OPENPGPCARD" target="https://gnupg.org/ftp/specs/OpenPGP-smart-card-application-3.4.1.pdf">
          <front>
            <title>Functional Specification of the OpenPGP application on ISO Smart Card Operating Systems</title>
            <author fullname="Achim Pietig">
              <organization/>
            </author>
            <date year="2020" month="March"/>
          </front>
          <refcontent>Version 3.4.1</refcontent>
        </reference>
        <reference anchor="RFC1958">
          <front>
            <title>Architectural Principles of the Internet</title>
            <author fullname="B. Carpenter" initials="B." role="editor" surname="Carpenter"/>
            <date month="June" year="1996"/>
            <abstract>
              <t>The Internet and its architecture have grown in evolutionary fashion from modest beginnings, rather than from a Grand Plan. While this process of evolution is one of the main reasons for the technology's success, it nevertheless seems useful to record a snapshot of the current principles of the Internet architecture. This is intended for general guidance and general interest, and is in no way intended to be a formal or invariant reference model. This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1958"/>
          <seriesInfo name="DOI" value="10.17487/RFC1958"/>
        </reference>
        <reference anchor="RFC9380">
          <front>
            <title>Hashing to Elliptic Curves</title>
            <author fullname="A. Faz-Hernandez" initials="A." surname="Faz-Hernandez"/>
            <author fullname="S. Scott" initials="S." surname="Scott"/>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <author fullname="R. S. Wahby" initials="R. S." surname="Wahby"/>
            <author fullname="C. A. Wood" initials="C. A." surname="Wood"/>
            <date month="August" year="2023"/>
            <abstract>
              <t>This document specifies a number of algorithms for encoding or hashing an arbitrary string to a point on an elliptic curve. This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9380"/>
          <seriesInfo name="DOI" value="10.17487/RFC9380"/>
        </reference>
        <reference anchor="RFC9413">
          <front>
            <title>Maintaining Robust Protocols</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson"/>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
            <date month="June" year="2023"/>
            <abstract>
              <t>The main goal of the networking standards process is to enable the long-term interoperability of protocols. This document describes active protocol maintenance, a means to accomplish that goal. By evolving specifications and implementations, it is possible to reduce ambiguity over time and create a healthy ecosystem.</t>
              <t>The robustness principle, often phrased as "be conservative in what you send, and liberal in what you accept", has long guided the design and implementation of Internet protocols. However, it has been interpreted in a variety of ways. While some interpretations help ensure the health of the Internet, others can negatively affect interoperability over time. When a protocol is actively maintained, protocol designers and implementers can avoid these pitfalls.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9413"/>
          <seriesInfo name="DOI" value="10.17487/RFC9413"/>
        </reference>
        <reference anchor="RFC9881">
          <front>
            <title>Internet X.509 Public Key Infrastructure -- Algorithm Identifiers for the Module-Lattice-Based Digital Signature Algorithm (ML-DSA)</title>
            <author fullname="J. Massimo" initials="J." surname="Massimo"/>
            <author fullname="P. Kampanakis" initials="P." surname="Kampanakis"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="B. E. Westerbaan" initials="B. E." surname="Westerbaan"/>
            <date month="October" year="2025"/>
            <abstract>
              <t>Digital signatures are used within X.509 certificates and Certificate Revocation Lists (CRLs), and to sign messages. This document specifies the conventions for using FIPS 204, the Module-Lattice-Based Digital Signature Algorithm (ML-DSA) in Internet X.509 certificates and CRLs. The conventions for the associated signatures, subject public keys, and private key are also described.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9881"/>
          <seriesInfo name="DOI" value="10.17487/RFC9881"/>
        </reference>
        <reference anchor="SECDSA" target="https://eprint.iacr.org/2021/910">
          <front>
            <title>SECDSA: Mobile signing and authentication under classical "sole control"</title>
            <author fullname="Eric Verheul">
              <organization/>
            </author>
            <date year="2021" month="July"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 910?>

<section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>We would like to thank
David Dong,
Ilari Liusvaara,
Lucas Prabel,
Sophie Schmieg,
and
Falko Strenzke
for their reviews of and contributions to this specification.</t>
    </section>
    <section numbered="false" anchor="document-history">
      <name>Document History</name>
      <t>-00</t>
      <ul spacing="normal">
        <li>
          <t>Created initial working group draft from draft-lundberg-cose-two-party-signing-algs-07</t>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
7WJ3EpmN3lOP8jgDTJeJkvmc0m6Nl5b5q6DSHd2joVKVq/FmsgimlN55S8K9
JBcpFgFnkQ56Epnxycc7WFJhPBunOmrUWtryQhq4y2qj2YpWUW3TAFocKoQj
TiBgKygRKsvSDKjooG7J1ztG5AIj7kbcOSBZxe7paDR5yILLkBiJaX3BgiRv
h/rYSQmhPCPHKeMGoCqA63SKWsDlKefe1LQrHog1IRzocoWe5XAwZFjru8Lf
2txc3wE2xXxqt74a68ahkcWTeSwDhRWnQDDEwp56XsPp9INzPy6TSxMW73ry
+nhv39e5uv5guK3BSvpi83bB3UJBoUDTP8OscErhew0aDSaZ4kzYds8f7Irp
4+Hzne3nOzub48H2htzYCMZyc2M7HPQ3Rn25sTUI7ej9je3n4+D5+k44CkI5
CoY76zLY3NjaGQ4HodwZjIbDvupvBFvbg/7zDRXgFfl8azyWwWinv7EeuvsK
htsbz5Xc6W/1x+HGMJTDrefjra3tzaHaWt/c3hn3g34/DLa3x8Odfri11Q+2
NiX8t9kPtrfWtwaPuy2wBJ23yqeDA7VE38WtD3fFYwv6HrXgulbcTtKRM8IW
fu/X/S2fH5lOC+RxudOla6xR+W/UNfDQc/bCiFP0wvATbe4Zo4fdtbZiAqNO
B6dtycai5leFsnFEr5H8VPelUXIRL4y7ODDfwFw8EH9FfFs1HxipQCJblbZz
0UJYr+NkweqaDAKMEopDkB2vKg+mGr3c9NbY9RRmO6LvLo7rgb9F/ozLtqXF
pAOaTdSn41xusrSrpLPaHVy1zmKY83DQyEvhfjRXqo5Mpuq4vSwdzH7NoZ0s
YFTqqpYvt1VEzPEMEuM2LQaq3hja1MiNI0NvjjgKOj0VtQInv2ty6xpm3IkL
1okVHfiXB+DuYNFvbAIB5DIs/m8BB6vfzV1EiVkbtlPBpPN6J6Jr6gECdhp2
A0psnw1TN4OmF/Frmz2H3TfSbKJAeZBFIYMrrfajzkHJcniqptHc0IihryWE
3vOc/peVkYACkkBH0u6T7nHkjOHXui/Jlr4pobrGTRuR6VT7abiB/QR8ndS2
G/IvoUcBIT5KG8iG2Ua3jtucnQYJqypsINwnberM5gSQ9SptutjjHKFrfJhE
WraVzoKRrduB1YsWdBunHtj2qo5hTEbmfKL2Un6CuPuTDnQia1jCpGpeJmJU
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
LEOu7fW1+KWkbL//3Pv/Xe9boYCcAAA=

-->

</rfc>
