<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.36 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-amjad-cfrg-partially-blind-rsa-01" category="info" submissionType="IRTF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.4 -->
  <front>
    <title abbrev="Partially Blind RSA Signatures">Partially Blind RSA Signatures</title>
    <seriesInfo name="Internet-Draft" value="draft-amjad-cfrg-partially-blind-rsa-01"/>
    <author initials="G. A." surname="Amjad" fullname="Ghous A. Amjad">
      <organization>Google</organization>
      <address>
        <email>ghous_amjad@alumni.brown.edu</email>
      </address>
    </author>
    <author initials="S." surname="Hendrickson" fullname="Scott Hendrickson">
      <organization>Google</organization>
      <address>
        <email>scott@shendrickson.com</email>
      </address>
    </author>
    <author initials="C. A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare</organization>
      <address>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <author initials="K. W. L." surname="Yeo" fullname="Kevin W. L. Yeo">
      <organization>Google</organization>
      <address>
        <email>kwlyeo@cs.columbia.edu</email>
      </address>
    </author>
    <date year="2023" month="July" day="06"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 37?>

<t>This document specifies a blind RSA signature protocol that supports public metadata.
It is an extension to the RSABSSA protocol recently specified by the CFRG.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Crypto Forum Research Group mailing list (cfrg@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/search/?email_list=cfrg"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/chris-wood/draft-amjad-cfrg-partially-blind-rsa"/>.</t>
    </note>
  </front>
  <middle>
    <?line 42?>

<section anchor="introduction">
      <name>Introduction</name>
      <t><xref target="RSABSSA"/> specifies the RSA blind
signature protocol, denoted RSABSSA. This is a two-party protocol between
client and server (or signer) where they interact to compute
<tt>sig = Sign(sk, input_msg)</tt>, where <tt>input_msg = Prepare(msg)</tt> is a prepared
version of the private message <tt>msg</tt> provided by the client, and <tt>sk</tt> is
the signing key provided by the server. Upon completion of this protocol,
the server learns nothing, whereas the client learns <tt>sig</tt>. In particular,
this means the server learns nothing of <tt>msg</tt> or <tt>input_msg</tt> and the client
learns nothing of <tt>sk</tt>.</t>
      <t>RSABSSA has a variety of applications, with <xref target="PRIVACY-PASS"/>
being a canonical example. While useful, this protocol is limited in that
it does not easily accommodate public metadata to be associated with
a (message, signature) pair. In this context, public metadata is information
that is publicly known to both client and server at the time of computation.
This has useful applications in practice. For example, metadata might be used
to encode expiration information for a (message, signature) pair. In practice,
metadata can be encoded using signing key pairs, e.g., by associating one
metadata value with one key pair, but this does not scale well for applications
that have large or arbitrary amounts of metadata.</t>
      <t>This document specifies a variant of RSABSSA that supports public metadata, denoted
RSAPBSSA (RSA Partially Blind Signature with Appendix). Similar to RSABSSA in
<xref target="RSABSSA"/>, RSAPBSSSA is defined in such a way that the resulting (unblinded)
signature can be verified with a standard RSA-PSS library.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

</section>
    <section anchor="notation">
      <name>Notation</name>
      <t>The following terms are used throughout this document to describe the protocol operations
in this document:</t>
      <ul spacing="normal">
        <li>bytes_to_int and int_to_bytes: Convert a byte string to and from a non-negative integer.
bytes_to_int and int_to_bytes are implemented as OS2IP and I2OSP as described in
<xref target="RFC8017"/>, respectively. Note that these functions operate on byte strings
in big-endian byte order.</li>
        <li>random_integer_uniform(M, N): Generate a random, uniformly distributed integer R
between M inclusive and N exclusive, i.e., M &lt;= R &lt; N.</li>
        <li>bit_len(n): Compute the minimum number of bits needed to represent the positive integer n.</li>
        <li>inverse_mod(x, n): Compute the multiplicative inverse of x mod n or fail if x and n are not co-prime.</li>
        <li>is_coprime(x, n): Return true if x and n are co-prime, and false otherwise.</li>
        <li>len(s): The length of a byte string, in bytes.</li>
        <li>random(n): Generate n random bytes using a cryptographically-secure random number generator.</li>
        <li>concat(x0, ..., xN): Concatenation of byte strings. For example,
concat(0x01, 0x0203, 0x040506) = 0x010203040506.</li>
        <li>slice(x, i, j): Return bytes in the byte string <tt>x</tt> starting from offset <tt>i</tt> and ending at
offset <tt>j</tt>, inclusive. For example, slice(0x010203040506, 1, 5) = 0x0203040506.</li>
        <li>random_prime(b): Return a random prime number of length b bits.</li>
        <li>is_prime(p): Return true if the input integer p is prime, and false otherwise.</li>
      </ul>
    </section>
    <section anchor="core-protocol">
      <name>RSAPBSSA Protocol</name>
      <t>The RSAPBSSA protocol consists of two helper functions -- DeriveKeyPair and DerivePublicKey -- and
four core functions -- Prepare, Blind, BlindSign, and Finalize -- and requires one
round of interaction between client and server. Let <tt>msg</tt> be the client's private input
message, <tt>info</tt> be the public metadata shared between client and server, and <tt>(sk, pk)</tt>
be the server's private and public key pair. The <bcp14>REQUIRED</bcp14> key generation procedure for RSAPBSSA
is specified in <xref target="key-generation"/>.</t>
      <t>The protocol begins by the client preparing the message to be signed by computing:</t>
      <artwork><![CDATA[
input_msg = Prepare(msg)
]]></artwork>
      <t>The client then initiates the blind signature protocol by computing:</t>
      <artwork><![CDATA[
blinded_msg, inv = Blind(pk, input_msg, info)
]]></artwork>
      <t>The client then sends <tt>blinded_msg</tt> to the server, which then processes the message
by computing:</t>
      <artwork><![CDATA[
blind_sig = BlindSign(sk, blinded_msg, info)
]]></artwork>
      <t>The server then sends <tt>blind_sig</tt> to the client, which then finalizes the protocol by computing:</t>
      <artwork><![CDATA[
sig = Finalize(pk, input_msg, info, blind_sig, inv)
]]></artwork>
      <t>The output of the protocol is <tt>input_msg</tt> and <tt>sig</tt>. Upon completion, correctness requires that
clients can verify signature <tt>sig</tt> over the prepared message <tt>input_msg</tt> and metadata <tt>info</tt>
using the server public key <tt>pk</tt> by invoking the RSASSA-PSS-VERIFY routine defined in
<xref section="8.1.2" sectionFormat="of" target="RFC8017"/>. The Finalize function performs this check before returning the signature.
See <xref target="verification"/> for more details about verifying signatures produced through this protocol.</t>
      <t>In pictures, the protocol runs as follows:</t>
      <artwork><![CDATA[
   Client(pk, msg, info)          Server(sk, pk, info)
  -------------------------------------------------------
  input_msg = Prepare(msg)
  blinded_msg, inv = Blind(pk, input_msg, info)

                        blinded_msg
                        ---------->

            blind_sig = BlindSign(sk, blinded_msg, info)

                         blind_sig
                        <----------

  sig = Finalize(pk, input_msg, info, blind_sig, inv)
]]></artwork>
      <t>In the remainder of this section, we specify the Blind, BlindSign, and Finalize
functions that are used in this protocol. The Prepare function is as specified in
<xref section="4.1" sectionFormat="of" target="RSABSSA"/>.</t>
      <section anchor="key-generation">
        <name>Key Generation</name>
        <t>The protocol in this document requires signing key pairs to be generated such that
they satisfy a particular criteria. In particular, each RSA modulus for a key pair
<bcp14>MUST</bcp14> be the product of two safe primes p and q. A safe prime p is a prime number
such that p = 2q + 1, where q is also a prime number.</t>
        <t>A signing key pair is a tuple (sk, pk), where each element is as follows:</t>
        <ul spacing="normal">
          <li>sk = (n, p, q, phi, d), where phi = (p - 1)(q - 1), n = p * q, and d is the private exponent</li>
          <li>pk = (n, e), where n = p * q, and e is hte public exponent such that d * e == 1 mod phi</li>
        </ul>
        <t>The procedure for generating a key pair satisfying this requirement is below.</t>
        <artwork><![CDATA[
KeyGen(bits)

Inputs:
- bits, length in bits of the RSA modulus, a multiple of 2

Outputs:
- sk, metadata-specific private key (n, p, q, phi, d)
- pk, metadata-specific public key (n, e)

Steps:
1. p = SafePrime(bits / 2)
2. q = SafePrime(bits / 2)
3. while p == q, go to step 2.
4. phi = (p - 1) * (q - 1)
5. e = 65537
6. d = inverse_mod(e, phi)
7. n = p * q
7. sk = (n, p, q, phi, d)
8. pk = (n, e)
9. output (sk, pk)
]]></artwork>
        <t>The procedure for generating a safe prime, denoted SafePrime, is below.</t>
        <artwork><![CDATA[
SafePrime(bits)

Inputs:
- bits, length in bits of the safe prime

Outputs:
- p, a safe prime integer

Steps:
1. q = random_prime(bits - 1)
2. p = (2 * q) + 1
3. if is_prime(p) is True, output p, else go to step 1.
]]></artwork>
      </section>
      <section anchor="blind">
        <name>Blind</name>
        <t>The Blind function encodes an input message with the corresponding metadata value and
blinds it with the server's public key. It outputs the blinded message to be sent to
the server, encoded as a byte string, and the corresponding inverse, an integer.
RSAVP1 and EMSA-PSS-ENCODE are as defined in Sections <xref target="RFC8017" section="5.2.2" sectionFormat="bare"/> and <xref target="RFC8017" section="9.1.1" sectionFormat="bare"/> of <xref target="RFC8017"/>,
respectively.</t>
        <t>If this function fails with an "blinding error" error, implementations <bcp14>SHOULD</bcp14> retry
the function again. The probability of one or more such errors in sequence is negligible.
This function can also fail with an "invalid input" error, which indicates that one of
the inputs (likely the public key) was invalid. Implementations <bcp14>SHOULD</bcp14> update the public
key before calling this function again. See <xref target="errors"/> for more information about
dealing with such errors.</t>
        <t>Note that this function invokes RSAVP1, which is defined to throw an optional error
for invalid inputs. However, this error cannot occur based on how RSAVP1 is invoked,
so this error is not included in the list of errors for Blind.</t>
        <artwork><![CDATA[
Blind(pk, msg, info)

Parameters:
- modulus_len, the length in bytes of the RSA modulus n
- Hash, the hash function used to hash the message
- MGF, the mask generation function
- salt_len, the length in bytes of the salt

Inputs:
- pk, public key (n, e)
- msg, message to be signed, a byte string
- info, public metadata, a byte string

Outputs:
- blinded_msg, a byte string of length modulus_len
- inv, an integer

Errors:
- "message too long": Raised when the input message is too long (raised by EMSA-PSS-ENCODE).
- "encoding error": Raised when the input message fails encoding (raised by EMSA-PSS-ENCODE).
- "blinding error": Raised when the inverse of r cannot be found.
- "invalid input": Raised when the message is not co-prime with n.

Steps:
1. msg_prime = concat("msg", int_to_bytes(len(info), 4), info, msg)
2. encoded_msg = EMSA-PSS-ENCODE(msg_prime, bit_len(n))
   with Hash, MGF, and salt_len as defined in the parameters
3. If EMSA-PSS-ENCODE raises an error, raise the error and stop
4. m = bytes_to_int(encoded_msg)
5. c = is_coprime(m, n)
6. If c is false, raise an "invalid input" error
   and stop
7. r = random_integer_uniform(1, n)
8. inv = inverse_mod(r, n)
9. If inverse_mod fails, raise an "blinding error" error
   and stop
10. pk_derived = DerivePublicKey(pk, info)
11. x = RSAVP1(pk_derived, r)
12. z = m * x mod n
13. blinded_msg = int_to_bytes(z, modulus_len)
14. output blinded_msg, inv
]]></artwork>
        <t>The blinding factor r <bcp14>MUST</bcp14> be randomly chosen from a uniform distribution.
This is typically done via rejection sampling. The function DerivePublicKey
is defined in <xref target="augment-public-key"/>.</t>
      </section>
      <section anchor="blindsign">
        <name>BlindSign</name>
        <t>BlindSign performs the RSA private key operation on the client's
blinded message input and returns the output encoded as a byte string.
RSASP1 is as defined in <xref section="5.2.1" sectionFormat="of" target="RFC8017"/>.</t>
        <artwork><![CDATA[
BlindSign(sk, blinded_msg, info)

Parameters:
- modulus_len, the length in bytes of the RSA modulus n

Inputs:
- sk, private key (n, p, q, phi, d)
- blinded_msg, encoded and blinded message to be signed, a
  byte string
- info, public metadata, a byte string

Outputs:
- blind_sig, a byte string of length modulus_len

Errors:
- "signing failure": Raised when the signing operation fails
- "message representative out of range": Raised when the message representative
  to sign is not an integer between 0 and n - 1 (raised by RSASP1)

Steps:
1. m = bytes_to_int(blinded_msg)
2. sk_derived, pk_derived = DeriveKeyPair(sk, info)
3. s = RSASP1(sk_derived, m)
4. m' = RSAVP1(pk_derived, s)
5. If m != m', raise "signing failure" and stop
6. blind_sig = int_to_bytes(s, modulus_len)
7. output blind_sig
]]></artwork>
      </section>
      <section anchor="finalize">
        <name>Finalize</name>
        <t>Finalize validates the server's response, unblinds the message
to produce a signature, verifies it for correctness, and outputs the signature
upon success. Note that this function will internally hash the input message
as is done in Blind.</t>
        <artwork><![CDATA[
Finalize(pk, msg, info, blind_sig, inv)

Parameters:
- modulus_len, the length in bytes of the RSA modulus n
- Hash, the hash function used to hash the message
- MGF, the mask generation function
- salt_len, the length in bytes of the salt

Inputs:
- pk, public key (n, e)
- msg, message to be signed, a byte string
- info, public metadata, a byte string
- blind_sig, signed and blinded element, a byte string of
  length modulus_len
- inv, inverse of the blind, an integer

Outputs:
- sig, a byte string of length modulus_len

Errors:
- "invalid signature": Raised when the signature is invalid
- "unexpected input size": Raised when a byte string input doesn't
  have the expected length.

Steps:
1. If len(blind_sig) != modulus_len, raise "unexpected input size" and stop
2. z = bytes_to_int(blind_sig)
3. s = z * inv mod n
4. sig = int_to_bytes(s, modulus_len)
5. msg_prime = concat("msg", int_to_bytes(len(info), 4), info, msg)
6. pk_derived = DerivePublicKey(pk, info)
7. result = RSASSA-PSS-VERIFY(pk_derived, msg_prime, sig) with
   Hash, MGF, and salt_len as defined in the parameters
8. If result = "valid signature", output sig, else
   raise "invalid signature" and stop
]]></artwork>
        <t>Note that <tt>pk_derived</tt> can be computed once during <tt>Blind</tt> and then passed to
<tt>Finalize</tt> directly, rather than being recomputed again.</t>
      </section>
      <section anchor="verification">
        <name>Verification</name>
        <t>As described in <xref target="core-protocol"/>, the output of the protocol is the prepared
message <tt>input_msg</tt> and the signature <tt>sig</tt>. The message that applications
consume is <tt>msg</tt>, from which <tt>input_msg</tt> is derived, along with metadata <tt>info</tt>.
Clients verify the signature over <tt>msg</tt> and <tt>info</tt> using the server's public
key <tt>pk</tt> as follows:</t>
        <ol spacing="normal" type="1"><li>Compute <tt>pk_derived = DerivePublicKey(pk, info)</tt>.</li>
          <li>Compute <tt>msg_prime = concat("msg", int_to_bytes(len(info), 4), info, msg)</tt>.</li>
          <li>Invoke and output the result of RSASSA-PSS-VERIFY (<xref section="8.1.2" sectionFormat="of" target="RFC8017"/>)
with <tt>(n, e)</tt> as <tt>pk_derived</tt>, M as <tt>msg_prime</tt>, and <tt>S</tt> as <tt>sig</tt>.</li>
        </ol>
        <t>Verification and the message that applications consume therefore depends on
which preparation function is used. In particular, if the PrepareIdentity
function is used, then the application message is <tt>input_msg</tt>.
In contrast, if the PrepareRandomize function is used, then the application
message is <tt>slice(input_msg, 32, len(input_msg))</tt>, i.e., the prepared message
with the random prefix removed.</t>
      </section>
      <section anchor="augment-public-key">
        <name>Public Key Derivation</name>
        <t>The public key derivation function (DerivePublicKey) derives a per-metadata public
key that is used in the core protocol. The hash function used for HKDF is that which
is associated with the RSAPBSSA instance and denoted by the <tt>Hash</tt> parameter. Note that
the input to HKDF is expanded to account for bias in the output distribution.</t>
        <artwork><![CDATA[
DerivePublicKey(pk, info)

Parameters:
- modulus_len, the length in bytes of the RSA modulus n
- Hash, the hash function used to hash the message

Inputs:
- pk, public key (n, e)
- info, public metadata, a byte string

Outputs:
- pk_derived, metadata-specific public key (n, e')

Steps:
1. hkdf_input = concat("key", info, 0x00)
2. hkdf_salt = int_to_bytes(n, modulus_len)
3. lambda_len = modulus_len / 2
4. hkdf_len = lambda_len + 16
5. expanded_bytes = HKDF(IKM=hkdf_input, salt=hkdf_salt, info="PBRSA", L=hkdf_len)
6. expanded_bytes[0] &= 0x3F // Clear two-most top bits
7. expanded_bytes[lambda_len-1] |= 0x01 // Set bottom-most bit
8. e' = bytes_to_int(slice(expanded_bytes, lambda_len))
9. output pk_derived = (n, e')
]]></artwork>
      </section>
      <section anchor="augment-private-key">
        <name>Key Pair Derivation</name>
        <t>The key pair derivation function (DeriveKeyPair) derives a pair of private
and public keys specific to a metadata value that are used by the server
in the core protocol.</t>
        <artwork><![CDATA[
DeriveKeyPair(sk, info)

Parameters:
- modulus_len, the length in bytes of the RSA modulus n
- Hash, the hash function used to hash the message

Inputs:
- sk, private key (n, p, q, phi, d)
- info, public metadata, a byte string

Outputs:
- sk_derived, metadata-specific private key (n, p, q, phi, d')
- pk_derived, metadata-specific public key (n, e')

Steps:
1. (n, e') = DerivePublicKey(n, info)
2. d' = inverse_mod(e', phi)
3. sk_derived = (n, p, q, phi, d')
4. pk_derived = (n, e')
5. Output (sk_derived, pk_derived)
]]></artwork>
      </section>
    </section>
    <section anchor="implementation-and-usage-considerations">
      <name>Implementation and Usage Considerations</name>
      <t>This section documents considerations for interfaces to implementations of the protocol
in this document. This includes error handling and API considerations.</t>
      <section anchor="errors">
        <name>Errors</name>
        <t>The high-level functions specified in <xref target="core-protocol"/> are all fallible. The explicit errors
generated throughout this specification, along with the conditions that lead to each error,
are listed in the definitions for Blind, BlindSign, and Finalize.
These errors are meant as a guide for implementors. They are not an exhaustive list of all
the errors an implementation might emit. For example, implementations might run out of memory.</t>
        <t>Moreover, implementations can handle errors as needed or desired. Where applicable, this document
provides guidance for how to deal with explicit errors that are generated in the protocol. For
example, "blinding error" is generated in Blind when the client produces a prime factor of
the server's public key. <xref target="blind"/> indicates that implementations <bcp14>SHOULD</bcp14>
retry the Blind function when this error occurs, but an implementation could also handle this
exceptional event differently, e.g., by informing the server that the key has been factored.</t>
      </section>
      <section anchor="cert-oid">
        <name>Signing Key Generation and Usage</name>
        <t>The <bcp14>RECOMMENDED</bcp14> method for generating the server signing key pair is as specified in FIPS 186-4
<xref target="DSS"/>.</t>
        <t>A server signing key <bcp14>MUST NOT</bcp14> be reused for any other protocol beyond RSAPBSSA. In particular,
the same signing key <bcp14>MUST NOT</bcp14> be used for both the RSAPBSSA and RSABSSA protocols. Moreover, a
server signing key <bcp14>MUST NOT</bcp14> be reused for different RSAPBSSA encoding options. That is,
if a server supports two different encoding options, then it <bcp14>MUST</bcp14> have a distinct key
pair for each option.</t>
        <t>If the server public key is carried in an X.509 certificate, it <bcp14>MUST</bcp14> use the RSASSA-PSS
OID <xref target="RFC5756"/>. It <bcp14>MUST NOT</bcp14> use the rsaEncryption OID <xref target="RFC5280"/>.</t>
      </section>
    </section>
    <section anchor="rsapbssa">
      <name>RSAPBSSA Variants</name>
      <t>In this section, we define named variants of RSAPBSSA. These variants consider
different sets of RSASSA-PSS parameters as defined in <xref section="9.1.1" sectionFormat="of" target="RFC8017"/> and explicitly
specified in <xref section="5" sectionFormat="of" target="RSABSSA"/>. For algorithms unique
to RSAPBSSA, the choice of hash function specifies the instantation of HKDF in DerivePublicKey in
<xref target="augment-public-key"/>. The different types of Prepare functions are specified in
<xref section="4.1" sectionFormat="of" target="RSABSSA"/>.</t>
      <ol spacing="normal" type="1"><li>RSAPBSSA-SHA384-PSS-Randomized: This named variant uses SHA-384 as the hash function,
MGF1 with SHA-384 as the PSS mask generation function, a 48-byte salt length, and uses
the randomized preparation function (PrepareRandomize).</li>
        <li>RSAPBSSA-SHA384-PSSZERO-Randomized: This named variant uses SHA-384 as the hash
function, MGF1 with SHA-384 as the PSS mask generation function, an empty PSS salt, and
uses the randomized preparation function (PrepareRandomize).</li>
        <li>RSAPBSSA-SHA384-PSS-Deterministic: This named variant uses SHA-384 as the hash function,
MGF1 with SHA-384 as the PSS mask generation function, 48-byte salt length, and uses the
identity preparation function (PrepareIdentity).</li>
        <li>RSAPBSSA-SHA384-PSSZERO-Deterministic: This named variant uses SHA-384 as the hash
function, MGF1 with SHA-384 as the PSS mask generation function, an empty PSS salt, and
uses the identity preparation function (PrepareIdentity). This is the only variant that
produces deterministic signatures over the client's input message msg.</li>
      </ol>
      <t>The <bcp14>RECOMMENDED</bcp14> variants are RSAPBSSA-SHA384-PSS-Randomized or
RSAPBSSA-SHA384-PSSZERO-Randomized.</t>
      <t>See <xref section="5" sectionFormat="of" target="RSABSSA"/> for discussion about
interoperability considerations and deterministic signatures.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Amjad et al. proved the following properties of RSAPBSSA:</t>
      <ul spacing="normal">
        <li>One-more-unforgeability: For any adversary interacting with the server (i.e., the signer) as a client
that interacts with the server at most <tt>n</tt> times is unable to output <tt>n+1</tt> valid message and signature
tuples (i.e., the signature verifies for the corresponding message). This holds for any <tt>n</tt> that is polynomial
in the security parameter of the scheme.</li>
        <li>Concurrent one-more-unforgeability: The above holds even in the setting when an adversarial client is interacting
with multiple servers (signers) simultaneously.</li>
        <li>Unlinkability: Consider any adversary acting as the server (signer) interacting with <tt>n</tt> clients using the same
public metadata. Afterwards, the adversary randomly receives one of the <tt>n</tt> resulting signatures as a challenge.
Then, the adversary cannot guess which of the <tt>n</tt> interactions created the challenge signature better than
a random guess.</li>
      </ul>
      <t>The first two unforgeability properties rely on the Strong RSA Known Target Inversion Problem. This is
slightly stronger assumption that the RSA Known Target Inversion Problem used in RSABSSA. In the RSA Known
Target Inversion Problem, the challenger is given a fixed public exponent <tt>e</tt> with the goal of computing
the e-th root of <tt>n+1</tt> random elements while using an e-th oracle at most <tt>n</tt> times. In comparison, the
Strong RSA Known Target Inversion Problem enables the challenger to choose any public exponents
<tt>e_1,...,e_n+1 &gt; 1</tt> such that it can be the <tt>e_i</tt>-th root for the <tt>i</tt>-th random element. One can view the
difference between the Strong RSA Known Target Inversion and RSA Known Target Inversion problems identical
to the differences between the Strong RSA and RSA problems.</t>
      <t>The final property of unlinkability relies only on the fact that the underlying hash functions are modelled
as random oracles.</t>
      <t>All the security considerations of RSABSSA in <xref section="8" sectionFormat="of" target="RSABSSA"/>
also apply to RSAPBSSA here. We present additional security considerations specific to RSAPBSSA below.</t>
      <section anchor="strong-rsa-modulus-key-generation">
        <name>Strong RSA Modulus Key Generation</name>
        <t>An essential component of RSAPBSSA is that the KeyGen algorithm in <xref target="key-generation"/> generates a RSA
modulus that is the product of two strong primes. This is essential to ensure that the resulting outputs
of DerivePublicKey in <xref target="augment-public-key"/> does cause errors in DeriveKeyPair in <xref target="augment-private-key"/>.
We note that an error in DeriveKeyPair would incur if the output of DerivePublicKey does not have an
inverse modulo phi. By choosing the RSA modulus as the product of two strong primes, we guarantee the output of
DerivePublicKey will never incur errors in DeriveKeyPair.</t>
        <t>It is integral that one uses the KeyGen algorithm for RSAPBSSA instead of the standard RSA key generation algorithms
(such as those used in <xref target="RSABSSA"/>). If one uses standard RSA key generation, there are no guarantees provided
for the success of the DeriveKeyPair function and, thus, being able to correctly sign messages for certain choices
of public metadata.</t>
      </section>
      <section anchor="domain-separation-for-public-key-augmentation">
        <name>Domain Separation for Public Key Augmentation</name>
        <t>The purpose of domain separation is to guarantee that the security analysis of any cryptographic protocol remain true
even if multiple instances of the protocol or multiple hash functions in a single instance of the protocol
are instantiated based on one underlying hash function.</t>
        <t>The DerivePublicKey in <xref target="augment-public-key"/> of this document already provide domain separation by using the RSA modulus
as input to the underlying HKDF as the info argument. As each instance of RSAPBSSA will have a different RSA modulus, this
effectively ensures that the outputs of the underlying hash functions for multiple instances will be different
even for the same input.</t>
        <t>Additionally, the hash function invocation used for computing the message digest is domain separated from the hash function
invocation used for augmenting the public key in DerivePublicKey. This domain separation is done by prepending the inputs
to each hash function with a unique domain separation tag.</t>
      </section>
      <section anchor="choosing-public-metadata">
        <name>Choosing Public Metadata</name>
        <t>The unlinkability property of RSAPBSSA guarantees anonymity for any signature amongst the set of all interactions with the
server (signer) with the same choice of public metadata. In other words, the server is unable to identify the interaction
that created the signature. The unlinkability guarantee of RSAPBSSA is only useful when there are a significant number of
server (signer) interactions for any value of public metadata. In the extreme case where each server interaction is performed
with a different value of public metadata, then the server can uniquely identify the server interaction that created the
given signature.</t>
        <t>Applications that use RSAPBSSA <bcp14>MUST</bcp14> guarantee that the choice of public metadata is limited such that there is a significant
number of server (signer) interactions across many clients for any individual value of public metadata that is signed. This
should be contextualized to an application's user population size.</t>
      </section>
      <section anchor="denial-of-service">
        <name>Denial of Service</name>
        <t>RSAPBSSA is suspectible to Denial of Service (DoS) attacks due to the flexibility of choosing public metadata used in
DerivePublicKey in <xref target="augment-public-key"/>. In particular, an attacker can pick public metadata such that
the output of DerivePublicKey is very large, leading to more computational cost when verifying signatures.
Thus, if attackers can force verification with metadata of their choosing, DoS attacks are possible.</t>
        <t>For applications where the values of potential public metadata choices are fixed ahead of time, it is possible
to try and mitigate DoS attacks. If the set of possible metadata choices is small, then applications
<bcp14>SHOULD</bcp14> use one of the protocol variants in <xref target="RSABSSA"/> with distinct keys for each metadata value.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <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>
        <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="RFC5756">
          <front>
            <title>Updates for RSAES-OAEP and RSASSA-PSS Algorithm Parameters</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="D. Brown" initials="D." surname="Brown"/>
            <author fullname="K. Yiu" initials="K." surname="Yiu"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="T. Polk" initials="T." surname="Polk"/>
            <date month="January" year="2010"/>
            <abstract>
              <t>This document updates RFC 4055. It updates the conventions for using the RSA Encryption Scheme - Optimal Asymmetric Encryption Padding (RSAES-OAEP) key transport algorithm in the Internet X.509 Public Key Infrastructure (PKI). Specifically, it updates the conventions for algorithm parameters in an X.509 certificate's subjectPublicKeyInfo field. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5756"/>
          <seriesInfo name="DOI" value="10.17487/RFC5756"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RSABSSA">
          <front>
            <title>RSA Blind Signatures</title>
            <author fullname="Frank Denis" initials="F." surname="Denis">
              <organization>Fastly Inc.</organization>
            </author>
            <author fullname="Frederic Jacobs" initials="F." surname="Jacobs">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="15" month="June" year="2023"/>
            <abstract>
              <t>   This document specifies an RSA-based blind signature protocol.  RSA
   blind signatures were first introduced by Chaum for untraceable
   payments.  A signature that is output from this protocol can be
   verified as an RSA-PSS signature.

   This document is a product of the Crypto Forum Research Group (CFRG)
   in the IRTF.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Source for this draft and an issue tracker can be found at
   https://github.com/chris-wood/draft-wood-cfrg-blind-signatures.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-rsa-blind-signatures-13"/>
        </reference>
        <reference anchor="PRIVACY-PASS">
          <front>
            <title>Privacy Pass Issuance Protocol</title>
            <author fullname="Sofia Celi" initials="S." surname="Celi">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Steven Valdez" initials="S." surname="Valdez">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="26" month="June" year="2023"/>
            <abstract>
              <t>   This document specifies two variants of the two-message issuance
   protocol for Privacy Pass tokens: one that produces tokens that are
   privately verifiable using the issuance private key, and another that
   produces tokens that are publicly verifiable using the issuance
   public key.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-protocol-11"/>
        </reference>
        <reference anchor="DSS">
          <front>
            <title>Digital Signature Standard (DSS)</title>
            <author>
              <organization/>
            </author>
            <date month="July" year="2013"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.fips.186-4"/>
        </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>
      </references>
    </references>
    <?line 617?>

<section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors would like to thank Nikita Borisov for pointing out an issue with a prior attempt at mitigating DoS attacks.</t>
    </section>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>This section includes test vectors for the RSAPBSSA-SHA384-PSS-Randomized variant defined in <xref target="core-protocol"/>.
The following parameters are specified for each test vector:</t>
      <ul spacing="normal">
        <li>p, q, d, e, N: RSA private and public key parameters, each encoded as a hexadecimal string.</li>
        <li>msg: Input messsage being signed, encoded as a hexadecimal string. The hash is computed using SHA-384.</li>
        <li>info: Public metadata bound to the signature, encoded as a hexadecimal string.</li>
        <li>eprime: The augmented public key exponent corresponding to e and metadata, encoded as a hexadecimal string.</li>
        <li>blind: The message blinding value, encoded as a hexadecimal string.</li>
        <li>salt: Randomly-generated salt used when computing the signature. The length is 48 bytes.</li>
        <li>blinded_msg, blinded_sig: The protocol values exchanged during the computation,
encoded as hexadecimal strings.</li>
        <li>sig: The output message signature.</li>
      </ul>
      <artwork><![CDATA[
// Test vector 1
p: dcd90af1be463632c0d5ea555256a20605af3db667475e190e3af12a34a332
4c46a3094062c59fb4b249e0ee6afba8bee14e0276d126c99f4784b23009bf616
8ff628ac1486e5ae8e23ce4d362889de4df63109cbd90ef93db5ae64372bfe1c5
5f832766f21e94ea3322eb2182f10a891546536ba907ad74b8d72469bea396f3
q: f8ba5c89bd068f57234a3cf54a1c89d5b4cd0194f2633ca7c60b91a795a56f
a8c8686c0e37b1c4498b851e3420d08bea29f71d195cfbd3671c6ddc49cf4c1db
5b478231ea9d91377ffa98fe95685fca20ba4623212b2f2def4da5b281ed0100b
651f6db32112e4017d831c0da668768afa7141d45bbc279f1e0f8735d74395b3
d: 4e21356983722aa1adedb084a483401c1127b781aac89eab103e1cfc522154
94981d18dd8028566d9d499469c25476358de23821c78a6ae43005e26b394e305
1b5ca206aa9968d68cae23b5affd9cbb4cb16d64ac7754b3cdba241b72ad6ddfc
000facdb0f0dd03abd4efcfee1730748fcc47b7621182ef8af2eeb7c985349f62
ce96ab373d2689baeaea0e28ea7d45f2d605451920ca4ea1f0c08b0f1f6711eaa
4b7cca66d58a6b916f9985480f90aca97210685ac7b12d2ec3e30a1c7b97b65a1
8d38a93189258aa346bf2bc572cd7e7359605c20221b8909d599ed9d38164c9c4
abf396f897b9993c1e805e574d704649985b600fa0ced8e5427071d7049d
e: 010001
N: d6930820f71fe517bf3259d14d40209b02a5c0d3d61991c731dd7da39f8d69
821552e2318d6c9ad897e603887a476ea3162c1205da9ac96f02edf31df049bd5
5f142134c17d4382a0e78e275345f165fbe8e49cdca6cf5c726c599dd39e09e75
e0f330a33121e73976e4facba9cfa001c28b7c96f8134f9981db6750b43a41710
f51da4240fe03106c12acb1e7bb53d75ec7256da3fddd0718b89c365410fce61b
c7c99b115fb4c3c318081fa7e1b65a37774e8e50c96e8ce2b2cc6b3b367982366
a2bf9924c4bafdb3ff5e722258ab705c76d43e5f1f121b984814e98ea2b2b8725
cd9bc905c0bc3d75c2a8db70a7153213c39ae371b2b5dc1dafcb19d6fae9
msg: 68656c6c6f20776f726c64
info: 6d65746164617461
eprime: 30581b1adab07ac00a5057e2986f37caaa68ae963ffbc4d36c16ea5f3
689d6f00db79a5bee56053adc53c8d0414d4b754b58c7cc4abef99d4f0d0b2e29
cbddf746c7d0f4ae2690d82a2757b088820c0d086a40d180b2524687060d768ad
5e431732102f4bc3572d97e01dcd6301368f255faae4606399f91fa913a6d699d
6ef1
blind: d55491221c9a9ce5687b84669880abbc4db57c8f82864a450a5bf7c3f0
902884fa418c74bf663f3bfcff74a4792356f3ce052f128b084f8b028cf432533
27514f4b38430c69f19f155634429803badd1f6849d8603882eb9b648b697cb2f
2c4069b504562e19bb9f1cf99da47c198c2ae04f4bd3add78025e80f146edce48
dc3e9dc0ba3ee14bc97489050e26dc8935f3ecfcaea07c9c1a3d8e41be1e49dc8
aa171ac4cec9d1cddd8066b13767901dcb339e2cce40d11f5cff6c870012bca49
109ce6e81e165d3831531cbf8503f3cfde68340789979cba96602e70613a13869
aff57f2170e31ebe85564e3f026d8cd1835e59144fb8c008391c55d2fb1a5488
salt: 648ea74482fbab69876817ee3c2055a6921a458648c802c09a23f8825b2
59724e41c960ef29febe16a04e120c8b1cc1a
blinded_msg: cfd613e27b8eb15ee0b1df0e1bdda7809a61a29e9b6e9f3ec7c3
45353437638e85593a7309467e36396b0515686fe87330b312b6f89df26dc1cc8
8dd222186ca0bfd4ffa0fd16a9749175f3255425eb299e1807b76235befa57b28
f50db02f5df76cf2f8bcb55c3e2d39d8c4b9a0439e71c5362f35f3db768a5865b
864fdf979bc48d4a29ae9e7c2ea259dc557503e2938b9c3080974bd86ad8b0daa
f1d103c31549dcf767798079f88833b579424ed5b3d700162136459dc29733256
f18ceb74ccf0bc542db8829ca5e0346ad3fe36654715a3686ceb69f73540efd20
530a59062c13880827607c68d00993b47ad6ba017b95dfc52e567c4bf65135072
b12a4
blinded_sig: ca7d4fd21085de92b514fbe423c5745680cace6ddfa864a9bd97
d29f3454d5d475c6c1c7d45f5da2b7b6c3b3bc68978bb83929317da25f491fee8
6ef7e051e7195f3558679b18d6cd3788ac989a3960429ad0b7086945e8c4d38a1
b3b52a3903381d9b1bf9f3d48f75d9bb7a808d37c7ecebfd2fea5e89df59d4014
a1a149d5faecfe287a3e9557ef153299d49a4918a6dbdef3e086eeb264c0c3621
bcd73367195ae9b14e67597eaa9e3796616e30e264dc8c86897ae8a6336ed2cd9
3416c589a058211688cf35edbd22d16e31c28ff4a5c20f1627d09a71c71af372e
dc18d2d7a6e39df9365fe58a34605fa1d9dc53efd5a262de849fb083429e20586
e210e
sig: cdc6243cd9092a8db6175b346912f3cc55e0cf3e842b4582802358dddf6f
61decc37b7a9ded0a108e0c857c12a8541985a6efad3d17f7f6cce3b5ee20016e
5c36c7d552c8e8ff6b5f3f7b4ed60d62eaec7fc11e4077d7e67fc6618ee092e20
05964b8cf394e3e409f331dca20683f5a631b91cae0e5e2aa89eeef4504d24b45
127abdb3a79f9c71d2f95e4d16c9db0e7571a7f524d2f64438dfb32001c00965f
f7a7429ce7d26136a36ebe14644559d3cefc477859dcd6908053907b325a34aaf
654b376fade40df4016ecb3f5e1c89fe3ec500a04dfe5c8a56cad5b086047d2f9
63ca73848e74cf24bb8bf1720cc9de4c78c64449e8af3e7cddb0dab1821998

// Test vector 2
p: dcd90af1be463632c0d5ea555256a20605af3db667475e190e3af12a34a332
4c46a3094062c59fb4b249e0ee6afba8bee14e0276d126c99f4784b23009bf616
8ff628ac1486e5ae8e23ce4d362889de4df63109cbd90ef93db5ae64372bfe1c5
5f832766f21e94ea3322eb2182f10a891546536ba907ad74b8d72469bea396f3
q: f8ba5c89bd068f57234a3cf54a1c89d5b4cd0194f2633ca7c60b91a795a56f
a8c8686c0e37b1c4498b851e3420d08bea29f71d195cfbd3671c6ddc49cf4c1db
5b478231ea9d91377ffa98fe95685fca20ba4623212b2f2def4da5b281ed0100b
651f6db32112e4017d831c0da668768afa7141d45bbc279f1e0f8735d74395b3
d: 4e21356983722aa1adedb084a483401c1127b781aac89eab103e1cfc522154
94981d18dd8028566d9d499469c25476358de23821c78a6ae43005e26b394e305
1b5ca206aa9968d68cae23b5affd9cbb4cb16d64ac7754b3cdba241b72ad6ddfc
000facdb0f0dd03abd4efcfee1730748fcc47b7621182ef8af2eeb7c985349f62
ce96ab373d2689baeaea0e28ea7d45f2d605451920ca4ea1f0c08b0f1f6711eaa
4b7cca66d58a6b916f9985480f90aca97210685ac7b12d2ec3e30a1c7b97b65a1
8d38a93189258aa346bf2bc572cd7e7359605c20221b8909d599ed9d38164c9c4
abf396f897b9993c1e805e574d704649985b600fa0ced8e5427071d7049d
e: 010001
N: d6930820f71fe517bf3259d14d40209b02a5c0d3d61991c731dd7da39f8d69
821552e2318d6c9ad897e603887a476ea3162c1205da9ac96f02edf31df049bd5
5f142134c17d4382a0e78e275345f165fbe8e49cdca6cf5c726c599dd39e09e75
e0f330a33121e73976e4facba9cfa001c28b7c96f8134f9981db6750b43a41710
f51da4240fe03106c12acb1e7bb53d75ec7256da3fddd0718b89c365410fce61b
c7c99b115fb4c3c318081fa7e1b65a37774e8e50c96e8ce2b2cc6b3b367982366
a2bf9924c4bafdb3ff5e722258ab705c76d43e5f1f121b984814e98ea2b2b8725
cd9bc905c0bc3d75c2a8db70a7153213c39ae371b2b5dc1dafcb19d6fae9
msg: 68656c6c6f20776f726c64
info:
eprime: 2ed579fcdf2d328ebc686c52ccaec247018832acd530a2ac72c0ec2b9
2db5d6bd578e91b6341c1021142b45b9e6e5bf031f3dd62226ec4a0f9ef99e45d
d9ccd60aa60a0c59aac271a8caf9ee68a9d9ff281367dae09d588d3c7bca7f18d
e48b6981bbc729c4925c65e4b2a7f054facbb7e5fc6e4c6c10110c62ef0b94eec
397b
blind: 532103acf62670e3176eb1cfee7c2c46c7986704b869387924c33e8358
8c7cac67882570aede836b51b44a565c872a91bbf4f0f8396019113ef382963d3
a51b91429993e821217d3e85b2253e0daa0e9cfc440c37a37707f7aed383d98b3
150f21e1146c58c28d4a49046b8e97f834e4cb95e5483dfc42eaa17bdce947631
7f710b7488cc06cf61a1c449faa1d34119f2c3cd6ead79f9de14358b1c750bf2c
312fcbba3c511341fd4952ba2fcd486a9e81fd829e47cd8a0ac0273d7594c69eb
4aebfaec3c59aa1a016582410d9f4be14dac4b1a66f61eeb3e108af3868e410f7
7436765ba1df7c9a5cf37d8ec3dced6f5689da9703618a5cc7bf6d60f7b4209c
salt: 134520fb9ae6076594b4488fa31cae4e8e3efaca5ae4377bd586aac58e9
0f8925826b4b4fff2e21fdb933c4fbb6467a2
blinded_msg: 5e6568cd0bf7ea71ad91e0a9708abb5e97661c41812eb994b672
f10aa8983151113aeaabcf1306fa5a493e3dbdd58fc8bdb61aac934fae832676b
cab7abacdcc1b9c1f2af3586ae009042293b6945fee0aeffb2d2b8a24f82614b8
be39bab71a535f6d65f1631e927dbd471b0753e7a63a201c7ecd26e7fbbb5e21e
02f865b64e20731004c395b0e059a92fffa4c636ac4c00db9aa086b5dd1a3dd10
1bb04970b12ca3f4936f246e32d394f328cea2510554060e8d291acdbee04b8bc
91e967241ba45f3509d63ded5f9b358f4216f37a885e563b7baa93a717ca7cdbe
10e398d14bb2d5a1376b4a5f83226ce2c575087bc28d743caeff9c1b11cc8bd02
f5f14
blinded_sig: 72c4e0f4f677aa1dbb686e23b5944b3afdc7f824711a1f7486d1
ed6fa20aad255a1412885aee04c64359964e694a713da2a1684325c1c31401cac
1ea39a9e454675b55f743ff144ac605d0ed254b12d9bdd43b0e8a17c0d4711239
732e45e4166261d0b16d2f29403c5f2584a29b225daa7530ba15fc9af15ed2ce8
fcb126ad0b0758fd522fbf99a83e4cfe0539aa264d06a1633deee0053f45fc8a9
44f1468a0c0c449155139779a3230c8fa41a81858418151fa195f57ea645699f5
50d3cb37c549542d436071d1af74e629f938fa4717ca9def382fc35089e4caec9
e5d740c38ecb2aa88c90176d2f322866acfd50e2b92313161e81327f889aca0c9
4bcb8
sig: a7ace477c1f416a40e93ddf8a454f9c626b33c5a20067d81bdfef7b88bc1
5de2b04624478b2134b4b23d91285d72ca4eb9c6c911cd7be2437f4e3b24426bc
e1a1cb52e2c8a4d13f7fd5c9b0f943b92b8bbcba805b847a0ea549dbc249f2e81
2bf03dd6b2588c8af22bf8b6bba56ffd8d2872b2f0ebd42ac8bd8339e5e638061
99deec3cf392c078f66e72d9be817787d4832c45c1f192465d87f6f6c333ce1e8
c5641c7069280443d2227f6f28ff2045acdc368f2f94c38a3c909591a27c93e17
78630aeeeb623805f37c575213091f096be14ffa739ee55b3f264450210a4b2e6
1a9b12141ca36dd45e3b81116fc286e469b707864b017634b8a409ae99c9f1

// Test vector 3
p: dcd90af1be463632c0d5ea555256a20605af3db667475e190e3af12a34a332
4c46a3094062c59fb4b249e0ee6afba8bee14e0276d126c99f4784b23009bf616
8ff628ac1486e5ae8e23ce4d362889de4df63109cbd90ef93db5ae64372bfe1c5
5f832766f21e94ea3322eb2182f10a891546536ba907ad74b8d72469bea396f3
q: f8ba5c89bd068f57234a3cf54a1c89d5b4cd0194f2633ca7c60b91a795a56f
a8c8686c0e37b1c4498b851e3420d08bea29f71d195cfbd3671c6ddc49cf4c1db
5b478231ea9d91377ffa98fe95685fca20ba4623212b2f2def4da5b281ed0100b
651f6db32112e4017d831c0da668768afa7141d45bbc279f1e0f8735d74395b3
d: 4e21356983722aa1adedb084a483401c1127b781aac89eab103e1cfc522154
94981d18dd8028566d9d499469c25476358de23821c78a6ae43005e26b394e305
1b5ca206aa9968d68cae23b5affd9cbb4cb16d64ac7754b3cdba241b72ad6ddfc
000facdb0f0dd03abd4efcfee1730748fcc47b7621182ef8af2eeb7c985349f62
ce96ab373d2689baeaea0e28ea7d45f2d605451920ca4ea1f0c08b0f1f6711eaa
4b7cca66d58a6b916f9985480f90aca97210685ac7b12d2ec3e30a1c7b97b65a1
8d38a93189258aa346bf2bc572cd7e7359605c20221b8909d599ed9d38164c9c4
abf396f897b9993c1e805e574d704649985b600fa0ced8e5427071d7049d
e: 010001
N: d6930820f71fe517bf3259d14d40209b02a5c0d3d61991c731dd7da39f8d69
821552e2318d6c9ad897e603887a476ea3162c1205da9ac96f02edf31df049bd5
5f142134c17d4382a0e78e275345f165fbe8e49cdca6cf5c726c599dd39e09e75
e0f330a33121e73976e4facba9cfa001c28b7c96f8134f9981db6750b43a41710
f51da4240fe03106c12acb1e7bb53d75ec7256da3fddd0718b89c365410fce61b
c7c99b115fb4c3c318081fa7e1b65a37774e8e50c96e8ce2b2cc6b3b367982366
a2bf9924c4bafdb3ff5e722258ab705c76d43e5f1f121b984814e98ea2b2b8725
cd9bc905c0bc3d75c2a8db70a7153213c39ae371b2b5dc1dafcb19d6fae9
msg:
info: 6d65746164617461
eprime: 30581b1adab07ac00a5057e2986f37caaa68ae963ffbc4d36c16ea5f3
689d6f00db79a5bee56053adc53c8d0414d4b754b58c7cc4abef99d4f0d0b2e29
cbddf746c7d0f4ae2690d82a2757b088820c0d086a40d180b2524687060d768ad
5e431732102f4bc3572d97e01dcd6301368f255faae4606399f91fa913a6d699d
6ef1
blind: 6e1de89fc58417836aa76fefe4876b8b311af2eb94a8226d5796273171
48551d90b6f9db614b590e7f66f34644a2f6a3568ec78852b7f45876f576a7ee6
0c19bb0fbbdf1c85d7b36cf7bdf80fb925830c07285efae69e0c019d8d99fd5c6
20f83361c9411541fddf4bfe27e73f756bf594742a8253119d134e1ad67f02228
59c4ab243868bb23a6468c01ead9a617657056685f19fcd423b9e916c5e3e3b21
f92d0e12667d695084a42ae97a548d5982a51b67dd09c188c051d20236e24b231
e80a96449390e9032bad350645f5d4a162ddf3d61506ef6737b4f9fe6064a1d2f
afc7849e5039a98ebf14a800dc2423fccc1293f28a2c66ec22983cab922c1cc6
salt: 1ade5e965d1946a69dc495e78c8524910094f08405471664d4898fa3612
bf03fd03b3ae8140a737cb13e223e35219b58
blinded_msg: 92d5456738e0cfe0fa770b51e6a72d633d7cec3a945459f1db96
dbc500a5d1bca34a839059579759301c098231b102fb1e114bf9f892f42f902a3
36f4a3585b23efa906dfcb94213f4d3b39951551cedecbf51efa213ad030cf821
ee3fa46a57d67429f838ff728f47111f7f1b22000a979c0f56cc581396935780d
76173410d2a8a5688cd59622903008fe50af1fcc5e7cf96affad7e60fbed67996
c7a377effa0f08d9273cd33536b2625c9575d10636cc964636a1500f4fcb22aab
bef77fe415cbc7245c1032d34bd480ee338f55be0a79c0076d9cf9c94c0db3003
a33b23c62dbd1a85f2b15db5d153b318cca53c6d68e1e63bafa39c9a43be72f36
d2569
blinded_sig: a76a1c53566a9781de04d87e8c3a0bc902b47819e7b900580654
215b0a710cb563b085b5e9fff150791f759da03a139dfc9159c21410f1e3d345b
8c5dcca35211772900f85c5eec065987cbdbf303e9651196223263a713e4135d6
b20bfa8fb8212341665647a9a7e07a831ccbf9e62d9366ec9ac0bbe96228e6fbb
848f8f6f474cce68e3556dc882847e9e61b5b5e02bbfd6152aeca74e8782a54ff
e6552d63fb837738a05044b38f7e908c4989b202bd858695c61e12cf9d47ef276
a17917e39f942871defd9747541957b1e2f8950da43c9a05ba4835bded23c24cf
64edfee10dd0c70b071427cfcbb8b5eb225daf149a6b4d42bebcc536380a9d753
a8b1e
sig: 02bc0f2728e2b8cd1c1b9873d4b7f5a62017430398165a6f8964842eaa19
c1de292207b74dc25ee0aa90493216d3fbf8e1b2947fd64335277b34767f987c4
82c69262967c8a8aaf180a4006f456c804cdc7b92d956a351ad89703cc76f69ed
45f24d68e1ae0361479e0f6faf10c3b1582de2dcd2af432d57c0c89c8efb1cf3a
c5f991fe9c4f0ad24473939b053674a2582518b4bd57da109f4f37bc91a2f806e
82bb2b80d486d0694e663992c9517c946607b978f557bbb769d4cd836d693c77d
a480cd89b916e5e4190f317711d9c7e64528a314a14bf0b9256f4c60e9ddb5505
83c21755ab882bdfdf22dc840249389b1e0a2189f58e19b41c5f313cddce29

// Test vector 4
p: dcd90af1be463632c0d5ea555256a20605af3db667475e190e3af12a34a332
4c46a3094062c59fb4b249e0ee6afba8bee14e0276d126c99f4784b23009bf616
8ff628ac1486e5ae8e23ce4d362889de4df63109cbd90ef93db5ae64372bfe1c5
5f832766f21e94ea3322eb2182f10a891546536ba907ad74b8d72469bea396f3
q: f8ba5c89bd068f57234a3cf54a1c89d5b4cd0194f2633ca7c60b91a795a56f
a8c8686c0e37b1c4498b851e3420d08bea29f71d195cfbd3671c6ddc49cf4c1db
5b478231ea9d91377ffa98fe95685fca20ba4623212b2f2def4da5b281ed0100b
651f6db32112e4017d831c0da668768afa7141d45bbc279f1e0f8735d74395b3
d: 4e21356983722aa1adedb084a483401c1127b781aac89eab103e1cfc522154
94981d18dd8028566d9d499469c25476358de23821c78a6ae43005e26b394e305
1b5ca206aa9968d68cae23b5affd9cbb4cb16d64ac7754b3cdba241b72ad6ddfc
000facdb0f0dd03abd4efcfee1730748fcc47b7621182ef8af2eeb7c985349f62
ce96ab373d2689baeaea0e28ea7d45f2d605451920ca4ea1f0c08b0f1f6711eaa
4b7cca66d58a6b916f9985480f90aca97210685ac7b12d2ec3e30a1c7b97b65a1
8d38a93189258aa346bf2bc572cd7e7359605c20221b8909d599ed9d38164c9c4
abf396f897b9993c1e805e574d704649985b600fa0ced8e5427071d7049d
e: 010001
N: d6930820f71fe517bf3259d14d40209b02a5c0d3d61991c731dd7da39f8d69
821552e2318d6c9ad897e603887a476ea3162c1205da9ac96f02edf31df049bd5
5f142134c17d4382a0e78e275345f165fbe8e49cdca6cf5c726c599dd39e09e75
e0f330a33121e73976e4facba9cfa001c28b7c96f8134f9981db6750b43a41710
f51da4240fe03106c12acb1e7bb53d75ec7256da3fddd0718b89c365410fce61b
c7c99b115fb4c3c318081fa7e1b65a37774e8e50c96e8ce2b2cc6b3b367982366
a2bf9924c4bafdb3ff5e722258ab705c76d43e5f1f121b984814e98ea2b2b8725
cd9bc905c0bc3d75c2a8db70a7153213c39ae371b2b5dc1dafcb19d6fae9
msg:
info:
eprime: 2ed579fcdf2d328ebc686c52ccaec247018832acd530a2ac72c0ec2b9
2db5d6bd578e91b6341c1021142b45b9e6e5bf031f3dd62226ec4a0f9ef99e45d
d9ccd60aa60a0c59aac271a8caf9ee68a9d9ff281367dae09d588d3c7bca7f18d
e48b6981bbc729c4925c65e4b2a7f054facbb7e5fc6e4c6c10110c62ef0b94eec
397b
blind: 35deeb769ae3dce60033cbaeceeec511cd980307f53810c1b33934eeee
c194283834419fb190881213cfc0d91ff6307862ce143586ad9580057e3af6bb4
a405075ed9abf1f3b5a5cfb0c7fc59b952401cb28c04f9f85a9a3708fd51c74af
a1a1028a821beb2f8165678657f0d2effb7a1add5421216f3c50253a6f8d0d8ed
492f947d58b42527a2249b08e5ab05c25362ad8112bdea931544711b2a3d30e61
e2c8a130ea7f90fe915b5c3adaa24a6c300c23d8f670d330b592a7c05f7588324
688ae10e06290ab160096ce132a5ed220d2fbe6b4722cc30e05316b30f500b2ac
15038555289ea405025740a1d2a3098d34d094b566d0b973e661d855fb90be3c
salt: df4fbdf415184c20fad0418f27c35974db8c321e84c54b21e1e2619dbfa
0ad70db62c01783ffe796e8474596d7eb3fd8
blinded_msg: ba562cba0e69070dc50384456391defa410d36fa853fd235902f
f5d015d688a44def6b6a7e71a69bff8ee510f5a9aa44e9afddd3e766f2423b3fc
783fd1a9ab618586110987c1b3ddce62d25cae500aa92a6b886cb609829d06e67
fbf28fbbf3ee7d5cc125481dd002b908097732e0df06f288cc6eb54565f8153d4
80085b56ab6cb5801b482d12f50558eb3cb0eb7a4ff8fcc54d4d7fcc2f8913a40
1ae1d1303ead7964f2746e4804e2848bba87f53cf1412afedc82d9c383dd095e0
eb6f90cc74bc4bb5ea7529ded9cde2d489575d549b884379abe6d7b71969e6a9c
09f1963d2719eefccd5f2a407845961ccc1fa580a93c72902b2499d96f89e6c53
fc888
blinded_sig: 280c5934022fd17f7f810d4f7adf1d29ced47d098834411d6721
63cc793bcaad239d07c4c45048a682995950ce84703064cd8c16d6f2579f7a65b
66c274faccc6c73c9d299dcf35c96338c9b81af2f93554a78528551e04be931c8
502ee6a21ef65d1fa3cd049a993e261f85c841b75857d6bf02dd4532e14702f8f
5e1261f7543535cdf9379243b5b8ca5cd69d2576276a6c25b78ab7c69d2b0c568
eb57cf1731983016dece5b59e75301ca1a148154f2592c8406fee83a434f7b319
2649c5be06000866ff40bf09b558c7af4bbb9a79d5d13151e7b6e602e30c4ab70
bbbce9c098c386e51b98aefab67b8efc03f048210a785fd538ee6b75ecd484c13
40d91
sig: b7d45ec4db11f9b74a6b33806e486f7ee5f87c4fa7c57d08caf0ca6d3ba5
5e66bf0769c84b9187b9a86e49ba0cb58348f01156ac5bc2e9570fe0a8c33d0ad
049a965aeb2a8d8a3cbb30f89a3da6732a9bb3d9415141be4e9052f49d422301a
9cfce49947db7d52a1c620b7106ae43afbcb7cb29b9c215e0c2b4cf8d62db6722
4dd3de9f448f7b6607977c608595d29380b591a2bff2dff57ea2c77e9cdf69c18
21ff183a7626d45bbe1197767ac577715473d18571790b1cf59ee35e64362c826
246ae83923d749117b7ec1b4478ee15f990dc200745a45f175d23c8a13d2dbe58
b1f9d10db71917708b19eeeab230fe6026c249342216ee785d9422c3a8dc89
]]></artwork>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+2d63Ycx5Wl/8dT5FBrjcBuAM77hcuyTZOSxWVdOILsHk+P
FxEZGQmUCVRBlVUkYY36WeZZ5snmOxF5LQAUre65/CAlm0BVZlxOnLPP3ici
UycnJ2q32l3ZJ8Gjl3q7W+mrq9vg91erdRN8d/Y0OFtdrPVuv7XdI6Xremvf
fMCFRu/sxWZ7+yRYrduNUqub7ZNgt913uzgMqzBWr+3t2822eRK8WO/sdm13
J8+3ut2pbqfXzSt9tVkznlvbqZvVk+BfdxtzHHSb7W5r246fbq/lh78q1WzM
Wl9zaSN3n+jrv+nmxLTbi5ObYYQntYzwZNvpkzBS3b6+XnXdarPe3d5w34vv
vv9CKb3fXW62T1RwEjDg7knwh9PgKf9Kcyrgj+/kD5ebfbf8YrO90OvV3/WO
Frlgs7m4su4Le61XV1jqQu555Qb2O321v16vTuvt5u361Db7R1OHZ6fBl3bd
bFfmdbdZz/o8M5vd7s53P9dtJ3f9rrucbjs1m+upu2dufv+y2cyn9+xyu+p2
m5tLu118u+zs2dVm37RXerucp9Fvf3dp9c1qfVGvdt0pSzqb3h9p7jT46jT4
i93MevyjfbNaH3zzsxZ9/fbq1m5+ZzqmhEHrlfa2VOvN9prb3tgnOBxuN/2m
Tk5OAl13u602O6W+v1x1Aa6zv7brXdDdWLNqV7YLdFCP3twN3hzcbDf43+Yq
2F1qrt7f3OCIXXCz52ITXNudbvROn6oXu4Bm9Tqw73Z2LS4W7DbcZKW935/R
5tjS1hp6JnqGvpugvnWXPvviuz+c+vFer5qGqatPJEa2m2ZvxCRK/fjjb/sG
P3tx8vx0td213uXFxb2zj4PvfvppNr9+LH6W6u4Mj4PGrjc72wwjPg2cqWRa
we7txgXV7TSN2u7eWrtW5molhiRyg85u3+A+R5uts6DdPg7e4k9W+r7FFwh2
lkAMgz/e7HdWnXNd8JlDj6Pu9THX8PGr6+7i8flxf+/5+BkXvtxahmGP3BV+
aDf+o0bRtbP7pnVzvdmu3gBErFHX6Qva4Z5zGf6bVTOZ3I/+2A3/vHstbSr5
XMaPNwdA1Z17/DRPgz/d0JvM5Mruxo4Z02hRNV0dXFm9XXcBFr6k3X5yupsN
YrhEbHJ+yroHDsbMnnCTpmj52up1FzzYqozAT5MVmOx27mY3daTuuYup43mD
r15qsewbvV1Zlpzv9c0N/u7CEgh+u9pdBnjiy+9e/Pnps7+cvHx6dubd0eKO
zvDm9kZ33clgip9+UrWVvnRg9Hqzpq0rQkWL7UCHy9WVDfadbfe44cKGssZX
q+uV+CVoIVGoVjvi17rxB5hwRShpwzpcbxpZ8IPYFHerbcBoNmalpR0ZvtLB
Ue8Zx1O4P8bkq62zvRuFIVMQ0Md32pS4GECGsHTgsBpggfG8XoPyrmdsHNwN
ES6X9ditrq2Y14eDa+vUA5SsgDfIwvZigxsJopXBbl+wzL0Rj6exXa8uLncy
Ze5vFGOwa7NpLFferLaumfnYA34Kfs4YQ5fHauyFZZQ+fNsNfcnqLqKGm/EV
e3pxeiyRMyyA87i1nVp6Q2a03qf4fLyXm/Y7vwzjane4DZfaqys/7Jll/Bpc
6jc2IF6Id/l+Szba6i2dX2/2a3AbW0+Y/Z5UIK6v+Yzrh5h4bwIYwVNC6KW7
/kjA9pAqjTTJz/fpzQ1JevXu8SnfXK8YuPjM0ONqDdz3v/z003HQNy3fMGzb
rtY+KLq9uWTMb/WtH6R4Fui/v3K2PtqvHeTb5vEM9fvlwxd9BnLD0YFjYHrr
csDJy7MzYq8WA55KJnq2Wb/BUM4PxZefyxBW3vrY0i+dELsuePT1n86+f3Ts
/w6++db9/N3n/+VPL777/Ln8fPbl06++Gn9Q/RVnX377p6+eTz9Ndz779uuv
P//mub+ZT4PFR+rR10//8sij+KNvX37/4ttvnn71yAPGfIm15CIHBy4ZkToE
D3SnGtuZ7ar29vz9s5f/639GKQj3n7774lkcRRWJ1P9SRkXKL4D32ve2WbO2
/ldJcgqXBFylFVYdK9+sdvqKMCCcu0vBBIF9rPlP/yqW+euT4Ne1uYnS3/Qf
yIQXHw42W3zobHb3kzs3eyPe89E93YzWXHx+YOnleJ/+ZfH7YPfZh7/+LZ5n
g5Oo/O1vlLjQNxuPct5f2s3V1eatOCmLcd255RHQwpTbzV7I8+5gAVm8Yan6
JN+nic2N3fZAcLjqUMATAGhnu1e7zatVD8T8Lb+6z594197uhATyAWGwdaPa
uEvb7eaab0hbJ2t74Wil858LSADk9L1NuzmtBKFlKM7Zgm/P4hcv3ZUv4m/P
XspHc/+jyd7ZwqiQuCeWgSbp9ur2VExoxzjvMOJ+bXxMehuAfOv5LDolNDyo
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
RTmoWmYYlXSXYHZkm3vlwP8GS8j1XUyqAAA=

-->

</rfc>
