<?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.4 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-amjad-cfrg-partially-blind-rsa-02" category="info" submissionType="IRTF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.0 -->
  <front>
    <title abbrev="Partially Blind RSA Signatures">Partially Blind RSA Signatures</title>
    <seriesInfo name="Internet-Draft" value="draft-amjad-cfrg-partially-blind-rsa-02"/>
    <author initials="G. A." surname="Amjad" fullname="Ghous A. Amjad">
      <organization>Google</organization>
      <address>
        <email>gamjad@google.com</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="2024" month="January" day="11"/>
    <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 that does not impose a
range limit on the public exponent.</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>
          <t>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.</t>
        </li>
        <li>
          <t>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.</t>
        </li>
        <li>
          <t>bit_len(n): Compute the minimum number of bits needed to represent the positive integer n.</t>
        </li>
        <li>
          <t>inverse_mod(x, n): Compute the multiplicative inverse of x mod n or fail if x and n are not co-prime.</t>
        </li>
        <li>
          <t>is_coprime(x, n): Return true if x and n are co-prime, and false otherwise.</t>
        </li>
        <li>
          <t>len(s): The length of a byte string, in bytes.</t>
        </li>
        <li>
          <t>random(n): Generate n random bytes using a cryptographically-secure random number generator.</t>
        </li>
        <li>
          <t>concat(x0, ..., xN): Concatenation of byte strings. For example,
concat(0x01, 0x0203, 0x040506) = 0x010203040506.</t>
        </li>
        <li>
          <t>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.</t>
        </li>
        <li>
          <t>random_prime(b): Return a random prime number of length b bits.</t>
        </li>
        <li>
          <t>is_prime(p): Return true if the input integer p is prime, and false otherwise.</t>
        </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[
blind_msg, inv = Blind(pk, input_msg, info)
]]></artwork>
      <t>The client then sends <tt>blind_msg</tt> to the server, which then processes the message
by computing:</t>
      <artwork><![CDATA[
blind_sig = BlindSign(sk, blind_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)
  blind_msg, inv = Blind(pk, input_msg, info)

                        blind_msg
                        ---------->

            blind_sig = BlindSign(sk, blind_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 = 2p' + 1, where p' 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>
            <t>sk = (n, p, q, phi, d), where phi = (p - 1)(q - 1), n = p * q, and d is the private exponent</t>
          </li>
          <li>
            <t>pk = (n, e), where n = p * q, and e is the public exponent such that d * e == 1 mod phi</t>
          </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. p' = random_prime(bits - 1)
2. p = (2 * p') + 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 a "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:
- blind_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) - 1)
   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. blind_msg = int_to_bytes(z, modulus_len)
14. output blind_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, blind_msg, info)

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

Inputs:
- sk, private key (n, p, q, phi, d)
- blind_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(blind_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>
            <t>Compute <tt>pk_derived = DerivePublicKey(pk, info)</tt>.</t>
          </li>
          <li>
            <t>Compute <tt>msg_prime = concat("msg", int_to_bytes(len(info), 4), info, msg)</tt>.</t>
          </li>
          <li>
            <t>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>.</t>
          </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 as defined in <xref target="RFC5869"/> 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. This MUST be a power of 2.
- 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 implementers. 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 Usage</name>
        <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 instantiation 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>
          <t>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).</t>
        </li>
        <li>
          <t>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).</t>
        </li>
        <li>
          <t>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).</t>
        </li>
        <li>
          <t>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.</t>
        </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>
          <t>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.</t>
        </li>
        <li>
          <t>Concurrent one-more-unforgeability: The above holds even in the setting when an adversarial client is interacting
with multiple servers (signers) simultaneously.</t>
        </li>
        <li>
          <t>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.</t>
        </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="7" 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"/> do 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 remains 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 function 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 susceptible 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 anchor="sec-normative-references">
        <name>Normative 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="10" month="July" 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.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-rsa-blind-signatures-14"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <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="RFC5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications. The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5869"/>
          <seriesInfo name="DOI" value="10.17487/RFC5869"/>
        </reference>
        <reference anchor="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 anchor="sec-informative-references">
        <name>Informative References</name>
        <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="3" month="October" 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-16"/>
        </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 615?>

<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-Deterministic variant defined in <xref target="core-protocol"/>.
The following parameters are specified for each test vector, where each hexidecimal value uses an unsigned big-endian convention:</t>
      <ul spacing="normal">
        <li>
          <t>p, q, d, e, N: RSA private and public key parameters, each encoded as a hexadecimal string.</t>
        </li>
        <li>
          <t>msg: Input message being signed, encoded as a hexadecimal string. The hash is computed using SHA-384.</t>
        </li>
        <li>
          <t>info: Public metadata bound to the signature, encoded as a hexadecimal string.</t>
        </li>
        <li>
          <t>eprime: The augmented public key exponent corresponding to e and metadata, encoded as a hexadecimal string.</t>
        </li>
        <li>
          <t>r: The message blinding value, encoded as a hexadecimal string.</t>
        </li>
        <li>
          <t>salt: Randomly-generated salt used when computing the signature. The length is 48 bytes.</t>
        </li>
        <li>
          <t>blind_msg, blind_sig: The protocol values exchanged during the computation,
encoded as hexadecimal strings.</t>
        </li>
        <li>
          <t>sig: The output message signature.</t>
        </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
r: d55491221c9a9ce5687b84669880abbc4db57c8f82864a450a5bf7c3f0
902884fa418c74bf663f3bfcff74a4792356f3ce052f128b084f8b028cf432533
27514f4b38430c69f19f155634429803badd1f6849d8603882eb9b648b697cb2f
2c4069b504562e19bb9f1cf99da47c198c2ae04f4bd3add78025e80f146edce48
dc3e9dc0ba3ee14bc97489050e26dc8935f3ecfcaea07c9c1a3d8e41be1e49dc8
aa171ac4cec9d1cddd8066b13767901dcb339e2cce40d11f5cff6c870012bca49
109ce6e81e165d3831531cbf8503f3cfde68340789979cba96602e70613a13869
aff57f2170e31ebe85564e3f026d8cd1835e59144fb8c008391c55d2fb1a5488
salt: 648ea74482fbab69876817ee3c2055a6921a458648c802c09a23f8825b2
59724e41c960ef29febe16a04e120c8b1cc1a
blind_msg: cfd613e27b8eb15ee0b1df0e1bdda7809a61a29e9b6e9f3ec7c3
45353437638e85593a7309467e36396b0515686fe87330b312b6f89df26dc1cc8
8dd222186ca0bfd4ffa0fd16a9749175f3255425eb299e1807b76235befa57b28
f50db02f5df76cf2f8bcb55c3e2d39d8c4b9a0439e71c5362f35f3db768a5865b
864fdf979bc48d4a29ae9e7c2ea259dc557503e2938b9c3080974bd86ad8b0daa
f1d103c31549dcf767798079f88833b579424ed5b3d700162136459dc29733256
f18ceb74ccf0bc542db8829ca5e0346ad3fe36654715a3686ceb69f73540efd20
530a59062c13880827607c68d00993b47ad6ba017b95dfc52e567c4bf65135072
b12a4
blind_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
r: 532103acf62670e3176eb1cfee7c2c46c7986704b869387924c33e8358
8c7cac67882570aede836b51b44a565c872a91bbf4f0f8396019113ef382963d3
a51b91429993e821217d3e85b2253e0daa0e9cfc440c37a37707f7aed383d98b3
150f21e1146c58c28d4a49046b8e97f834e4cb95e5483dfc42eaa17bdce947631
7f710b7488cc06cf61a1c449faa1d34119f2c3cd6ead79f9de14358b1c750bf2c
312fcbba3c511341fd4952ba2fcd486a9e81fd829e47cd8a0ac0273d7594c69eb
4aebfaec3c59aa1a016582410d9f4be14dac4b1a66f61eeb3e108af3868e410f7
7436765ba1df7c9a5cf37d8ec3dced6f5689da9703618a5cc7bf6d60f7b4209c
salt: 134520fb9ae6076594b4488fa31cae4e8e3efaca5ae4377bd586aac58e9
0f8925826b4b4fff2e21fdb933c4fbb6467a2
blind_msg: 5e6568cd0bf7ea71ad91e0a9708abb5e97661c41812eb994b672
f10aa8983151113aeaabcf1306fa5a493e3dbdd58fc8bdb61aac934fae832676b
cab7abacdcc1b9c1f2af3586ae009042293b6945fee0aeffb2d2b8a24f82614b8
be39bab71a535f6d65f1631e927dbd471b0753e7a63a201c7ecd26e7fbbb5e21e
02f865b64e20731004c395b0e059a92fffa4c636ac4c00db9aa086b5dd1a3dd10
1bb04970b12ca3f4936f246e32d394f328cea2510554060e8d291acdbee04b8bc
91e967241ba45f3509d63ded5f9b358f4216f37a885e563b7baa93a717ca7cdbe
10e398d14bb2d5a1376b4a5f83226ce2c575087bc28d743caeff9c1b11cc8bd02
f5f14
blind_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
r: 6e1de89fc58417836aa76fefe4876b8b311af2eb94a8226d5796273171
48551d90b6f9db614b590e7f66f34644a2f6a3568ec78852b7f45876f576a7ee6
0c19bb0fbbdf1c85d7b36cf7bdf80fb925830c07285efae69e0c019d8d99fd5c6
20f83361c9411541fddf4bfe27e73f756bf594742a8253119d134e1ad67f02228
59c4ab243868bb23a6468c01ead9a617657056685f19fcd423b9e916c5e3e3b21
f92d0e12667d695084a42ae97a548d5982a51b67dd09c188c051d20236e24b231
e80a96449390e9032bad350645f5d4a162ddf3d61506ef6737b4f9fe6064a1d2f
afc7849e5039a98ebf14a800dc2423fccc1293f28a2c66ec22983cab922c1cc6
salt: 1ade5e965d1946a69dc495e78c8524910094f08405471664d4898fa3612
bf03fd03b3ae8140a737cb13e223e35219b58
blind_msg: 92d5456738e0cfe0fa770b51e6a72d633d7cec3a945459f1db96
dbc500a5d1bca34a839059579759301c098231b102fb1e114bf9f892f42f902a3
36f4a3585b23efa906dfcb94213f4d3b39951551cedecbf51efa213ad030cf821
ee3fa46a57d67429f838ff728f47111f7f1b22000a979c0f56cc581396935780d
76173410d2a8a5688cd59622903008fe50af1fcc5e7cf96affad7e60fbed67996
c7a377effa0f08d9273cd33536b2625c9575d10636cc964636a1500f4fcb22aab
bef77fe415cbc7245c1032d34bd480ee338f55be0a79c0076d9cf9c94c0db3003
a33b23c62dbd1a85f2b15db5d153b318cca53c6d68e1e63bafa39c9a43be72f36
d2569
blind_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
r: 35deeb769ae3dce60033cbaeceeec511cd980307f53810c1b33934eeee
c194283834419fb190881213cfc0d91ff6307862ce143586ad9580057e3af6bb4
a405075ed9abf1f3b5a5cfb0c7fc59b952401cb28c04f9f85a9a3708fd51c74af
a1a1028a821beb2f8165678657f0d2effb7a1add5421216f3c50253a6f8d0d8ed
492f947d58b42527a2249b08e5ab05c25362ad8112bdea931544711b2a3d30e61
e2c8a130ea7f90fe915b5c3adaa24a6c300c23d8f670d330b592a7c05f7588324
688ae10e06290ab160096ce132a5ed220d2fbe6b4722cc30e05316b30f500b2ac
15038555289ea405025740a1d2a3098d34d094b566d0b973e661d855fb90be3c
salt: df4fbdf415184c20fad0418f27c35974db8c321e84c54b21e1e2619dbfa
0ad70db62c01783ffe796e8474596d7eb3fd8
blind_msg: ba562cba0e69070dc50384456391defa410d36fa853fd235902f
f5d015d688a44def6b6a7e71a69bff8ee510f5a9aa44e9afddd3e766f2423b3fc
783fd1a9ab618586110987c1b3ddce62d25cae500aa92a6b886cb609829d06e67
fbf28fbbf3ee7d5cc125481dd002b908097732e0df06f288cc6eb54565f8153d4
80085b56ab6cb5801b482d12f50558eb3cb0eb7a4ff8fcc54d4d7fcc2f8913a40
1ae1d1303ead7964f2746e4804e2848bba87f53cf1412afedc82d9c383dd095e0
eb6f90cc74bc4bb5ea7529ded9cde2d489575d549b884379abe6d7b71969e6a9c
09f1963d2719eefccd5f2a407845961ccc1fa580a93c72902b2499d96f89e6c53
fc888
blind_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+2d+3Yct7Xm/8dT1JHXGlM5JFP3i1acRJHtRCu+aCwnZzJn
skwUCkV2RHZ3urolMR6fZ5lnmSeb3wbq2iRl2Scz84+Ui8juKhSwsfe3v28D
KJ2dnan9an9tnwSPXujdfqWvr2+D312v1k3wzcunwcvV5VrvDzvbPVK6rnf2
9XtcaPTeXm52t0+C1brdKLXa7p4E+92h28dhWIWxemVv32x2zZPg+Xpvd2u7
P/t0p9u96vZ63Xynrzdr+nNrO7VdPQn+fb8xp0G32e13tu346fZGfvirUs3G
rPUNlzZy95m++Ztuzky7uzzbDj08q6WHZ7tOn/Hc7lDfrLputVnvb7fc9/yb
bz9XSh/2V5vdExWcBXS4exL8/jx4yn+lORXwxz/k91ebQ7f8YrO71OvVP/Se
Frlgs7m8tu4Le6NX11jq0vXpt5fum3OzuXk0PeXlefAHu252K/Oq26xnD3pp
Nvv9ne9+7Fmd3PXb7mq6TZ43Pe6ZG9S/bTbzMT272q26/WZ7ZXeLb5cPe3a9
OTTttd4tB2f0m99eWb1drS/r1b47Zx5nw/sjzZ0HX5wHf7Gb2RP/aF+v1kff
/KgZX725vrWb35qOIV0fbuqVPrfN4ZFS683uhtte2yd4Gb42/abOzs4CXXf7
nTZ7pb69WnUB/nK4set90G2tWbUr2wU6qEcX7gYXDra7DU63uQ72V5qrD9st
3tcF2wMXm+DG7nWj9/pcPd8HNKvXgX27t2vxq2C/4SYr7f3uJW2OLe2s4cmE
zPDsJqhv3aXPPv/m9+e+vzerpmHo6iMJjN2mORgxiVLff/8vfYOfPD/79Hy1
27fez8WvvYePne9++GE2vr4vfpTq7ghPg8auN3vbDD0+D5ypZFjB/s3GRdLt
NIza7t9Yu1bmeiWGJFyDzu5e4z4nm52zoN09Dt7gT1aefYsvEOFMgRgGf9we
9lZdcF3wiYOMk+7VKdfw8Xc33eXji9P+3ovxMy58sbN0w564K3zXtv6jRvFo
Z/dN68a63a1egz7MUdfpS9rhngvp/utVM5nc9/7Udf+ieyVtKvlc+o83B+DT
nXv8MM+DP215mozk2u7HB9On0aJqujq4tnq37gIsfEW7/eB0N+vEcInY5OKc
eQ8cdpkD4SZN0fKN1esueLBV6YEfJjMw2e3CjW56kLrnLoaO5w2+eqXFsq/1
bmWZcr7X2y3+7sIS3H2z2l8F33//mxffPP/z02d/OXvx9OVL744Wd3SGN7db
3XVngyl++EHVVp6lA6PXmzVtXRMqWmwHOlytrm1w6Gx7wA0XNpQ5vl7drMQv
QQuJQrXaE7/W9T/AhCtCSRvm4WbTyIQfxaa4W20DerMxKy3tSPeVDk56zzid
wv0xJl/tnO1dLwzpgYA+vdOmxMUAMoSlA4fVAAv059V688YhQI2Ng7shwuUy
H/vVjRXz+nBwbZ17gJIZ8AZZ2F5ssJUgWhns9jnT3BvxdOrbzeryai9D5v5G
0Qe7NpvGcuV2tXPNzPse8FPwY8YYHnmqxqcwjfIM33bDs2R2F1HDzfiKPb88
P5XIGSbAedzaTi291tcH632Kz8d7uemw99MwznaH23Cpvb723Z5Zxs/BlX5t
A+KFeJfvd2Sjnd7x8JvNYQ1uY+sJs9+RCsT1NZ9x/RAT70wAI3hKCL1w158I
2B7zo5Eb+fE+3W5J0qu3j8/55mZFx8Vnhieu1sB9/8sPP5wGfdPyDd227Wrt
g6I7mCv6/Ebf+k6KZ4H+h2tn65PD2kG+bR7PUL+fPnzRZyDXHR042qV3Lgec
vXj5ktirnQFdw+M8rG62m46YUju9xtQuQANJeVdj+OFtzOZ6fy457Nlm/Zqf
nQdLFHwqnV/5eWMW/KQLD+yCR1/+6eW3j07938FXX7ufv/nsv/7p+TeffSo/
v/zD0y++GH9Q/RUv//D1n774dPppuvPZ119++dlXn/qb+TRYfKQeffn0L488
/j/6+sW3z7/+6ukXjzzUzJ1DSxZzQOLSGElHkER3qrGd2a1qPxO/e/bif/+v
KA0kS3/+LI6iihTsfymjIuUXYH/tn7ZZ4xX+V0mPCmcGlqUV/IX52a72+poA
Agi6K0ETSRhY8xf/Lpb565PgV7XZRumv+w9kwIsPB5stPnQ2u/vJnZu9Ee/5
6J7HjNZcfH5k6WV/n/5l8ftg99mHv/oNPmuDs6j8za+VuNBXG4+P3l/azfX1
5o24N5Nx07npEbjDlLvN4RJ+vj+aQCZvmKqeHvQJZrO1ux5Cjmcd8ngGdO1t
991+892qh3D+ll/d50+8a+/2Qh/5gADauV5t3KXtbnPDNyS8s7W9dITU+c8l
9AFa+86m3ZhWgu3SFedswdcv4+cv3JXP469fvpCP5v5Hk72zhVEhiAEKAGry
2OvbczGhHRGC8G0Pa+Nj0tvASgjPRtEpIfBBvbo8E5TS/ZeEqXT/LCD4m83N
d/2AvjusV5JVTr48Db56DHm3a9+o7i88Dfor8PtmJY8A4F2/3f3BN2IRTyqD
L/nUXJNUMJgM9yvwpP8dknhuSSlfBr/6JPgm+FXwlfQFoP/u2q5P1o9lShy5
dNN8A87cHG6CNVqBZ4DnIlCCtbWStZgm2CNWch4iXrHpVvNZCtbS+EqmuLPf
QTBO3p4Gd54hSNtnIneru1qe9TbglmAtuahFvwQr+UjGs3azK1BqNkKYbqx7
Tved2bjfhsd8Y0HrtShme3zzcKNHkxas4JF0Z/dm1bnWxBwdbUi88POl5Nd2
6aenbn7F26b5dCYcJ2/df+qv6tM82X93u91vLnd6eyVUDnXdWSN5pb+6N/el
b2bj3AUyhYVO3oanwfk5E/j2K2dH+dCu9cCg5/63ZDi4R99E+DaMTgP+Pw4T
93caZmH+GH0g38in/hN5ase8OHOuToO/TRb1w1n5lDWP3Iu3F5IFdy53uvjd
tG1n9/Bpz6MlFMQGe/ozfPW3i9PJYY94me/AsmOnAf3P+g4vutvHlHeCeurv
EESB+2bmzv3M1s6veyfyd2/v+o8M1smC0b+3jra+w4+A3pHSvBgw8/uPzGZn
J3bvQXm8bsRW5qsj0h3vQkKSwq5BmhnwoHQ/hYK8tn+0ty8gfT07kE9eOB7B
53IRH6t2c9gF8tzl/b0kPPUMq/9LeJYf0Oertb5e/cP2rRDvfz+siHjHQckV
konbUZuKEw4YdIe1nwdfyGQ7RdVnEX/Nx92oNp111UimL4Rpj1cfq4juSoTr
ww/sZalTxttXjy9U347/dvZUuaxvfKDP5y7uBxLgPu6jUcbIDBnbSMAKjx4m
TuELU1GC4Pj+e+47m+774YdzP9WzKsDlinlYqOlekrs8eDUJcE+fXGHASWkv
eriKNPsf//Ef6iGd7750T+2bp1GRMAC13veFDV+6uadsc89z3LXyHInZ1zzM
eczJdl5+OHUS6YFHky0gqhdjOxdDqWeYtTeA4pW/1hm66/pu9qZQD/bKl0NG
F3Yzv+jvolO9mLzbKakgDJ0aKhyzTrV9THRLJnRPr3x/hhi6z0ZD/7jS2XPW
PUiYQM1Yj5kU/XFtoi95HBVUTiXad/CXNWabAtfVAPyoOqdjnIi5nc2+ay7Y
9LYZK0RTKejo8WNA+nBVPsvNyiyz2LrYvroQSzHUzavhMgLopRdMZ3/+7Jvn
n/8lAFn2QmAnmYaWe2k9wpTn0Xksdpm4mg/XEawGhAuAS6FMXV+PuLLmFVHU
CgruHLaPPR1Gf65eWkvkemln+rh1cX4jtzUMdnUNvayFJHvbDdrdlw1lqpqD
mdj0siQDBEhJYGXcxafLyd0dROJ1PUHvejcKguCZmzDnQZMrB+Ofl87QPdIN
jh4A2j/rjyOuD6BJEPwUAFDBA3/GRh68YurOr5fN/IRQf7DxqZEHL/nVzB5c
9LND+fm6ryjcaCkj7MY6Z+fdGWixfdrwWeDdiVhN2dtpkVG6Depr9DMXEv3c
TRGxcv41T1OzyErPo1nNxqWrjz4KhET8fkp+3390lNWOctod8T9Cz536Vp/U
+rbojavFOIRyNe+OB3SYRc9quZDnFWxjpY9rvIHV3CxlI1TDATLZ1+aGpymn
8yf9KosCA7PqdGs9j8OAzt5/Pw+ezj72TE8v+KMae8u3nwTx9uPgX4WZ+sI7
v8kd193m6DaM+vSOKfp1ggPYHQyEZWjJjct6IdvP34QPUPRXPPwEN9meBn/n
/6+g6s14M7/K19vgLIgen/zd/YU44rNt8Au5XgbbSLPzqv9QfqL57dC8Hds8
utuOdy9rV9Ns8oBfcNknnwSRk3R0anSaGZEafMpppNEyvRN4pF6NmWywRm2x
xLkHSjwVRz0RLv9YIo/4xEZO3oK0Pdd3mrwn1f2iTu8wDGdQo05/xkp97ZKw
a0RmZUh1Z30AmdFi0t07k+DMd+9dU0b0plXq5d5ueU507pzpJZ73wqsY6esv
g/ixis+Dvz/wVXIuBOVa3BQj04HLjcRWR5tBfK7S86UfMBu9K6jsXCYmyLMs
KVR+zkx9shDs1g3msSrOp2mXX+73OlWezx1GVecDjRmceuI375j7Ke6mZbVx
2KfHs740yHtP/PSQxTRvTxcdGKTeYoI+ZoRLqSntOnvGfv5OYgy1/fixIILM
DupxpixlBN8iKk8H6/BQK8pxNm3RuTcVAOyL399/5PJLD7f+sxHW/UKCW0L1
CnUga64y7YiskMGOyHT6+2j5QASiax1Rv5/umZTS6K+g7r7v9Uw7zNhhr1N8
0VDNef2w2OFWxxZllHGBbdHH3g1P/aD6sh/h+ucXkbvjsy970vjZV8++/vQz
lwr1orQ/ZrYuyM5jSKPcVkEfoyV9PFWLUh8e1Ofo0b6tI319mf+RG7N00e52
m90j/9fpVG7sV5v6mi9Mc3frLDE2py8hAz5DEwa1rlfXK79UKGs4A9d0+Ona
drWWDuDDhg5u1/byenW5qq9tv+I1Ni2U3mUdVzLzPV4HjzAm/KHx3jH22Ksa
GYzpxaDe+y60aqx2dMHJ9eoVhpmDPK7wOHijpWOuYfzi/tEftm5ZcbpVNq0M
JFyKXyOwH1vHE3E//jkFny+/ORquGqtdM260M6sxk/Oq7fwZToAwYu9PoyUm
93H6b7d5I9bbbOUeWXOVZpX0ZGHP7jz4w+aNdV7uHuOuk6mQGuXGmMMuqLWw
NJ58RZu9F7t1UOlHc6q6zfzWVb9SJFWxZmB3slTUOc7SO4V0xAFBj4QTE5+T
4Bd6p4l3Yknwrc91Uu714mOGjq6qdzcvBmvu+4PurvwNV/w0GdKvG2z8p3OV
fhZ8+fvP/R03mnQxq58MN0tW1df7H+2LXDSHdRnh3RR65kd9X8HkdIk4rigt
jP3OOuTysnlemImL5WLFVEWcmdaXvefQpdRnbtKkrUdTHzfB9WZ9+ehJ8I1e
iSVlSWtWaBwuFIbVXxuc7PylyOgjCHwsFcxHDmcndPqxpj20jTf9WOtH2Hdf
62MBfwyBWpL8Qfz07BiK7jYwG/O8xO+je30+z8RMh0+qpNy+uv2Izx6dLtaC
TqSW74LhNEgfD2rNyVnSdZ+WerF7NOaT8Qmns0USn+oRia5LPjKcs7viY+/R
R7nIAeAYicIJSDLHKczZ3m+E8gDtPnD3elxwD9hvtkLpbujufA3sZDYSR+yM
cLlpUeRGFkWE4/FgI9Z11erhGQ8lCRnm+FSI327iPsdLV5F7ABTQ1wXmNHLn
vqrcs2efe+ebd+He1LroQxQKx/yucWVuoatHBe+TqQIS4SJvucLD7cl0F0/k
Wyb/H3x7A1Xrl5pUxLyMke7GMHOjf5zOQ5wG0pHeLosiE8kdh9Nqs2f+dsGg
Qr0NSarmatNJVdEvdva2nJb4pk0tggG3W79ghLomS79eadjF33r13smSCc/y
vGIE6CPzqNURRdKHS8naZx4LzwDUQfiPJQilxh/nJTWfJOYKaFwNHrYzDBV+
dUwTPQb5JQUpxPn2ems+xBQd/XvpE+cDTM8RvSN6N8+O7ygW/TPy5CxJOcHz
I+pw1olxzJjkAU49pLJ+7fs/ncxcpep9ktk8dQ2VC4lcxNs9+D1cMTmDi/J5
3huXjf2a78bXud12mHckhOVdWEG0kvhknymmZDsuCoX9ki+APc9s3o0WqvsO
mo5z47JEN8OOe9CnX4Drd2GKOwEknYcennQyv/3msUPvj+8Hps5BNzB5E/wL
2PTxAI53DD8hYn6+KIouMKs7wqziCLKkBDrozLHGqMZKussH4zrRqAe9SpPk
0W+PWi7QMC99EVy09FAZPx32SzmRKdx1tkDR7+qZCcvxPnWQhQ1ovSwFLfdh
zBn9m9X1tV+JXDuEHAnpgu4o7YDUwadsOZqx50Vx9x1l3Q+E+mcT6gXy9GuZ
c8Drq5x3UYlgf5hkzxjnWJFYUu95Ge/ngN5AjEaffAD2/ALaalTFcu9hbd9K
bcH2vIoL/3F8/7I//jLZLrj+WPZJuG2ZjgMODfnuLqjwczeIk9G+jx18zH2z
x5H7+zOhSc+K7sFCaXXAtX9AmoTmedoEnr0H9mT/BMKevzf5E67qtnH2KLxY
YVxA7ozjO8O5Hc5Qzp9F7Es3FeOTHx07zljzc44oVT95VD83d/1smheH0hP4
XUwjuBj2o/bnAqTMAPQ2B78lx2HcuItd1kw6DzHqYoC8C/imIPH1rbiJbF+R
h0ib0gLfDA370ozLFn+erZAq9XS5lw5Cttzj8sPpnODds6g9X2pWDy01L+Os
X/f+dr5Lwq2JzTc2yyaaw40LSrf35NQzbV/vmbfveHHvEdoJbafujla3z9Wz
fu28Xzdfdsmtml9MK/N+A8vxivhYUVXjmvhiUYdwHnbIXbyft9OveHbTfzbM
aE4EqqtNzRLzbG90v054tG5/8s5V+kkyX/gM44Y9d2TZl6i7Wf8v+k08L/2l
bsKVmrve6BcPukAwuID4ta87NnbrNnzgud4RvOctk6l4hCTjOwuN/Vawfm31
eSN7s/e36vi+Ux9ucumsO/Pyxsz9zmWhWA5M7HS3P37EN04rLnY2vPMZav4M
v4NutlidxG5JZProsRwX8ttC79vwocb1gHETHej3Vpa0cffGo4H3SbdW7Jx0
WCu+R132yz8T3WimG8bxnRy5+uM+ON0irN2djWE5C6ThHMm0Hm79jrflmvg9
dEvI6B/++Onnd1SlOG9W5rIRfdWXx53DKKdAF2diBpL3oj99IIcBjI+eYQ2r
3+d1IYnlYkoaM047Vd2FbrkuSU347Vav+x23clbnsPb8uV7pcRdmH6HLuoFL
Gg+nyH8Gk+3PuQ1lDSZk88bvcojPfw7LfQ9W+pPl7iLZ/+hi7McLXXj1qmm/
8zMyYSnXPhrwMnwbhk4iuiuFJBzzoPURDwJar/VN3WjHJhYsTZZzhU25tvy3
s0v/NYhyt2Lb+0O/1f0T5ygnz//45SdTb08dX/lk7JTv7iePXvyO6aPzX3wy
PMORqmWT/x7+Nfgvsr02+Tz45S+DZ3LkzZ1ivNl04plbt5IqFOvovqmzZ9Ff
g//ptxRLEy/tXk5z7Tc3vg3uF6pkPz6mmh6uls2ezozweL6qvEiOw+QNclaw
yO2KvR+QfGlmhkjjjoN34FGv8xdoJLfg7n2DarmbdNxrY1zwHi+8LvfwLE5I
qnsRbB7Sd4sO/7+k6U8se/3kAO7eHcDveNzHj/+T8d9/dA/5Wg9WJ/abj4/3
TXzcb5xI5rWje/ZMfOyqQfc6MpH+9bh74r7y0+DrR2uvLuf8yRGAZ7KFvBmP
6PhCcr/zbNyh5RnSdFngFzjxolYb63ZpHS9tHxH4O2d/htPPfv1yWNVEUjRu
oVY6+PTF86PneibhZbcPyavV5dXZtX1tr2e71o/2WB/pDL8NQI44ytqyLJC7
pA+gMG2rfb90qqY9Z8dnnga/0H533kwK+GhcN6vZ/juQ0YWE36TlFm2U9EBW
aicW0kwn9qZF2wf3+Em9X04Y9au80pwcXd77evjlAYv5KRqPN+06N8rb8VyM
O0p/pQ+dq68Oy8ZYRI1rSX6zyNJx/OFXe7PaHx3DOJ5/f+HusB5qtzeQwZ1s
nfiS6di4lfDje0SkOg+YOjAeJdoI6nZo0EbOM8sms57O1vL0hWup/kB55yzh
OJYYQ5bV3Sk13e96OJrxCWqnqR/U+0gPGbMax3xnLYpOLO71e3DGAtC4fd9V
Pqfdgv3ST7+l4t49Nd9/7/f2/HC8F+P+LSXKbSmZdovOiqC+M+M+Arf3oPOH
ge9ON0zyuvG7RfqJkVuxgLHjjgc5eQqrbFsmZe0KBOOZZL8R42iz93iGVvBU
zmHXUof3NhjEwsu+lC0Z2uPU9x8Zu9ufbVayv+np0NZ8l+RwStOtndmRtev1
rT9vMz9Ucbvxb6J44V/EcOddAFIAvbEPNj827o6fL2i9Xo8veBgfSOxNTq/V
+/d9tOrU/rgM77ecuLB2ouZUreT02dD4cJBaNq9OzRzf3atDYsD1wNURtZMI
APNeuqYce5HOOADz9w0boO7bwC/b6PVu16MvLvXfzrOwCmT2PGgKWPTPO/RL
11OdQH39/NNBVRVZLhv3n+8n8ww37Dr92dodkhMv9ff8Ru6Jy9AvTk4W+7M/
a97hQty2rSEkP/S7ro82WXth516f0gxH1Lu+jvFieGWH4O743ZCe1GTizo73
9GOaFf8eXJQc95z9ZiyG+K2zPUZd36qjrDYuZ/q7fsJLSzxy6+vLzQ4YvOlk
SfnvB7coMwzUcztztYFqS/tLlrd86YkXsnJYqD9i6EXpnXVlv5P83sVkl4An
E8org5wNjzen+1T3/nvTYWfDiM5e/uFpUqauFjVWS5onnoUsZlycTHD06RnX
B/0rRBYGOFVf/v7zyCeRo+tkuh9aexH+mpZnnsKKCvRk26d2eaiaSijSuftr
TifHJZ/HrrJ3zzj/+2fffP1zx6qmTv/csUIwbrb7W3eZ15eyifQwnNX6OeNM
7p/PTyW25CQysGX+H0/pOydU7lervvz37mEORcLHbjP2Q7P580f6f39Cf+o4
x9cfueKUvK1hGIOrc40sqZmPeX6MajyANp4SXe5bu+ku++OUsxclTNgtUPJu
dIB0qh+PK1lkcxtRfz4i98m+Mwf3yrR+06oTWG6PRL/790iE+cLh/cZxKfCl
nBmXG49FnnuvWmBhfFBaYcvWV8in1z5s3YP3K7vIf+44yddreybbbM8Owu4u
bd+7Jz6rwLZ0IypX3moyHvudC6ThLVZTPXl4mZVTL/07lDy57e/v7tzNl65K
dLG+cG/5cY50WIsaEJLfV38u1v8aXfgtCqNX6PlBVuUO1HTHnfFLNeNmBJmd
u7vP+wYHR77aXDfdyDhdv4a3Fm2ub9f4ir4eKjbdMDEjMxjX3c2V9S8rkJP7
h53Lh5uHLC6+ja9A2vzThYsH4zP23u5u+Xg9zgrdGISI09/jDPkq/ni8xRsa
0/jZ6R5jGflSr+3m0Mkm+LPgT2tc+dXYncHNjrygdwC9eLPWyTDpd3xETDcc
P52ti2EndfxauOBpy81v9K7pz0lODx13z8nr4Fwhzu9a9/V1HjG9wWcGKd4D
r5DBILmX2evjlvsdq5cHOTXrF4dmzc5OukMPd7avINip1ZmH1cxRv5KqxjcQ
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

-->

</rfc>
