<?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.35 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-cfrg-rsa-blind-signatures-13" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.3 -->
  <front>
    <title abbrev="RSA Blind Signatures">RSA Blind Signatures</title>
    <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-rsa-blind-signatures-13"/>
    <author initials="F." surname="Denis" fullname="Frank Denis">
      <organization>Fastly Inc.</organization>
      <address>
        <email>fd@00f.net</email>
      </address>
    </author>
    <author initials="F." surname="Jacobs" fullname="Frederic Jacobs">
      <organization>Apple Inc.</organization>
      <address>
        <email>frederic.jacobs@apple.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>
    <date year="2023" month="June" day="15"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 139?>

<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.</t>
      <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/chris-wood/draft-wood-cfrg-blind-signatures"/>.</t>
    </note>
  </front>
  <middle>
    <?line 147?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Originally introduced in the context of digital cash systems by Chaum
for untraceable payments <xref target="Chaum83"/>, RSA blind signatures turned out to have
a wide range of applications ranging from privacy-preserving digital payments to
authentication mechanisms <xref target="GoogleVPN"/> <xref target="ApplePrivateRelay"/> <xref target="PrettyGoodPhonePrivacy"/>.</t>
      <t>Recently, interest in blind signatures has grown to address operational shortcomings from applications
that use Verifiable Oblivious Pseudorandom Functions (VOPRFs) <xref target="VOPRF"/>, such
as Privacy Pass <xref target="PRIVACY-PASS"/>. Specifically, VOPRFs are not necessarily
publicly verifiable, meaning that a verifier needs access to the VOPRF private key to verify
that the output of a VOPRF protocol is valid for a given input. This limitation complicates
deployments where it is not desirable to distribute private keys to entities performing verification.
Additionally, if the private key is kept in a Hardware Security Module, the number of operations
on the key is doubled compared to a scheme where only the public key is required for verification.</t>
      <t>In contrast, digital signatures provide a primitive that is publicly verifiable and does not
require access to the private key for verification. Moreover, <xref target="JKK14"/> shows that one can realize
a VOPRF in the Random Oracle Model by hashing a signature-message pair, where the signature is
computed using a deterministic blind signature protocol.</t>
      <t>This document specifies a protocol for computing RSA blind signatures using RSA-PSS encoding,
and a family of variants for this protocol, denoted RSABSSA (RSA Blind Signature with Appendix).
In order to facilitate deployment, it is defined in such a way that the resulting (unblinded)
signature can be verified with a standard RSA-PSS library.</t>
      <t>This document represents the consensus of the Crypto Forum Research Group (CFRG). It is
not an IETF product and is not a standard.</t>
    </section>
    <section anchor="requirements-notation">
      <name>Requirements Notation</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.
<?line -6?>
      </t>
    </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>
      </ul>
    </section>
    <section anchor="core-protocol">
      <name>Blind Signature Protocol</name>
      <t>The RSA Blind Signature Protocol is a two-party protocol between a client and server
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
private signing key provided by the server. See <xref target="cert-oid"/> for details on how <tt>sk</tt> is generated
and used in this protocol. 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>The protocol consists of four 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, and <tt>(sk, pk)</tt> be the server's private and public key pair.</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)
]]></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)
]]></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, 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> 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)                      Server(sk, pk)
  -----------------------------------------------------
  input_msg = Prepare(msg)
  blinded_msg, inv = Blind(pk, input_msg)

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

                 blind_sig = BlindSign(sk, blinded_msg)

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

  sig = Finalize(pk, input_msg, blind_sig, inv)
]]></artwork>
      <t>In the remainder of this section, we specify the Prepare, Blind, BlindSign, and Finalize
functions that are used in this protocol.</t>
      <section anchor="randomization">
        <name>Prepare</name>
        <t>Message preparation, denoted by the Prepare function, is the process by which the message
to be signed and verified is prepared for input to the blind signing protocol.
There are two types of preparation functions: an identity preparation function,
and a randomized preparation function. The identity preparation function returns
the input message without transformation, i.e., <tt>msg = PrepareIdentity(msg)</tt>.</t>
        <t>The randomized preparation function augments the input message with fresh randomness.
We denote this process by the function <tt>PrepareRandomize(msg)</tt>, which takes as input a message
<tt>msg</tt> and produces a randomized message <tt>input_msg</tt>. Its implementation is shown below.</t>
        <artwork><![CDATA[
PrepareRandomize(msg)

Inputs:
- msg, message to be signed, a byte string

Outputs:
- input_msg, a byte string that is 32 bytes longer than msg

Steps:
1. msg_prefix = random(32)
2. input_msg = concat(msg_prefix, msg)
3. output input_msg
]]></artwork>
      </section>
      <section anchor="blind">
        <name>Blind</name>
        <t>The Blind function encodes an input message 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 SHOULD 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 SHOULD 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)

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 (denoted sLen in RFC8017)

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

Outputs:
- blinded_msg, a byte string of length modulus_len
- inv, an integer used to unblind the signature in Finalize

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. encoded_msg = EMSA-PSS-ENCODE(msg, bit_len(n))
   with Hash, MGF, and salt_len as defined in the parameters
2. If EMSA-PSS-ENCODE raises an error, raise the error and stop
3. m = bytes_to_int(encoded_msg)
4. c = is_coprime(m, n)
5. If c is false, raise an "invalid input" error
   and stop
6. r = random_integer_uniform(1, n)
7. inv = inverse_mod(r, n)
8. If inverse_mod fails, raise an "blinding error" error
   and stop
9. x = RSAVP1(pk, r)
10. z = (m * x) mod n
11. blinded_msg = int_to_bytes(z, modulus_len)
12. output blinded_msg, inv
]]></artwork>
        <t>The blinding factor r MUST be randomly chosen from a uniform distribution.
This is typically done via rejection sampling.</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)

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

Inputs:
- sk, server private key
- blinded_msg, encoded and blinded message to be signed, 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. s = RSASP1(sk, m)
3. m' = RSAVP1(pk, s)
4. If m != m', raise "signing failure" and stop
5. blind_sig = int_to_bytes(s, modulus_len)
6. 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, 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 (denoted sLen in RFC8017)

Inputs:
- pk, server public key (n, e)
- msg, message to be signed, 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. result = RSASSA-PSS-VERIFY(pk, msg, sig) with
   Hash, MGF, and salt_len as defined in the parameters
6. If result = "valid signature", output sig, else
   raise "invalid signature" and stop
]]></artwork>
      </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. Clients verify the
<tt>msg</tt> signature using the server's public key <tt>pk</tt> by invoking the
RSASSA-PSS-VERIFY routine defined in <xref section="8.1.2" sectionFormat="of" target="RFC8017"/>
with <tt>(n, e)</tt> as <tt>pk</tt>, M as <tt>input_msg</tt>, and <tt>S</tt> as <tt>sig</tt>.</t>
        <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>
    <section anchor="rsabssa">
      <name>RSABSSA Variants</name>
      <t>In this section we define different named variants of RSABSSA. Each variant specifies
RSASSA-PSS parameters as defined in <xref section="9.1.1" sectionFormat="of" target="RFC8017"/> and
the type of message preparation function applied (as described in <xref target="randomization"/>).
Each variant uses the MGF1 Mask Generation Function defined in <xref section="B.2.1." sectionFormat="of" target="RFC8017"/>.
Future specifications can introduce other variants as desired. The named variants are as follows:</t>
      <ol spacing="normal" type="1"><li>RSABSSA-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>RSABSSA-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>RSABSSA-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>RSABSSA-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 <tt>msg</tt>.</li>
      </ol>
      <t>The RECOMMENDED variants are RSABSSA-SHA384-PSS-Randomized or RSABSSA-SHA384-PSSZERO-Randomized.</t>
      <t>Not all named variants can be used interchangeably. In particular, applications that provide
high-entropy input messages can safely use named variants without randomized message preparation,
as the additional message randomization does not offer security advantages. See <xref target="Lys22"/> and
<xref target="message-entropy"/> for more information. For all other applications, the variants that use the
randomized preparation function protect clients from malicious signers. A
verifier that accepts randomized messages needs to remove the random component from the signed
part of messages before processing.</t>
      <t>Applications that require deterministic signatures can use the RSABSSA-SHA384-PSSZERO-Deterministic
variant, but only if their input messages have high entropy. Applications that use
RSABSSA-SHA384-PSSZERO-Deterministic SHOULD carefully analyze the security implications,
taking into account the possibility of adversarially generated signer keys as described in
<xref target="message-entropy"/>. When it is not clear whether an application requires deterministic or
randomized signatures, applications SHOULD use one of the variants with randomized message preparation.</t>
    </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 SHOULD
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 RECOMMENDED method for generating the server signing key pair is as specified in FIPS 186-4
<xref target="DSS"/>.</t>
        <t>A server signing key MUST NOT be reused for any other protocol beyond RSABSSA. Moreover, a
server signing key MUST NOT be reused for different RSABSSA encoding options. That is,
if a server supports two different encoding options, then it MUST have a distinct key
pair for each option.</t>
        <t>If the server public key is carried in an X.509 certificate, it MUST use the RSASSA-PSS
OID <xref target="RFC5756"/>. It MUST NOT use the rsaEncryption OID <xref target="RFC5280"/>.</t>
      </section>
    </section>
    <section anchor="sec-considerations">
      <name>Security Considerations</name>
      <t>Lysyanskaya proved one-more-forgery polynomial security of RSABSSA variants in the random
oracle model under the one-more-RSA assumption in <xref target="Lys22"/>. This means the adversary
cannot output n+1 valid message and signature tuples, where all messages are distinct, after
interacting with the server (signer) as a client only n times, for some n which is polynomial
in the protocol's security parameter.
Lysyanskaya also proved that the RSABSSA variants which use the PrepareRandomize function
achieve blindness in <xref target="Lys22"/>. Blindness means that the malicious signer learns nothing
about the client input and output after the protocol execution. However, additional assumptions on the message
inputs are required for blindness to hold for RSABSSA variants that use the PrepareIdentity
function; see <xref target="message-entropy"/> for more discussion on those results.</t>
      <section anchor="timing-side-channels-and-fault-attacks">
        <name>Timing Side Channels and Fault Attacks</name>
        <t>BlindSign is functionally a remote procedure call for applying the RSA private
key operation. As such, side channel resistance is paramount to protect the private key
from exposure <xref target="RemoteTimingAttacks"/>. Implementations SHOULD implement some form of
side channel attack mitigation, such as RSA blinding as described in Section 10 of
<xref target="TimingAttacks"/>. Failure to apply such mitigations can
lead to side channel attacks that leak the private signing key.</t>
        <t>Moreover, we assume that the server does not initiate the protocol and therefore has
no knowledge of when the Prepare and Blind operations take place. If this were not the
case, additional side-channel mitigations might be required to prevent timing side
channels through Prepare and Blind.</t>
        <t>Beyond timing side channels, <xref target="FAULTS"/> describes the importance
of implementation safeguards that protect against fault attacks that can also leak the
private signing key. These safeguards require that implementations check that the result
of the private key operation when signing is correct, i.e., given s = RSASP1(sk, m),
verify that m = RSAVP1(pk, s), as is required by BlindSign. Applying this (or equivalent)
safeguard is necessary to mitigate fault attacks, even for implementations that are not
based on the Chinese remainder theorem.</t>
      </section>
      <section anchor="message-robustness">
        <name>Message Robustness</name>
        <t>An essential property of blind signature protocols is that the signer learns nothing of the message
being signed. In some circumstances, this may raise concerns of arbitrary signing oracles. Applications
using blind signature protocols should take precautions to ensure that such oracles do not cause
cross-protocol attacks. Ensuring that the signing key used for RSABSSA is distinct from other protocols
prevents such cross-protocol attacks.</t>
        <t>An alternative solution to this problem of message blindness is to give signers proof that the
message being signed is well-structured. Depending on the application, zero knowledge proofs
could be useful for this purpose. Defining such a proof is out of scope for this document.</t>
        <t>Verifiers should check that, in addition to signature validity, the signed message is
well-structured for the relevant application. For example, if an application of this protocol
requires messages to be structures of a particular form, then verifiers should check that
messages adhere to this form.</t>
      </section>
      <section anchor="message-entropy">
        <name>Message Entropy</name>
        <t>As discussed in <xref target="Lys22"/>, a malicious signer can construct an invalid public key and use
it to learn information about low-entropy input messages. Note that some invalid public
keys may not yield valid signatures when run with the protocol, e.g., because the signature
fails to verify. However, if an attacker can coerce the client to use these invalid public
keys with low-entropy inputs, they can learn information about the client inputs before
the protocol completes.</t>
        <t>A client that uses this protocol might be vulnerable to attack from a malicious signer
unless it is able to ensure that either:</t>
        <ol spacing="normal" type="1"><li>The client has proof that the signer's public key is honestly generated. <xref target="GRSB19"/> presents
  some (non-interactive) honest-verifier zero-knowledge proofs of various statements about the
  public key.</li>
          <li>The input message has a value that the signer is unable to guess. That is, the client has
  added a high-entropy component that was not available to the signer prior to them choosing
  their signing key.</li>
        </ol>
        <t>The named variants that use the PrepareRandomize function -- RSABSSA-SHA384-PSS-Randomized and
RSABSSA-SHA384-PSSZERO-Randomized -- explicitly inject fresh entropy alongside each message
to satisfy condition (2). As such, these variants are safe for all application use cases.</t>
        <t>Note that these variants effectively mean that the resulting signature is always randomized.
As such, this interface is not suitable for applications that require deterministic signatures.</t>
      </section>
      <section anchor="randomness-generation">
        <name>Randomness Generation</name>
        <t>All random values in the protocol, including the salt, message randomizer prefix, and random blind
value in <tt>Blind</tt>, MUST be generated from a cryptographically secure random number generator <xref target="RFC4086"/>.
If these values are not generated randomly, or are otherwise constructed maliciously, it might be
possible for them to encode information that is not present in the signed message. For example,
the PSS salt might be maliciously constructed to encode the local IP address of the client. As a result,
implementations SHOULD NOT allow clients to provide these values directly.</t>
        <t>Note that malicious implementations could also encode client information in the message being signed,
but since clients can verify the resulting message signature using the public key this can be detected.</t>
      </section>
      <section anchor="key-substitution-attacks">
        <name>Key Substitution Attacks</name>
        <t>RSA is well known to permit key substitution attacks, wherein an attacker generates a key pair
(skA, pkA) that verifies some known (message, signature) pair produced under a different (sk, pk)
key pair <xref target="WM99"/>. This means it may be possible for an attacker to use a (message, signature) pair
from one context in another. Entities that verify signatures must take care to ensure a
(message, signature) pair verifies with a valid public key from the expected issuer.</t>
      </section>
      <section anchor="alternative-rsa-encoding-functions">
        <name>Alternative RSA Encoding Functions</name>
        <t>This document document uses PSS encoding as specified in <xref target="RFC8017"/> for a number of
reasons. First, it is recommended in recent standards, including TLS 1.3 <xref target="RFC8446"/>,
X.509v3 <xref target="RFC4055"/>, and even PKCS#1 itself. According to <xref target="RFC8017"/>, "Although no
attacks are known against RSASSA-PKCS#1 v1.5, in the interest of increased robustness,
RSA-PSS <xref target="RFC8017"/> is recommended for eventual adoption in new applications." While RSA-PSS is
more complex than RSASSA-PKCS#1 v1.5 encoding, ubiquity of RSA-PSS support influenced
the design decision in this draft, despite PKCS#1 v1.5 having equivalent security
properties for digital signatures <xref target="JKM18"/>.</t>
        <t>Full Domain Hash (FDH) <xref target="RSA-FDH"/> encoding is also possible, and this variant has
equivalent security to PSS <xref target="KK18"/>. However, FDH is
less standard and not used widely in related technologies. Moreover, FDH is
deterministic, whereas PSS supports deterministic and probabilistic encodings.</t>
      </section>
      <section anchor="post-quantum-readiness">
        <name>Post-Quantum Readiness</name>
        <t>The blind signature protocol specified in this document is not post-quantum ready since it
is based on RSA. Shor's polynomial-time factorization algorithm readily applies.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document makes no IANA requests.</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="GoogleVPN" target="https://one.google.com/about/vpn/howitworks">
          <front>
            <title>VPN by Google One White Paper</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ApplePrivateRelay" target="https://www.apple.com/icloud/docs/iCloud_Private_Relay_Overview_Dec2021.pdf">
          <front>
            <title>iCloud Private Relay Overview</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="PrettyGoodPhonePrivacy" target="https://www.usenix.org/conference/usenixsecurity21/presentation/schmitt">
          <front>
            <title>Pretty Good Phone Privacy</title>
            <author initials="P." surname="Schmitt">
              <organization/>
            </author>
            <author initials="B." surname="Raghavan">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="WM99">
          <front>
            <title>Unknown key-share attacks on the station-to-station (STS) protocol</title>
            <author initials="S." surname="Blake-Wilson">
              <organization/>
            </author>
            <author initials="A." surname="Menezes">
              <organization/>
            </author>
            <date year="1999" month="October"/>
          </front>
          <refcontent>International Workshop on Public Key Cryptography</refcontent>
        </reference>
        <reference anchor="KLRX20" target="https://eprint.iacr.org/2020/1071">
          <front>
            <title>On Pairing-Free Blind Signature Schemes in the Algebraic Group Model</title>
            <author initials="J." surname="Kastner">
              <organization/>
            </author>
            <author initials="J." surname="Loss">
              <organization/>
            </author>
            <author initials="M." surname="Rosenberg">
              <organization/>
            </author>
            <author initials="J." surname="Xu">
              <organization/>
            </author>
            <date year="2020" month="September"/>
          </front>
        </reference>
        <reference anchor="JKK14" target="https://eprint.iacr.org/2014/650">
          <front>
            <title>Round-Optimal Password-Protected Secret Sharing and T-PAKE in the Password-Only model</title>
            <author initials="S." surname="Jarecki">
              <organization>UC Irvine, CA, USA</organization>
            </author>
            <author initials="A." surname="Kiayias">
              <organization>University of Athens, Greece</organization>
            </author>
            <author initials="H." surname="Krawczyk">
              <organization>IBM Research, NY, USA</organization>
            </author>
            <date year="2014" month="August"/>
          </front>
        </reference>
        <reference anchor="Lys22" target="https://eprint.iacr.org/2022/895">
          <front>
            <title>Security Analysis of RSA-BSSA</title>
            <author initials="A." surname="Lysyanskaya">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="BLS-Proposal" target="https://mailarchive.ietf.org/arch/msg/privacy-pass/BDOOhSLwB3uUJcfBiss6nUF5sUA/">
          <front>
            <title>[Privacy-pass] External verifiability: a concrete proposal</title>
            <author initials="W." surname="Ladd">
              <organization/>
            </author>
            <date year="2020" month="July"/>
          </front>
        </reference>
        <reference anchor="PolytimeROS" target="https://eprint.iacr.org/2020/945">
          <front>
            <title>On the (in)security of ROS</title>
            <author initials="F." surname="Benhamouda">
              <organization/>
            </author>
            <author initials="T." surname="Lepoint">
              <organization/>
            </author>
            <author initials="J." surname="Loss">
              <organization/>
            </author>
            <author initials="M." surname="Orru">
              <organization/>
            </author>
            <author initials="M." surname="Raykova">
              <organization/>
            </author>
            <date year="2020" month="July"/>
          </front>
        </reference>
        <reference anchor="RSA-FDH" target="https://cseweb.ucsd.edu/~mihir/papers/ro.pdf">
          <front>
            <title>Random Oracles are Practical: A Paradigm for Designing Efficient Protocols</title>
            <author initials="M." surname="Bellare">
              <organization/>
            </author>
            <author initials="P." surname="Rogaway">
              <organization/>
            </author>
            <date year="1995" month="October"/>
          </front>
        </reference>
        <reference anchor="Chaum83" target="http://sceweb.sce.uhcl.edu/yang/teaching/csci5234WebSecurityFall2011/Chaum-blind-signatures.PDF">
          <front>
            <title>Blind Signatures for Untraceable Payments</title>
            <author initials="D." surname="Chaum">
              <organization>University of California, Santa Barbara, USA</organization>
            </author>
            <date year="1983"/>
          </front>
        </reference>
        <reference anchor="RemoteTimingAttacks" target="https://crypto.stanford.edu/~dabo/papers/ssl-timing.pdf">
          <front>
            <title>Remote Timing Attacks are Practical</title>
            <author initials="D." surname="Boneh">
              <organization>Stanford University</organization>
            </author>
            <author initials="D." surname="Brumley">
              <organization>Stanford University</organization>
            </author>
            <date year="2003" month="May"/>
          </front>
          <refcontent>12th Usenix Security Symposium</refcontent>
        </reference>
        <reference anchor="TZ22" target="https://eprint.iacr.org/2022/047">
          <front>
            <title>Short Pairing-Free Blind Signatures with Exponential Security</title>
            <author initials="S." surname="Tessaro">
              <organization>University of Washington</organization>
            </author>
            <author initials="C." surname="Zhu">
              <organization>University of Washington</organization>
            </author>
            <date year="2022" month="January"/>
          </front>
        </reference>
        <reference anchor="UProve" target="https://www.microsoft.com/en-us/research/project/u-prove/">
          <front>
            <title>U-Prove</title>
            <author initials="" surname="Microsoft">
              <organization>Microsoft</organization>
            </author>
            <date year="2012" month="February"/>
          </front>
        </reference>
        <reference anchor="GRSB19" target="https://eprint.iacr.org/2018/057.pdf">
          <front>
            <title>Efficient Noninteractive Certification of RSA Moduli and Beyond</title>
            <author initials="S." surname="Goldberg">
              <organization/>
            </author>
            <author initials="L." surname="Reyzin">
              <organization/>
            </author>
            <author initials="O." surname="Sagga">
              <organization/>
            </author>
            <author initials="F." surname="Baldimtsi">
              <organization/>
            </author>
            <date year="2019" month="October"/>
          </front>
        </reference>
        <reference anchor="VOPRF">
          <front>
            <title>Oblivious Pseudorandom Functions (OPRFs) using Prime-Order Groups</title>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Armando Faz-Hernandez" initials="A." surname="Faz-Hernandez">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <date day="21" month="February" year="2023"/>
            <abstract>
              <t>   An Oblivious Pseudorandom Function (OPRF) is a two-party protocol
   between client and server for computing the output of a Pseudorandom
   Function (PRF).  The server provides the PRF private key, and the
   client provides the PRF input.  At the end of the protocol, the
   client learns the PRF output without learning anything about the PRF
   private key, and the server learns neither the PRF input nor output.
   An OPRF can also satisfy a notion of 'verifiability', called a VOPRF.
   A VOPRF ensures clients can verify that the server used a specific
   private key during the execution of the protocol.  A VOPRF can also
   be partially-oblivious, called a POPRF.  A POPRF allows clients and
   servers to provide public input to the PRF computation.  This
   document specifies an OPRF, VOPRF, and POPRF instantiated within
   standard prime-order groups, including elliptic curves.  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-voprf-21"/>
        </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="Armando Faz-Hernandez" initials="A." surname="Faz-Hernandez">
              <organization>Cloudflare</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="6" month="March" 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-10"/>
        </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>
        <reference anchor="TimingAttacks">
          <front>
            <title>Timing Attacks on Implementations of Diffie-Hellman, RSA, DSS, and Other Systems</title>
            <author fullname="Paul C. Kocher" initials="P." surname="Kocher">
              <organization/>
            </author>
            <date year="1996"/>
          </front>
          <seriesInfo name="Advances in Cryptology - CRYPTO '96" value="pp. 104-113"/>
          <seriesInfo name="DOI" value="10.1007/3-540-68697-5_9"/>
        </reference>
        <reference anchor="FAULTS">
          <front>
            <title>On the Importance of Checking Cryptographic Protocols for Faults</title>
            <author fullname="Dan Boneh" initials="D." surname="Boneh">
              <organization/>
            </author>
            <author fullname="Richard A. DeMillo" initials="R." surname="DeMillo">
              <organization/>
            </author>
            <author fullname="Richard J. Lipton" initials="R." surname="Lipton">
              <organization/>
            </author>
            <date year="1997"/>
          </front>
          <seriesInfo name="Advances in Cryptology - EUROCRYPT '97" value="pp. 37-51"/>
          <seriesInfo name="DOI" value="10.1007/3-540-69053-0_4"/>
        </reference>
        <reference anchor="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC4055">
          <front>
            <title>Additional Algorithms and Identifiers for RSA Cryptography for use in the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <author fullname="J. Schaad" initials="J." surname="Schaad"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>This document supplements RFC 3279.  It describes the conventions for using the RSA Probabilistic Signature Scheme (RSASSA-PSS) signature algorithm, the RSA Encryption Scheme - Optimal Asymmetric Encryption Padding (RSAES-OAEP) key transport algorithm and additional one-way hash functions with the Public-Key Cryptography Standards (PKCS) #1 version 1.5 signature algorithm in the Internet X.509 Public Key Infrastructure (PKI).  Encoding formats, algorithm identifiers, and parameter formats are specified. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4055"/>
          <seriesInfo name="DOI" value="10.17487/RFC4055"/>
        </reference>
        <reference anchor="JKM18">
          <front>
            <title>On the Security of the PKCS#1 v1.5 Signature Scheme</title>
            <author fullname="Tibor Jager" initials="T." surname="Jager">
              <organization>Paderborn Uninversity, Paderborn, Germany</organization>
            </author>
            <author fullname="Saqib A. Kakvi" initials="S." surname="Kakvi">
              <organization>Paderborn University, Paderborn, Germany</organization>
            </author>
            <author fullname="Alexander May" initials="A." surname="May">
              <organization>Ruhr-University Bochum, Bochum, Germany</organization>
            </author>
            <date month="October" year="2018"/>
          </front>
          <seriesInfo name="Proceedings of the 2018 ACM SIGSAC Conference on Computer and Communications" value="Security"/>
          <seriesInfo name="DOI" value="10.1145/3243734.3243798"/>
        </reference>
        <reference anchor="KK18">
          <front>
            <title>Optimal Security Proofs for Full Domain Hash, Revisited</title>
            <author fullname="Saqib A. Kakvi" initials="S." surname="Kakvi">
              <organization/>
            </author>
            <author fullname="Eike Kiltz" initials="E." surname="Kiltz">
              <organization/>
            </author>
            <date month="April" year="2017"/>
          </front>
          <seriesInfo name="Journal of Cryptology" value="vol. 31, no. 1, pp. 276-306"/>
          <seriesInfo name="DOI" value="10.1007/s00145-017-9257-9"/>
        </reference>
      </references>
    </references>
    <?line 655?>

<section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>This section includes test vectors for the blind signature protocol defined in <xref target="core-protocol"/>.
The following parameters are specified for each test vector:</t>
      <ul spacing="normal">
        <li>p, q, n, e, d: RSA private and public key (sk and pk) 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>msg_prefix: Message randomizer prefix, encoded as a hexadecimal string. This is only present for variants
that use the randomization preparation function.</li>
        <li>random_msg: The message actually signed. If the variant does not use the randomization preparation
function, this is equal to msg.</li>
        <li>salt: Randomly-generated salt used when computing the signature. The length is either 48 or 0 bytes.</li>
        <li>encoded_msg: EMSA-PSS encoded message. The mask generation function is MGF1 with SHA-384.</li>
        <li>inv: The message blinding inverse, encoded as a hexadecimal string.</li>
        <li>blinded_msg, blind_sig: The protocol values exchanged during the computation,
encoded as hexadecimal strings.</li>
        <li>sig: The output message signature.</li>
      </ul>
      <section anchor="rsabssa-sha384-pss-randomized-test-vector">
        <name>RSABSSA-SHA384-PSS-Randomized Test Vector</name>
        <artwork><![CDATA[
p = e1f4d7a34802e27c7392a3cea32a262a34dc3691bd87f3f310dc756734889305
59c120fd0410194fb8a0da55bd0b81227e843fdca6692ae80e5a5d414116d4803fca
7d8c30eaaae57e44a1816ebb5c5b0606c536246c7f11985d731684150b63c9a3ad9e
41b04c0b5b27cb188a692c84696b742a80d3cd00ab891f2457443dadfeba6d6daf10
8602be26d7071803c67105a5426838e6889d77e8474b29244cefaf418e381b312048
b457d73419213063c60ee7b0d81820165864fef93523c9635c22210956e53a8d9632
2493ffc58d845368e2416e078e5bcb5d2fd68ae6acfa54f9627c42e84a9d3f277401
7e32ebca06308a12ecc290c7cd1156dcccfb2311
q = c601a9caea66dc3835827b539db9df6f6f5ae77244692780cd334a006ab353c8
06426b60718c05245650821d39445d3ab591ed10a7339f15d83fe13f6a3dfb20b945
2c6a9b42eaa62a68c970df3cadb2139f804ad8223d56108dfde30ba7d367e9b0a7a8
0c4fdba2fd9dde6661fc73fc2947569d2029f2870fc02d8325acf28c9afa19ecf962
daa7916e21afad09eb62fe9f1cf91b77dc879b7974b490d3ebd2e95426057f35d0a3
c9f45f79ac727ab81a519a8b9285932d9b2e5ccd347e59f3f32ad9ca359115e7da00
8ab7406707bd0e8e185a5ed8758b5ba266e8828f8d863ae133846304a2936ad7bc7c
9803879d2fc4a28e69291d73dbd799f8bc238385
n = aec4d69addc70b990ea66a5e70603b6fee27aafebd08f2d94cbe1250c556e047
a928d635c3f45ee9b66d1bc628a03bac9b7c3f416fe20dabea8f3d7b4bbf7f963be3
35d2328d67e6c13ee4a8f955e05a3283720d3e1f139c38e43e0338ad058a9495c533
77fc35be64d208f89b4aa721bf7f7d3fef837be2a80e0f8adf0bcd1eec5bb040443a
2b2792fdca522a7472aed74f31a1ebe1eebc1f408660a0543dfe2a850f106a617ec6
685573702eaaa21a5640a5dcaf9b74e397fa3af18a2f1b7c03ba91a6336158de420d
63188ee143866ee415735d155b7c2d854d795b7bc236cffd71542df34234221a0413
e142d8c61355cc44d45bda94204974557ac2704cd8b593f035a5724b1adf442e78c5
42cd4414fce6f1298182fb6d8e53cef1adfd2e90e1e4deec52999bdc6c29144e8d52
a125232c8c6d75c706ea3cc06841c7bda33568c63a6c03817f722b50fcf898237d78
8a4400869e44d90a3020923dc646388abcc914315215fcd1bae11b1c751fd52443aa
c8f601087d8d42737c18a3fa11ecd4131ecae017ae0a14acfc4ef85b83c19fed33cf
d1cd629da2c4c09e222b398e18d822f77bb378dea3cb360b605e5aa58b20edc29d00
0a66bd177c682a17e7eb12a63ef7c2e4183e0d898f3d6bf567ba8ae84f84f1d23bf8
b8e261c3729e2fa6d07b832e07cddd1d14f55325c6f924267957121902dc19b3b329
48bdead5
e = 10001
d = d43242aefe1fb2c13fbc66e20b678c4336d20b1808c558b6e62ad16a28707718
0b177e1f01b12f9c6cd6c52630257ccef26a45135a990928773f3bd2fc01a313f1da
c97a51cec71cb1fd7efc7adffdeb05f1fb04812c924ed7f4a8269925dad88bd7dcfb
c4ef01020ebfc60cb3e04c54f981fdbd273e69a8a58b8ceb7c2d83fbcbd6f784d052
201b88a9848186f2a45c0d2826870733e6fd9aa46983e0a6e82e35ca20a439c5ee7b
502a9062e1066493bdadf8b49eb30d9558ed85abc7afb29b3c9bc644199654a46766
81af4babcea4e6f71fe4565c9c1b85d9985b84ec1abf1a820a9bbebee0df1398aae2
c85ab580a9f13e7743afd3108eb32100b870648fa6bc17e8abac4d3c99246b1f0ea9
f7f93a5dd5458c56d9f3f81ff2216b3c3680a13591673c43194d8e6fc93fc1e37ce2
986bd628ac48088bc723d8fbe293861ca7a9f4a73e9fa63b1b6d0074f5dea2a624c5
249ff3ad811b6255b299d6bc5451ba7477f19c5a0db690c3e6476398b1483d10314a
fd38bbaf6e2fbdbcd62c3ca9797a420ca6034ec0a83360a3ee2adf4b9d4ba29731d1
31b099a38d6a23cc463db754603211260e99d19affc902c915d7854554aabf608e3a
c52c19b8aa26ae042249b17b2d29669b5c859103ee53ef9bdc73ba3c6b537d5c34b6
d8f034671d7f3a8a6966cc4543df223565343154140fd7391c7e7be03e241f4ecfeb
877a051
msg = 8f3dc6fb8c4a02f4d6352edf0907822c1210a9b32f9bdda4c45a698c80023a
a6b59f8cfec5fdbb36331372ebefedae7d
msg_prefix = 190db6270a235a568a5f397012c635cb5603f9ec1498e8ab2cf4908
c00a0cc20
random_msg = 190db6270a235a568a5f397012c635cb5603f9ec1498e8ab2cf4908
c00a0cc208f3dc6fb8c4a02f4d6352edf0907822c1210a9b32f9bdda4c45a698c800
23aa6b59f8cfec5fdbb36331372ebefedae7d
salt = 051722b35f458781397c3a671a7d3bd3096503940e4c4f1aaa269d60300ce
449555cd7340100df9d46944c5356825abf
encoded_msg = 6e0c464d9c2f9fbc147b43570fc4f238e0d0b38870b3addcf7a421
7df912ccef17a7f629aa850f63a063925f312d61d6437be954b45025e8282f9c0b11
31bc8ff19a8a928d859b37113db1064f92a27f64761c181c1e1f9b251ae5a2f8a404
7573b67a270584e089beadcb13e7c82337797119712e9b849ff56e04385d144d3ca9
d8d92bf78adb20b5bbeb3685f17038ec6afade3ef354429c51c687b45a7018ee3a69
66b3af15c9ba8f40e6461ba0a17ef5a799672ad882bab02b518f9da7c1a962945c2e
9b0f02f29b31b9cdf3e633f9d9d2a22e96e1de28e25241ca7dd04147112f57897340
3e0f4fd80865965475d22294f065e17a1c4a201de93bd14223e6b1b999fd548f2f75
9f52db71964528b6f15b9c2d7811f2a0a35d534b8216301c47f4f04f412cae142b48
c4cdff78bc54df690fd43142d750c671dd8e2e938e6a440b2f825b6dbb3e19f1d7a3
c0150428a47948037c322365b7fe6fe57ac88d8f80889e9ff38177bad8c8d8d98db4
2908b389cb59692a58ce275aa15acb032ca951b3e0a3404b7f33f655b7c7d83a2f8d
1b6bbff49d5fcedf2e030e80881aa436db27a5c0dea13f32e7d460dbf01240c2320c
2bb5b3225b17145c72d61d47c8f84d1e19417ebd8ce3638a82d395cc6f7050b6209d
9283dc7b93fecc04f3f9e7f566829ac41568ef799480c733c09759aa9734e2013d76
40dc6151018ea902bc
inv = 80682c48982407b489d53d1261b19ec8627d02b8cda5336750b8cee332ae26
0de57b02d72609c1e0e9f28e2040fc65b6f02d56dbd6aa9af8fde656f70495dfb723
ba01173d4707a12fddac628ca29f3e32340bd8f7ddb557cf819f6b01e445ad96f874
ba235584ee71f6581f62d4f43bf03f910f6510deb85e8ef06c7f09d9794a008be7ff
2529f0ebb69decef646387dc767b74939265fec0223aa6d84d2a8a1cc912d5ca25b4
e144ab8f6ba054b54910176d5737a2cff011da431bd5f2a0d2d66b9e70b39f4b050e
45c0d9c16f02deda9ddf2d00f3e4b01037d7029cd49c2d46a8e1fc2c0c17520af1f4
b5e25ba396afc4cd60c494a4c426448b35b49635b337cfb08e7c22a39b256dd032c0
0adddafb51a627f99a0e1704170ac1f1912e49d9db10ec04c19c58f420212973e0cb
329524223a6aa56c7937c5dffdb5d966b6cd4cbc26f3201dd25c80960a1a111b3294
7bb78973d269fac7f5186530930ed19f68507540eed9e1bab8b00f00d8ca09b3f099
aae46180e04e3584bd7ca054df18a1504b89d1d1675d0966c4ae1407be325cdf623c
f13ff13e4a28b594d59e3eadbadf6136eee7a59d6a444c9eb4e2198e8a974f27a39e
b63af2c9af3870488b8adaad444674f512133ad80b9220e09158521614f1faadfe85
05ef57b7df6813048603f0dd04f4280177a11380fbfc861dbcbd7418d62155248dad
5fdec0991f
blinded_msg = 10c166c6a711e81c46f45b18e5873cc4f494f003180dd7f115585d
871a28930259654fe28a54dab319cc5011204c8373b50a57b0fdc7a678bd74c52325
9dfe4fd5ea9f52f170e19dfa332930ad1609fc8a00902d725cfe50685c95e5b2968c
9a2828a21207fcf393d15f849769e2af34ac4259d91dfd98c3a707c509e1af55647e
faa31290ddf48e0133b798562af5eabd327270ac2fb6c594734ce339a14ea4fe1b9a
2f81c0bc230ca523bda17ff42a377266bc2778a274c0ae5ec5a8cbbe364fcf0d2403
f7ee178d77ff28b67a20c7ceec009182dbcaa9bc99b51ebbf13b7d542be337172c64
74f2cd3561219fe0dfa3fb207cff89632091ab841cf38d8aa88af6891539f263adb8
eac6402c41b6ebd72984e43666e537f5f5fe27b2b5aa114957e9a580730308a5f5a9
c63a1eb599f093ab401d0c6003a451931b6d124180305705845060ebba6b0036154f
cef3e5e9f9e4b87e8f084542fd1dd67e7782a5585150181c01eb6d90cb9588383738
4a5b91dbb606f266059ecc51b5acbaa280e45cfd2eec8cc1cdb1b7211c8e14805ba6
83f9b78824b2eb005bc8a7d7179a36c152cb87c8219e5569bba911bb32a1b923ca83
de0e03fb10fba75d85c55907dda5a2606bf918b056c3808ba496a4d95532212040a5
f44f37e1097f26dc27b98a51837daa78f23e532156296b64352669c94a8a855acf30
533d8e0594ace7c442
blind_sig = 364f6a40dbfbc3bbb257943337eeff791a0f290898a6791283bba581
d9eac90a6376a837241f5f73a78a5c6746e1306ba3adab6067c32ff69115734ce014
d354e2f259d4cbfb890244fd451a497fe6ecf9aa90d19a2d441162f7eaa7ce3fc4e8
9fd4e76b7ae585be2a2c0fd6fb246b8ac8d58bcb585634e30c9168a434786fe5e0b7
4bfe8187b47ac091aa571ffea0a864cb906d0e28c77a00e8cd8f6aba4317a8cc7bf3
2ce566bd1ef80c64de041728abe087bee6cadd0b7062bde5ceef308a23bd1ccc154f
d0c3a26110df6193464fc0d24ee189aea8979d722170ba945fdcce9b1b4b63349980
f3a92dc2e5418c54d38a862916926b3f9ca270a8cf40dfb9772bfbdd9a3e0e089236
9c18249211ba857f35963d0e05d8da98f1aa0c6bba58f47487b8f663e395091275f8
2941830b050b260e4767ce2fa903e75ff8970c98bfb3a08d6db91ab1746c86420ee2
e909bf681cac173697135983c3594b2def673736220452fde4ddec867d40ff42dd3d
a36c84e3e52508b891a00f50b4f62d112edb3b6b6cc3dbd546ba10f36b03f06c0d82
aeec3b25e127af545fac28e1613a0517a6095ad18a98ab79f68801e05c175e15bae2
1f821e80c80ab4fdec6fb34ca315e194502b8f3dcf7892b511aee45060e3994cd15e
003861bc7220a2babd7b40eda03382548a34a7110f9b1779bf3ef6011361611e6bc5
c0dc851e1509de1a
sig = 6fef8bf9bc182cd8cf7ce45c7dcf0e6f3e518ae48f06f3c670c649ac737a8b
8119a34d51641785be151a697ed7825fdfece82865123445eab03eb4bb91cecf4d69
51738495f8481151b62de869658573df4e50a95c17c31b52e154ae26a04067d5ecdc
1592c287550bb982a5bb9c30fd53a768cee6baabb3d483e9f1e2da954c7f4cf492fe
3944d2fe456c1ecaf0840369e33fb4010e6b44bb1d721840513524d8e9a3519f40d1
b81ae34fb7a31ee6b7ed641cb16c2ac999004c2191de0201457523f5a4700dd64926
7d9286f5c1d193f1454c9f868a57816bf5ff76c838a2eeb616a3fc9976f65d4371de
ecfbab29362caebdff69c635fe5a2113da4d4d8c24f0b16a0584fa05e80e607c5d9a
2f765f1f069f8d4da21f27c2a3b5c984b4ab24899bef46c6d9323df4862fe51ce300
fca40fb539c3bb7fe2dcc9409e425f2d3b95e70e9c49c5feb6ecc9d43442c33d5000
3ee936845892fb8be475647da9a080f5bc7f8a716590b3745c2209fe05b17992830c
e15f32c7b22cde755c8a2fe50bd814a0434130b807dc1b7218d4e85342d70695a5d7
f29306f25623ad1e8aa08ef71b54b8ee447b5f64e73d09bdd6c3b7ca224058d7c67c
c7551e9241688ada12d859cb7646fbd3ed8b34312f3b49d69802f0eaa11bc4211c2f
7a29cd5c01ed01a39001c5856fab36228f5ee2f2e1110811872fe7c865c42ed59029
c706195d52
]]></artwork>
      </section>
      <section anchor="rsabssa-sha384-psszero-randomized-test-vector">
        <name>RSABSSA-SHA384-PSSZERO-Randomized Test Vector</name>
        <artwork><![CDATA[
p = e1f4d7a34802e27c7392a3cea32a262a34dc3691bd87f3f310dc756734889305
59c120fd0410194fb8a0da55bd0b81227e843fdca6692ae80e5a5d414116d4803fca
7d8c30eaaae57e44a1816ebb5c5b0606c536246c7f11985d731684150b63c9a3ad9e
41b04c0b5b27cb188a692c84696b742a80d3cd00ab891f2457443dadfeba6d6daf10
8602be26d7071803c67105a5426838e6889d77e8474b29244cefaf418e381b312048
b457d73419213063c60ee7b0d81820165864fef93523c9635c22210956e53a8d9632
2493ffc58d845368e2416e078e5bcb5d2fd68ae6acfa54f9627c42e84a9d3f277401
7e32ebca06308a12ecc290c7cd1156dcccfb2311
q = c601a9caea66dc3835827b539db9df6f6f5ae77244692780cd334a006ab353c8
06426b60718c05245650821d39445d3ab591ed10a7339f15d83fe13f6a3dfb20b945
2c6a9b42eaa62a68c970df3cadb2139f804ad8223d56108dfde30ba7d367e9b0a7a8
0c4fdba2fd9dde6661fc73fc2947569d2029f2870fc02d8325acf28c9afa19ecf962
daa7916e21afad09eb62fe9f1cf91b77dc879b7974b490d3ebd2e95426057f35d0a3
c9f45f79ac727ab81a519a8b9285932d9b2e5ccd347e59f3f32ad9ca359115e7da00
8ab7406707bd0e8e185a5ed8758b5ba266e8828f8d863ae133846304a2936ad7bc7c
9803879d2fc4a28e69291d73dbd799f8bc238385
n = aec4d69addc70b990ea66a5e70603b6fee27aafebd08f2d94cbe1250c556e047
a928d635c3f45ee9b66d1bc628a03bac9b7c3f416fe20dabea8f3d7b4bbf7f963be3
35d2328d67e6c13ee4a8f955e05a3283720d3e1f139c38e43e0338ad058a9495c533
77fc35be64d208f89b4aa721bf7f7d3fef837be2a80e0f8adf0bcd1eec5bb040443a
2b2792fdca522a7472aed74f31a1ebe1eebc1f408660a0543dfe2a850f106a617ec6
685573702eaaa21a5640a5dcaf9b74e397fa3af18a2f1b7c03ba91a6336158de420d
63188ee143866ee415735d155b7c2d854d795b7bc236cffd71542df34234221a0413
e142d8c61355cc44d45bda94204974557ac2704cd8b593f035a5724b1adf442e78c5
42cd4414fce6f1298182fb6d8e53cef1adfd2e90e1e4deec52999bdc6c29144e8d52
a125232c8c6d75c706ea3cc06841c7bda33568c63a6c03817f722b50fcf898237d78
8a4400869e44d90a3020923dc646388abcc914315215fcd1bae11b1c751fd52443aa
c8f601087d8d42737c18a3fa11ecd4131ecae017ae0a14acfc4ef85b83c19fed33cf
d1cd629da2c4c09e222b398e18d822f77bb378dea3cb360b605e5aa58b20edc29d00
0a66bd177c682a17e7eb12a63ef7c2e4183e0d898f3d6bf567ba8ae84f84f1d23bf8
b8e261c3729e2fa6d07b832e07cddd1d14f55325c6f924267957121902dc19b3b329
48bdead5
e = 10001
d = d43242aefe1fb2c13fbc66e20b678c4336d20b1808c558b6e62ad16a28707718
0b177e1f01b12f9c6cd6c52630257ccef26a45135a990928773f3bd2fc01a313f1da
c97a51cec71cb1fd7efc7adffdeb05f1fb04812c924ed7f4a8269925dad88bd7dcfb
c4ef01020ebfc60cb3e04c54f981fdbd273e69a8a58b8ceb7c2d83fbcbd6f784d052
201b88a9848186f2a45c0d2826870733e6fd9aa46983e0a6e82e35ca20a439c5ee7b
502a9062e1066493bdadf8b49eb30d9558ed85abc7afb29b3c9bc644199654a46766
81af4babcea4e6f71fe4565c9c1b85d9985b84ec1abf1a820a9bbebee0df1398aae2
c85ab580a9f13e7743afd3108eb32100b870648fa6bc17e8abac4d3c99246b1f0ea9
f7f93a5dd5458c56d9f3f81ff2216b3c3680a13591673c43194d8e6fc93fc1e37ce2
986bd628ac48088bc723d8fbe293861ca7a9f4a73e9fa63b1b6d0074f5dea2a624c5
249ff3ad811b6255b299d6bc5451ba7477f19c5a0db690c3e6476398b1483d10314a
fd38bbaf6e2fbdbcd62c3ca9797a420ca6034ec0a83360a3ee2adf4b9d4ba29731d1
31b099a38d6a23cc463db754603211260e99d19affc902c915d7854554aabf608e3a
c52c19b8aa26ae042249b17b2d29669b5c859103ee53ef9bdc73ba3c6b537d5c34b6
d8f034671d7f3a8a6966cc4543df223565343154140fd7391c7e7be03e241f4ecfeb
877a051
msg = 8f3dc6fb8c4a02f4d6352edf0907822c1210a9b32f9bdda4c45a698c80023a
a6b59f8cfec5fdbb36331372ebefedae7d
msg_prefix = dfe133d11c7ebf54943e86f56323bd16d89a43a8d2aaaa257cbe5a9
4f59d436c
random_msg = dfe133d11c7ebf54943e86f56323bd16d89a43a8d2aaaa257cbe5a9
4f59d436c8f3dc6fb8c4a02f4d6352edf0907822c1210a9b32f9bdda4c45a698c800
23aa6b59f8cfec5fdbb36331372ebefedae7d
salt = 051722b35f458781397c3a671a7d3bd3096503940e4c4f1aaa269d60300ce
449555cd7340100df9d46944c5356825abf
encoded_msg = 6e0c464d9c2f9fbc147b43570fc4f238e0d0b38870b3addcf7a421
7df912ccef17a7f629aa850f63a063925f312d61d6437be954b45025e8282f9c0b11
31bc8ff19a8a928d859b37113db1064f92a27f64761c181c1e1f9b251ae5a2f8a404
7573b67a270584e089beadcb13e7c82337797119712e9b849ff56e04385d144d3ca9
d8d92bf78adb20b5bbeb3685f17038ec6afade3ef354429c51c687b45a7018ee3a69
66b3af15c9ba8f40e6461ba0a17ef5a799672ad882bab02b518f9da7c1a962945c2e
9b0f02f29b31b9cdf3e633f9d9d2a22e96e1de28e25241ca7dd04147112f57897340
3e0f4fd80865965475d22294f065e17a1c4a201de93bd14223e6b1b999fd548f2f75
9f52db71964528b6f15b9c2d7811f2a0a35d534b8216301c47f4f04f412cae142b48
c4cdff78bc54df690fd43142d750c671dd8e2e938e6a440b2f825b6dbb3e19f1d7a3
c0150428a47948037c322365b7fe6fe57ac88d8f80889e9ff38177bad8c8d8d98db4
2908b389cb59692a58ce275aa15acb032ca951b3e0a3404b7f33f655b7c7d83a2f8d
1b6bbff49d5fcedf2e030e80881aa436db27a5c0dea13f32e7d460dbf01240c2320c
2bb5b3225b17145c72d61d47c8f84d1e19417ebd8ce3638a82d395cc6f7050b6209d
9283dc7b93fecc04f3f9e7f566829ac41568ef799480c733c09759aa9734e2013d76
40dc6151018ea902bc
inv = 80682c48982407b489d53d1261b19ec8627d02b8cda5336750b8cee332ae26
0de57b02d72609c1e0e9f28e2040fc65b6f02d56dbd6aa9af8fde656f70495dfb723
ba01173d4707a12fddac628ca29f3e32340bd8f7ddb557cf819f6b01e445ad96f874
ba235584ee71f6581f62d4f43bf03f910f6510deb85e8ef06c7f09d9794a008be7ff
2529f0ebb69decef646387dc767b74939265fec0223aa6d84d2a8a1cc912d5ca25b4
e144ab8f6ba054b54910176d5737a2cff011da431bd5f2a0d2d66b9e70b39f4b050e
45c0d9c16f02deda9ddf2d00f3e4b01037d7029cd49c2d46a8e1fc2c0c17520af1f4
b5e25ba396afc4cd60c494a4c426448b35b49635b337cfb08e7c22a39b256dd032c0
0adddafb51a627f99a0e1704170ac1f1912e49d9db10ec04c19c58f420212973e0cb
329524223a6aa56c7937c5dffdb5d966b6cd4cbc26f3201dd25c80960a1a111b3294
7bb78973d269fac7f5186530930ed19f68507540eed9e1bab8b00f00d8ca09b3f099
aae46180e04e3584bd7ca054df18a1504b89d1d1675d0966c4ae1407be325cdf623c
f13ff13e4a28b594d59e3eadbadf6136eee7a59d6a444c9eb4e2198e8a974f27a39e
b63af2c9af3870488b8adaad444674f512133ad80b9220e09158521614f1faadfe85
05ef57b7df6813048603f0dd04f4280177a11380fbfc861dbcbd7418d62155248dad
5fdec0991f
blinded_msg = 10c166c6a711e81c46f45b18e5873cc4f494f003180dd7f115585d
871a28930259654fe28a54dab319cc5011204c8373b50a57b0fdc7a678bd74c52325
9dfe4fd5ea9f52f170e19dfa332930ad1609fc8a00902d725cfe50685c95e5b2968c
9a2828a21207fcf393d15f849769e2af34ac4259d91dfd98c3a707c509e1af55647e
faa31290ddf48e0133b798562af5eabd327270ac2fb6c594734ce339a14ea4fe1b9a
2f81c0bc230ca523bda17ff42a377266bc2778a274c0ae5ec5a8cbbe364fcf0d2403
f7ee178d77ff28b67a20c7ceec009182dbcaa9bc99b51ebbf13b7d542be337172c64
74f2cd3561219fe0dfa3fb207cff89632091ab841cf38d8aa88af6891539f263adb8
eac6402c41b6ebd72984e43666e537f5f5fe27b2b5aa114957e9a580730308a5f5a9
c63a1eb599f093ab401d0c6003a451931b6d124180305705845060ebba6b0036154f
cef3e5e9f9e4b87e8f084542fd1dd67e7782a5585150181c01eb6d90cb9588383738
4a5b91dbb606f266059ecc51b5acbaa280e45cfd2eec8cc1cdb1b7211c8e14805ba6
83f9b78824b2eb005bc8a7d7179a36c152cb87c8219e5569bba911bb32a1b923ca83
de0e03fb10fba75d85c55907dda5a2606bf918b056c3808ba496a4d95532212040a5
f44f37e1097f26dc27b98a51837daa78f23e532156296b64352669c94a8a855acf30
533d8e0594ace7c442
blind_sig = 364f6a40dbfbc3bbb257943337eeff791a0f290898a6791283bba581
d9eac90a6376a837241f5f73a78a5c6746e1306ba3adab6067c32ff69115734ce014
d354e2f259d4cbfb890244fd451a497fe6ecf9aa90d19a2d441162f7eaa7ce3fc4e8
9fd4e76b7ae585be2a2c0fd6fb246b8ac8d58bcb585634e30c9168a434786fe5e0b7
4bfe8187b47ac091aa571ffea0a864cb906d0e28c77a00e8cd8f6aba4317a8cc7bf3
2ce566bd1ef80c64de041728abe087bee6cadd0b7062bde5ceef308a23bd1ccc154f
d0c3a26110df6193464fc0d24ee189aea8979d722170ba945fdcce9b1b4b63349980
f3a92dc2e5418c54d38a862916926b3f9ca270a8cf40dfb9772bfbdd9a3e0e089236
9c18249211ba857f35963d0e05d8da98f1aa0c6bba58f47487b8f663e395091275f8
2941830b050b260e4767ce2fa903e75ff8970c98bfb3a08d6db91ab1746c86420ee2
e909bf681cac173697135983c3594b2def673736220452fde4ddec867d40ff42dd3d
a36c84e3e52508b891a00f50b4f62d112edb3b6b6cc3dbd546ba10f36b03f06c0d82
aeec3b25e127af545fac28e1613a0517a6095ad18a98ab79f68801e05c175e15bae2
1f821e80c80ab4fdec6fb34ca315e194502b8f3dcf7892b511aee45060e3994cd15e
003861bc7220a2babd7b40eda03382548a34a7110f9b1779bf3ef6011361611e6bc5
c0dc851e1509de1a
sig = 6fef8bf9bc182cd8cf7ce45c7dcf0e6f3e518ae48f06f3c670c649ac737a8b
8119a34d51641785be151a697ed7825fdfece82865123445eab03eb4bb91cecf4d69
51738495f8481151b62de869658573df4e50a95c17c31b52e154ae26a04067d5ecdc
1592c287550bb982a5bb9c30fd53a768cee6baabb3d483e9f1e2da954c7f4cf492fe
3944d2fe456c1ecaf0840369e33fb4010e6b44bb1d721840513524d8e9a3519f40d1
b81ae34fb7a31ee6b7ed641cb16c2ac999004c2191de0201457523f5a4700dd64926
7d9286f5c1d193f1454c9f868a57816bf5ff76c838a2eeb616a3fc9976f65d4371de
ecfbab29362caebdff69c635fe5a2113da4d4d8c24f0b16a0584fa05e80e607c5d9a
2f765f1f069f8d4da21f27c2a3b5c984b4ab24899bef46c6d9323df4862fe51ce300
fca40fb539c3bb7fe2dcc9409e425f2d3b95e70e9c49c5feb6ecc9d43442c33d5000
3ee936845892fb8be475647da9a080f5bc7f8a716590b3745c2209fe05b17992830c
e15f32c7b22cde755c8a2fe50bd814a0434130b807dc1b7218d4e85342d70695a5d7
f29306f25623ad1e8aa08ef71b54b8ee447b5f64e73d09bdd6c3b7ca224058d7c67c
c7551e9241688ada12d859cb7646fbd3ed8b34312f3b49d69802f0eaa11bc4211c2f
7a29cd5c01ed01a39001c5856fab36228f5ee2f2e1110811872fe7c865c42ed59029
c706195d52
]]></artwork>
      </section>
      <section anchor="rsabssa-sha384-pss-deterministic-test-vector">
        <name>RSABSSA-SHA384-PSS-Deterministic Test Vector</name>
        <artwork><![CDATA[
p = e1f4d7a34802e27c7392a3cea32a262a34dc3691bd87f3f310dc756734889305
59c120fd0410194fb8a0da55bd0b81227e843fdca6692ae80e5a5d414116d4803fca
7d8c30eaaae57e44a1816ebb5c5b0606c536246c7f11985d731684150b63c9a3ad9e
41b04c0b5b27cb188a692c84696b742a80d3cd00ab891f2457443dadfeba6d6daf10
8602be26d7071803c67105a5426838e6889d77e8474b29244cefaf418e381b312048
b457d73419213063c60ee7b0d81820165864fef93523c9635c22210956e53a8d9632
2493ffc58d845368e2416e078e5bcb5d2fd68ae6acfa54f9627c42e84a9d3f277401
7e32ebca06308a12ecc290c7cd1156dcccfb2311
q = c601a9caea66dc3835827b539db9df6f6f5ae77244692780cd334a006ab353c8
06426b60718c05245650821d39445d3ab591ed10a7339f15d83fe13f6a3dfb20b945
2c6a9b42eaa62a68c970df3cadb2139f804ad8223d56108dfde30ba7d367e9b0a7a8
0c4fdba2fd9dde6661fc73fc2947569d2029f2870fc02d8325acf28c9afa19ecf962
daa7916e21afad09eb62fe9f1cf91b77dc879b7974b490d3ebd2e95426057f35d0a3
c9f45f79ac727ab81a519a8b9285932d9b2e5ccd347e59f3f32ad9ca359115e7da00
8ab7406707bd0e8e185a5ed8758b5ba266e8828f8d863ae133846304a2936ad7bc7c
9803879d2fc4a28e69291d73dbd799f8bc238385
n = aec4d69addc70b990ea66a5e70603b6fee27aafebd08f2d94cbe1250c556e047
a928d635c3f45ee9b66d1bc628a03bac9b7c3f416fe20dabea8f3d7b4bbf7f963be3
35d2328d67e6c13ee4a8f955e05a3283720d3e1f139c38e43e0338ad058a9495c533
77fc35be64d208f89b4aa721bf7f7d3fef837be2a80e0f8adf0bcd1eec5bb040443a
2b2792fdca522a7472aed74f31a1ebe1eebc1f408660a0543dfe2a850f106a617ec6
685573702eaaa21a5640a5dcaf9b74e397fa3af18a2f1b7c03ba91a6336158de420d
63188ee143866ee415735d155b7c2d854d795b7bc236cffd71542df34234221a0413
e142d8c61355cc44d45bda94204974557ac2704cd8b593f035a5724b1adf442e78c5
42cd4414fce6f1298182fb6d8e53cef1adfd2e90e1e4deec52999bdc6c29144e8d52
a125232c8c6d75c706ea3cc06841c7bda33568c63a6c03817f722b50fcf898237d78
8a4400869e44d90a3020923dc646388abcc914315215fcd1bae11b1c751fd52443aa
c8f601087d8d42737c18a3fa11ecd4131ecae017ae0a14acfc4ef85b83c19fed33cf
d1cd629da2c4c09e222b398e18d822f77bb378dea3cb360b605e5aa58b20edc29d00
0a66bd177c682a17e7eb12a63ef7c2e4183e0d898f3d6bf567ba8ae84f84f1d23bf8
b8e261c3729e2fa6d07b832e07cddd1d14f55325c6f924267957121902dc19b3b329
48bdead5
e = 10001
d = d43242aefe1fb2c13fbc66e20b678c4336d20b1808c558b6e62ad16a28707718
0b177e1f01b12f9c6cd6c52630257ccef26a45135a990928773f3bd2fc01a313f1da
c97a51cec71cb1fd7efc7adffdeb05f1fb04812c924ed7f4a8269925dad88bd7dcfb
c4ef01020ebfc60cb3e04c54f981fdbd273e69a8a58b8ceb7c2d83fbcbd6f784d052
201b88a9848186f2a45c0d2826870733e6fd9aa46983e0a6e82e35ca20a439c5ee7b
502a9062e1066493bdadf8b49eb30d9558ed85abc7afb29b3c9bc644199654a46766
81af4babcea4e6f71fe4565c9c1b85d9985b84ec1abf1a820a9bbebee0df1398aae2
c85ab580a9f13e7743afd3108eb32100b870648fa6bc17e8abac4d3c99246b1f0ea9
f7f93a5dd5458c56d9f3f81ff2216b3c3680a13591673c43194d8e6fc93fc1e37ce2
986bd628ac48088bc723d8fbe293861ca7a9f4a73e9fa63b1b6d0074f5dea2a624c5
249ff3ad811b6255b299d6bc5451ba7477f19c5a0db690c3e6476398b1483d10314a
fd38bbaf6e2fbdbcd62c3ca9797a420ca6034ec0a83360a3ee2adf4b9d4ba29731d1
31b099a38d6a23cc463db754603211260e99d19affc902c915d7854554aabf608e3a
c52c19b8aa26ae042249b17b2d29669b5c859103ee53ef9bdc73ba3c6b537d5c34b6
d8f034671d7f3a8a6966cc4543df223565343154140fd7391c7e7be03e241f4ecfeb
877a051
msg = 8f3dc6fb8c4a02f4d6352edf0907822c1210a9b32f9bdda4c45a698c80023a
a6b59f8cfec5fdbb36331372ebefedae7d
random_msg = 8f3dc6fb8c4a02f4d6352edf0907822c1210a9b32f9bdda4c45a698
c80023aa6b59f8cfec5fdbb36331372ebefedae7d
salt =
encoded_msg = 159499b90471b496c2639ec482e99feaba525c0420c565d17dc60c
1bb1f47703f04436cceaa8f69811e1bf8546fa971226c9e71421b32b571ed5ea0e03
2269d4219b4404316eb17a58f277634aeed394b7f3888153b5bb163e40807e605daf
dd1789dd473b0846bdcb6524417bc3a35366fab4261708c0e4b4beba07a1a64bbccb
4b1ac215d1350a50a501e8e96612028b535ad731abf1f117ee07d07a4de9cef3d70f
5845ba84c29d5d92c6e66a1f9489a5f527b846825360fd6e90f40ed041c682e489f3
acde984a3ea580181418c1d15017af2657bc4b70485cdc0f1ebc3693e0d70a5d01f3
7ff640993fa071274fb9ee44e0c24dcb58ffa21a9a6540d87f24379beaafcc3b4bd4
2c45ec6820e03738ce98bea11c71685f31db63429fab8658bdb816f1ecccb1888f24
02de0bd2f0f9646decdcad4c11b41428eec1ed25f2a86d43bb04f95726bfbd98ea34
ca091b7adbabd0e28f17fa0345b89542d23c3530554987508a23641bd4f9e52962b0
bee3ac9ffe005322d26a39941c5847774300411c69635f96903e8d593530908bd92a
4fa6a2d52f88073a647a4b3894b7e4ebb80699e60227397bfa93f41b1c97e107b632
f68e70409372ead2f072c11cf99be4486fcbf763dde28ee156db26cd358a69fcb796
44f1f2fcc166f41a4c80f5851ee08be051f14b601418d6e56e61733b9b210c6bef17
edac121a754d19b9bc
inv = 80682c48982407b489d53d1261b19ec8627d02b8cda5336750b8cee332ae26
0de57b02d72609c1e0e9f28e2040fc65b6f02d56dbd6aa9af8fde656f70495dfb723
ba01173d4707a12fddac628ca29f3e32340bd8f7ddb557cf819f6b01e445ad96f874
ba235584ee71f6581f62d4f43bf03f910f6510deb85e8ef06c7f09d9794a008be7ff
2529f0ebb69decef646387dc767b74939265fec0223aa6d84d2a8a1cc912d5ca25b4
e144ab8f6ba054b54910176d5737a2cff011da431bd5f2a0d2d66b9e70b39f4b050e
45c0d9c16f02deda9ddf2d00f3e4b01037d7029cd49c2d46a8e1fc2c0c17520af1f4
b5e25ba396afc4cd60c494a4c426448b35b49635b337cfb08e7c22a39b256dd032c0
0adddafb51a627f99a0e1704170ac1f1912e49d9db10ec04c19c58f420212973e0cb
329524223a6aa56c7937c5dffdb5d966b6cd4cbc26f3201dd25c80960a1a111b3294
7bb78973d269fac7f5186530930ed19f68507540eed9e1bab8b00f00d8ca09b3f099
aae46180e04e3584bd7ca054df18a1504b89d1d1675d0966c4ae1407be325cdf623c
f13ff13e4a28b594d59e3eadbadf6136eee7a59d6a444c9eb4e2198e8a974f27a39e
b63af2c9af3870488b8adaad444674f512133ad80b9220e09158521614f1faadfe85
05ef57b7df6813048603f0dd04f4280177a11380fbfc861dbcbd7418d62155248dad
5fdec0991f
blinded_msg = 982790826556aabe6004467671a864397eea3b95740e9a11c8b80b
99ee0cf4dbc50af860bda81b601a2eceaa6943ef104f13325ad0be2e37f42030b312
0e87cfee8cfe59cde1acfb25485a43275ebe777292e2518181ae531e596f988ff16f
458daa5a42408939cbe60e7271391a21657276427d195bee6a20054101d4ceb892ec
dea402ea1a866acf0e451a3336f07e7589330d96c3883fd5bc1a829a715b618b74a8
6b2a898764246ad081d4c9f1edb8ab5077e315fde2417ec2dd33cad93e120340b49b
e89c18a63e62c6bb289037283d3bf18608be11ee4c823c710b0c6b89235fed3f03a7
b96ddd25a8f54f20dac37ce8905093ad8e066810f354fb1773236e3d3788ba755de2
c9bce8d340078bb1831ddc7314a5018673427ced65cb356281aae08b5e6636f3eb24
17e09d6ae476a9abcc410bc8c90813d0740e39ae75efae4c02eed49dbb7aa51258bb
71197445d17a6029bf566ba6b36282173af2c42e9b9631366f22eb6a19ef1d92bd3c
e0631d3a7fb3288195b0ba380a3828d5411cefd5eba83e52198c001ac9946a333a33
d89d4d235fc833239d59837f04eaf065e9563659b00c7624a6263b727d8f2c07959b
a2bb592e7ff251b8f09c85995fd2e4474e743586576b518230986b6076b762ae7708
8a37e4bffd2ef41ae68d6d4e79205290b4f76c42ef039638c41cdc6fe8af9b429c0d
ee45b2942e3861da2a
blind_sig = 362ef369f9b8c1487e285514702a7cd6fe03e4a2fb854881f3d3f986
b7742a0c9bfab6562a6cd5ed71c574af67d7e77e71b33420c08ebb0ff37886b85829
7f9562fc366066c6d8e77bad1918b04756ba03f5c385d44f06759daf1b7a38b2a642
48dee95d0e3886c8afa1f74afd8ac3c56520d0f3fd206df8e0d257312756803b09a7
9d0cc38112592c3aec32de5a9bc3284c5a0a2d0808b102deafa5cc60f04e3d71c028
4cba04f17f88aa8e07d5544fe0265807d515877f79d30ed26d522b9d9c56597647b0
dbca5a69d6418f8d1b51481723f272c2a3d48f6f4fd6beeac3576c3edb00e8779964
548aeab8e004c7c4f8ef9cb6e680e2d2d49792004bb3e6974fa48f241a361ca449c0
2bd4c0ad4e66252c55e656f16049908efe59acbafa1171895dfac64d909808e54204
69d622c7253ec1de7522b41634d383bf8786bf881cbf1561627f1e62b2d93300ec30
ec0f5f0ab32036fce068bc76b0b0c6452079537f8d7f8dcee4b42bbf2d9ad7499d38
35cd93cfc7e8ebea3554ab5241e181e5d73241b7bebf0a281b63594a35f4993e2b41
6d60db966b58b648cfcba2c4bee4c2830aae4a70ff55012480298f549c13b1b26842
77bca12f592471b8a99285174f1c0ebb38fc80e74a10b3f02ec3e6682ba873f7ff0e
1e79718b470927c74ed754d4f7c3d9a55e22246e829cdb5a1c6fb2a0a6c896df3030
63c918bcf5eb0017
sig = 4454b6983ff01cb28545329f394936efa42ed231e15efbc025fdaca00277ac
f0c8e00e3d8b0ecebd35b057b8ebfc14e1a7097368a4abd20b555894ccef3d1b9528
c6bcbda6b95376bef230d0f1feff0c1064c62c60a7ae7431d1fdfa43a81eed9235e3
63e1ffa0b2797aba6aad6082fcd285e14fc8b71de6b9c87cb4059c7dc1e96ae1e637
95a1e9af86b9073d1d848aef3eca8a03421bcd116572456b53bcfd4dabb0a9691f1f
abda3ed0ce357aee2cfee5b1a0eb226f69716d4e011d96eede5e38a9acb531a64336
a0d5b0bae3ab085b658692579a376740ff6ce69e89b06f360520b864e33d82d029c8
08248a19e18e31f0ecd16fac5cd4870f8d3ebc1c32c718124152dc905672ab0b7af4
8bf7d1ac1ff7b9c742549c91275ab105458ae37621757add83482bbcf779e777bbd6
1126e93686635d4766aedf5103cf7978f3856ccac9e28d21a850dbb03c811128616d
315d717be1c2b6254f8509acae862042c034530329ce15ca2e2f6b1f5fd59272746e
3918c748c0eb810bf76884fa10fcf749326bbfaa5ba285a0186a22e4f628dbf178d3
bb5dc7e165ca73f6a55ecc14c4f5a26c4693ce5da032264cbec319b12ddb9787d0ef
a4fcf1e5ccee35ad85ecd453182df9ed735893f830b570faae8be0f6fe2e571a4e0d
927cba4debd368d3b4fca33ec6251897a137cf75474a32ac8256df5e5ffa518b88b4
3fb6f63a24
]]></artwork>
      </section>
      <section anchor="rsabssa-sha384-psszero-deterministic-test-vector">
        <name>RSABSSA-SHA384-PSSZERO-Deterministic Test Vector</name>
        <artwork><![CDATA[
p = e1f4d7a34802e27c7392a3cea32a262a34dc3691bd87f3f310dc756734889305
59c120fd0410194fb8a0da55bd0b81227e843fdca6692ae80e5a5d414116d4803fca
7d8c30eaaae57e44a1816ebb5c5b0606c536246c7f11985d731684150b63c9a3ad9e
41b04c0b5b27cb188a692c84696b742a80d3cd00ab891f2457443dadfeba6d6daf10
8602be26d7071803c67105a5426838e6889d77e8474b29244cefaf418e381b312048
b457d73419213063c60ee7b0d81820165864fef93523c9635c22210956e53a8d9632
2493ffc58d845368e2416e078e5bcb5d2fd68ae6acfa54f9627c42e84a9d3f277401
7e32ebca06308a12ecc290c7cd1156dcccfb2311
q = c601a9caea66dc3835827b539db9df6f6f5ae77244692780cd334a006ab353c8
06426b60718c05245650821d39445d3ab591ed10a7339f15d83fe13f6a3dfb20b945
2c6a9b42eaa62a68c970df3cadb2139f804ad8223d56108dfde30ba7d367e9b0a7a8
0c4fdba2fd9dde6661fc73fc2947569d2029f2870fc02d8325acf28c9afa19ecf962
daa7916e21afad09eb62fe9f1cf91b77dc879b7974b490d3ebd2e95426057f35d0a3
c9f45f79ac727ab81a519a8b9285932d9b2e5ccd347e59f3f32ad9ca359115e7da00
8ab7406707bd0e8e185a5ed8758b5ba266e8828f8d863ae133846304a2936ad7bc7c
9803879d2fc4a28e69291d73dbd799f8bc238385
n = aec4d69addc70b990ea66a5e70603b6fee27aafebd08f2d94cbe1250c556e047
a928d635c3f45ee9b66d1bc628a03bac9b7c3f416fe20dabea8f3d7b4bbf7f963be3
35d2328d67e6c13ee4a8f955e05a3283720d3e1f139c38e43e0338ad058a9495c533
77fc35be64d208f89b4aa721bf7f7d3fef837be2a80e0f8adf0bcd1eec5bb040443a
2b2792fdca522a7472aed74f31a1ebe1eebc1f408660a0543dfe2a850f106a617ec6
685573702eaaa21a5640a5dcaf9b74e397fa3af18a2f1b7c03ba91a6336158de420d
63188ee143866ee415735d155b7c2d854d795b7bc236cffd71542df34234221a0413
e142d8c61355cc44d45bda94204974557ac2704cd8b593f035a5724b1adf442e78c5
42cd4414fce6f1298182fb6d8e53cef1adfd2e90e1e4deec52999bdc6c29144e8d52
a125232c8c6d75c706ea3cc06841c7bda33568c63a6c03817f722b50fcf898237d78
8a4400869e44d90a3020923dc646388abcc914315215fcd1bae11b1c751fd52443aa
c8f601087d8d42737c18a3fa11ecd4131ecae017ae0a14acfc4ef85b83c19fed33cf
d1cd629da2c4c09e222b398e18d822f77bb378dea3cb360b605e5aa58b20edc29d00
0a66bd177c682a17e7eb12a63ef7c2e4183e0d898f3d6bf567ba8ae84f84f1d23bf8
b8e261c3729e2fa6d07b832e07cddd1d14f55325c6f924267957121902dc19b3b329
48bdead5
e = 10001
d = d43242aefe1fb2c13fbc66e20b678c4336d20b1808c558b6e62ad16a28707718
0b177e1f01b12f9c6cd6c52630257ccef26a45135a990928773f3bd2fc01a313f1da
c97a51cec71cb1fd7efc7adffdeb05f1fb04812c924ed7f4a8269925dad88bd7dcfb
c4ef01020ebfc60cb3e04c54f981fdbd273e69a8a58b8ceb7c2d83fbcbd6f784d052
201b88a9848186f2a45c0d2826870733e6fd9aa46983e0a6e82e35ca20a439c5ee7b
502a9062e1066493bdadf8b49eb30d9558ed85abc7afb29b3c9bc644199654a46766
81af4babcea4e6f71fe4565c9c1b85d9985b84ec1abf1a820a9bbebee0df1398aae2
c85ab580a9f13e7743afd3108eb32100b870648fa6bc17e8abac4d3c99246b1f0ea9
f7f93a5dd5458c56d9f3f81ff2216b3c3680a13591673c43194d8e6fc93fc1e37ce2
986bd628ac48088bc723d8fbe293861ca7a9f4a73e9fa63b1b6d0074f5dea2a624c5
249ff3ad811b6255b299d6bc5451ba7477f19c5a0db690c3e6476398b1483d10314a
fd38bbaf6e2fbdbcd62c3ca9797a420ca6034ec0a83360a3ee2adf4b9d4ba29731d1
31b099a38d6a23cc463db754603211260e99d19affc902c915d7854554aabf608e3a
c52c19b8aa26ae042249b17b2d29669b5c859103ee53ef9bdc73ba3c6b537d5c34b6
d8f034671d7f3a8a6966cc4543df223565343154140fd7391c7e7be03e241f4ecfeb
877a051
msg = 8f3dc6fb8c4a02f4d6352edf0907822c1210a9b32f9bdda4c45a698c80023a
a6b59f8cfec5fdbb36331372ebefedae7d
random_msg = 8f3dc6fb8c4a02f4d6352edf0907822c1210a9b32f9bdda4c45a698
c80023aa6b59f8cfec5fdbb36331372ebefedae7d
salt =
encoded_msg = 159499b90471b496c2639ec482e99feaba525c0420c565d17dc60c
1bb1f47703f04436cceaa8f69811e1bf8546fa971226c9e71421b32b571ed5ea0e03
2269d4219b4404316eb17a58f277634aeed394b7f3888153b5bb163e40807e605daf
dd1789dd473b0846bdcb6524417bc3a35366fab4261708c0e4b4beba07a1a64bbccb
4b1ac215d1350a50a501e8e96612028b535ad731abf1f117ee07d07a4de9cef3d70f
5845ba84c29d5d92c6e66a1f9489a5f527b846825360fd6e90f40ed041c682e489f3
acde984a3ea580181418c1d15017af2657bc4b70485cdc0f1ebc3693e0d70a5d01f3
7ff640993fa071274fb9ee44e0c24dcb58ffa21a9a6540d87f24379beaafcc3b4bd4
2c45ec6820e03738ce98bea11c71685f31db63429fab8658bdb816f1ecccb1888f24
02de0bd2f0f9646decdcad4c11b41428eec1ed25f2a86d43bb04f95726bfbd98ea34
ca091b7adbabd0e28f17fa0345b89542d23c3530554987508a23641bd4f9e52962b0
bee3ac9ffe005322d26a39941c5847774300411c69635f96903e8d593530908bd92a
4fa6a2d52f88073a647a4b3894b7e4ebb80699e60227397bfa93f41b1c97e107b632
f68e70409372ead2f072c11cf99be4486fcbf763dde28ee156db26cd358a69fcb796
44f1f2fcc166f41a4c80f5851ee08be051f14b601418d6e56e61733b9b210c6bef17
edac121a754d19b9bc
inv = 80682c48982407b489d53d1261b19ec8627d02b8cda5336750b8cee332ae26
0de57b02d72609c1e0e9f28e2040fc65b6f02d56dbd6aa9af8fde656f70495dfb723
ba01173d4707a12fddac628ca29f3e32340bd8f7ddb557cf819f6b01e445ad96f874
ba235584ee71f6581f62d4f43bf03f910f6510deb85e8ef06c7f09d9794a008be7ff
2529f0ebb69decef646387dc767b74939265fec0223aa6d84d2a8a1cc912d5ca25b4
e144ab8f6ba054b54910176d5737a2cff011da431bd5f2a0d2d66b9e70b39f4b050e
45c0d9c16f02deda9ddf2d00f3e4b01037d7029cd49c2d46a8e1fc2c0c17520af1f4
b5e25ba396afc4cd60c494a4c426448b35b49635b337cfb08e7c22a39b256dd032c0
0adddafb51a627f99a0e1704170ac1f1912e49d9db10ec04c19c58f420212973e0cb
329524223a6aa56c7937c5dffdb5d966b6cd4cbc26f3201dd25c80960a1a111b3294
7bb78973d269fac7f5186530930ed19f68507540eed9e1bab8b00f00d8ca09b3f099
aae46180e04e3584bd7ca054df18a1504b89d1d1675d0966c4ae1407be325cdf623c
f13ff13e4a28b594d59e3eadbadf6136eee7a59d6a444c9eb4e2198e8a974f27a39e
b63af2c9af3870488b8adaad444674f512133ad80b9220e09158521614f1faadfe85
05ef57b7df6813048603f0dd04f4280177a11380fbfc861dbcbd7418d62155248dad
5fdec0991f
blinded_msg = 982790826556aabe6004467671a864397eea3b95740e9a11c8b80b
99ee0cf4dbc50af860bda81b601a2eceaa6943ef104f13325ad0be2e37f42030b312
0e87cfee8cfe59cde1acfb25485a43275ebe777292e2518181ae531e596f988ff16f
458daa5a42408939cbe60e7271391a21657276427d195bee6a20054101d4ceb892ec
dea402ea1a866acf0e451a3336f07e7589330d96c3883fd5bc1a829a715b618b74a8
6b2a898764246ad081d4c9f1edb8ab5077e315fde2417ec2dd33cad93e120340b49b
e89c18a63e62c6bb289037283d3bf18608be11ee4c823c710b0c6b89235fed3f03a7
b96ddd25a8f54f20dac37ce8905093ad8e066810f354fb1773236e3d3788ba755de2
c9bce8d340078bb1831ddc7314a5018673427ced65cb356281aae08b5e6636f3eb24
17e09d6ae476a9abcc410bc8c90813d0740e39ae75efae4c02eed49dbb7aa51258bb
71197445d17a6029bf566ba6b36282173af2c42e9b9631366f22eb6a19ef1d92bd3c
e0631d3a7fb3288195b0ba380a3828d5411cefd5eba83e52198c001ac9946a333a33
d89d4d235fc833239d59837f04eaf065e9563659b00c7624a6263b727d8f2c07959b
a2bb592e7ff251b8f09c85995fd2e4474e743586576b518230986b6076b762ae7708
8a37e4bffd2ef41ae68d6d4e79205290b4f76c42ef039638c41cdc6fe8af9b429c0d
ee45b2942e3861da2a
blind_sig = 362ef369f9b8c1487e285514702a7cd6fe03e4a2fb854881f3d3f986
b7742a0c9bfab6562a6cd5ed71c574af67d7e77e71b33420c08ebb0ff37886b85829
7f9562fc366066c6d8e77bad1918b04756ba03f5c385d44f06759daf1b7a38b2a642
48dee95d0e3886c8afa1f74afd8ac3c56520d0f3fd206df8e0d257312756803b09a7
9d0cc38112592c3aec32de5a9bc3284c5a0a2d0808b102deafa5cc60f04e3d71c028
4cba04f17f88aa8e07d5544fe0265807d515877f79d30ed26d522b9d9c56597647b0
dbca5a69d6418f8d1b51481723f272c2a3d48f6f4fd6beeac3576c3edb00e8779964
548aeab8e004c7c4f8ef9cb6e680e2d2d49792004bb3e6974fa48f241a361ca449c0
2bd4c0ad4e66252c55e656f16049908efe59acbafa1171895dfac64d909808e54204
69d622c7253ec1de7522b41634d383bf8786bf881cbf1561627f1e62b2d93300ec30
ec0f5f0ab32036fce068bc76b0b0c6452079537f8d7f8dcee4b42bbf2d9ad7499d38
35cd93cfc7e8ebea3554ab5241e181e5d73241b7bebf0a281b63594a35f4993e2b41
6d60db966b58b648cfcba2c4bee4c2830aae4a70ff55012480298f549c13b1b26842
77bca12f592471b8a99285174f1c0ebb38fc80e74a10b3f02ec3e6682ba873f7ff0e
1e79718b470927c74ed754d4f7c3d9a55e22246e829cdb5a1c6fb2a0a6c896df3030
63c918bcf5eb0017
sig = 4454b6983ff01cb28545329f394936efa42ed231e15efbc025fdaca00277ac
f0c8e00e3d8b0ecebd35b057b8ebfc14e1a7097368a4abd20b555894ccef3d1b9528
c6bcbda6b95376bef230d0f1feff0c1064c62c60a7ae7431d1fdfa43a81eed9235e3
63e1ffa0b2797aba6aad6082fcd285e14fc8b71de6b9c87cb4059c7dc1e96ae1e637
95a1e9af86b9073d1d848aef3eca8a03421bcd116572456b53bcfd4dabb0a9691f1f
abda3ed0ce357aee2cfee5b1a0eb226f69716d4e011d96eede5e38a9acb531a64336
a0d5b0bae3ab085b658692579a376740ff6ce69e89b06f360520b864e33d82d029c8
08248a19e18e31f0ecd16fac5cd4870f8d3ebc1c32c718124152dc905672ab0b7af4
8bf7d1ac1ff7b9c742549c91275ab105458ae37621757add83482bbcf779e777bbd6
1126e93686635d4766aedf5103cf7978f3856ccac9e28d21a850dbb03c811128616d
315d717be1c2b6254f8509acae862042c034530329ce15ca2e2f6b1f5fd59272746e
3918c748c0eb810bf76884fa10fcf749326bbfaa5ba285a0186a22e4f628dbf178d3
bb5dc7e165ca73f6a55ecc14c4f5a26c4693ce5da032264cbec319b12ddb9787d0ef
a4fcf1e5ccee35ad85ecd453182df9ed735893f830b570faae8be0f6fe2e571a4e0d
927cba4debd368d3b4fca33ec6251897a137cf75474a32ac8256df5e5ffa518b88b4
3fb6f63a24
]]></artwork>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>We would like to thank Bjoern Tackmann who provided an editorial and security review of this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+2965YbR5Ln+T2eIob6UORMJhj3C7c11RQlSiyJIodJSd09
PUf08PDIRBEJZCMAkike9bPss+yT7c/cPQIBZCbFqt6dyzlQlcQkEOEXc7O/
/c3c3PP09DTYzDcL8yh8dfY4/GoxX7bh2fx8qTbbtekD1TRr8+6OL9uVXqpL
Xm3Xqtuczteb7lR36/PTda9OG3n6tB+fPo3ToFUb8yjQ/Pd8tb5+FM6X3SoI
5lfrR+Fmve03SRTVURK8NdfvV+v2UfhsuTHrpdmcfi0dBEG/Ucv2V7VYLen0
mhFczR+F/32z0idhv1pv1qbr+en6Un74H0GgtpuL1fpREJ6GdNU/Cp/Owq/N
ct4HIf+4oT9dq+Xbyaer9Tkfqn6zuKZ7PbMfmks1XzwKu/Yfo6ibMaC9Jv+i
9KrZb9O0Zj3X029su4+vrhbmZrP+8dlf7eP/qOSpmV5d7np5Mgsfz8JfVqt2
0s2Ti/W836yuLsx671vb1ZPFatt2C7U20660ev+PF0ZdzZfnzXzT26kEsgrr
S7WZv2NxwvDb1ep8YX5++eMj+6bXjnt8EDbX/tvwxdKEv1zMNyZ8qa7M+p57
VK3PzeZReLHZXPWPHj5kmWbn9nmZzUPVrLabh++ulg8vVu/nG5b4rcjGCuXl
ev4OtXhlFup6v9+5nUnoHwjtE+GLd2b9bm7e397v+/fvZ6MQH861NPAQZe0f
usZ+9Y39ahv7dWjs16+NTqIknl21He2+XJvN5pr5ti8vmIl9Rx8Mzj0jQmGE
8lToH7t7YNseXfswY5Ee6tWyM2uz1Oah+7Q3erueb66T+OEVJmOWG1ZltXzY
64vL+WZj2xyV2v5z6vTj5Sw8mzwzfv7VLHylzi/UO7Xki1+e1/X++H9avl2u
3i9DLO60v0BZQrXZKP22D1fLcHNhwt6N4HSzOvU/hvfPXp89CK/WK+xutXAT
xeCYzIYBD0Zrn1ULtJJVvlhdSYMvt4CCDr831+GT9fXVZnW+VlcX17YFCw3h
C71ZNWZ9EsZ1Xd893bMZYKTemtNf5ot+tdz/ElN4bpbmNyPK9f0Pr/4pifYn
/YKRqPkaGzjFUs0hrokkzaXpac2K4PHi3DRrxcC/Xa+2V+HzVWsWt6+vuaLV
zWyu9NouMNoUPYyjMp5M8cxcbcylnaR8ffck/zILvweHlmZ94/MfVn2//+Fz
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
66tl9xKUluIpyVGWcSVMUGrG2hpl5utc0rmBTIRwuCSMInaQ/VOmnBEWSt2J
ZApLtAF5xZBoqHMs7CQGGJukFUCGjKRRgF/r8i5SmHUE7mgMXZIx0EeBxowF
xuyw0aqVf2G2BI1YoOwMEAcyWvoKUhx/nepOl1BHIqNU8hqNlN4b3I6RbT1+
buAIkE0oAZ5OSkiUnN8gNjMy7KBopQZcuI4kFjPcGgIAmRqBa9kvFmaiCC+7
PJdC8QosE4QG8SU9lBQVGouOa6HIqJqE8fAJ2Y6JWQX0CCtJK7AHB5cpgBS8
x32xSoUcNqjKtANU4JaxkcMQVYOp1rJzKklGCBCYoFOmzWIlCU7KVMIvmxx+
K1VPqDEmgu/opEwvkP1L2tBdLuVshBgOFQBighFgT2iuxkHlGTEYPL6GPhfA
uOwEJ6nUhpiuQffBNQUBixKYCsQq0qJ5GAZWDFMAnEFiCE4lWc44gwQw6DKV
SitCRDmlAemvM21j8xgqgjHh8mA5eABZWQmAAEnMOO4Mg9JyqESL+5QNNwFT
yF6H/snJn1ioIwBuUuYHoSb2lO2TUjXCW1nACshpmZSRzQM8O2pJNxqm0mQR
LEU28g1026CIKdiA8IxEPTxEFAmvrMS8cH9ayXaS5EpkR1NoSJZLnguBSt0D
eKeITKHXXaBkL8GAMvBVRmwSYUV5E8PDmwTCLHVLAu4SVtRQT8AHPFNiYPAh
gA6iEhBmWJdGaAzPh5fgQuQ3Z9V4CtgmWldozBkW0EjxTYGbINIrgCiWAvhC
FaqA6TN8HKfsGku2lLEXWC7mkcmWZCVbiTrWUvOAYWATedLizHM58kLvpSIo
qQh521hCh65EdPgC0XFb2KVASEm6Mkp8GYFMSexRpRnqi1wAKCF8DaFkIDlH
W6ABmwDfS3iZaaHMEVbKelVQaqIMjX/GK7UEvoQG0Aa+BqjjBH9WtEEqWcoY
q411IvlVsA4GhDYawt4owyWnKC9RUK1RV6I7k3SSJUZlsT/8NjYSwCMrJiH5
pgbSJPF8JZUtsWz0SMyYyGER6ArGDnMVbiQneKQ6rGoBrhKhBbh8yJNBD7Qq
ZVsZGyTgl8NdUtipswL4AWdQGVZctix1ShhP0AmilESokUFPpBg4lj1Z4nMo
dSXFSkxAan+7GhtPhal2UjYnJ7uAG0kfdLKPSRAfKzRITpSgypLtwvIgDSlM
QcNtDBYD28ASYgkVgQsgJk0UPJNIEQzIsRUeaKCIWZB2xP1EN1C8P7i65Fjn
cazzONZ5HOs8jnUexzqPY53Hsc7jWOdxrPM41nkc6zyOdR7HOo9jncexzuNY
53Gs8zjWeRzrPI51Hsc6j2Odx7HO41jncazzONZ5HOs8jnUexzqPY53Hsc7j
WOfxv1WdR/hYv12u3i9Me35plps++Phoub1szNq0X97r1KI3934Pgl9M+H61
XbThYv7WhJtVuLlQy7fhV39dmfUyfK3020u1XIbvL1bh1Xr1bk6cEqplaNr5
ZrWeqwV/acPe6O16vrkO1+bd3LwPVx3NzPuwXemt9D0L/l9AXHiBwv8AAA==

-->

</rfc>
