<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.4.14 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-cfrg-rsa-blind-signatures-03" category="info" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 2.42.0 -->
  <front>
    <title abbrev="RSA Blind Signatures">RSA Blind Signatures</title>
    <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-rsa-blind-signatures-03"/>
    <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="2022" month="February" day="02"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document specifies the RSA-based blind signature protocol with appendix (RSA-BSSA). RSA blind signatures
were first introduced by Chaum for untraceable payments <xref target="Chaum83" format="default"/>. It extends RSA-PSS encoding specified
in <xref target="RFC8017" format="default"/> to enable blind signature support.</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>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>Originally introduced in the context of digital cash systems by Chaum
for untraceable payments <xref target="Chaum83" format="default"/>, RSA blind signatures turned out to have
a wide range of applications ranging from electric voting schemes to authentication mechanisms.</t>
      <t>Recently, interest in blind signatures has grown to address operational shortcomings from VOPRFs
such as <xref target="I-D.irtf-cfrg-voprf" format="default"/>. Specifically, VOPRF evaluation requires access to the private key,
and is therefore required for both issuance and redemption of tokens in anonymous authentication
protocols such as Privacy Pass <xref target="I-D.davidson-pp-protocol" format="default"/>.
This limitation complicates deployments where it is not desirable to distribute secret keys to entities
performing token 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 the private key is only
required for issuance of the tokens.</t>
      <t>In contrast, cryptographic signatures provide a primitive that is publicly verifiable and does not
require access to the private key for verification. Moreover, <xref target="JKK14" format="default"/> shows that one can realize
a VOPRF in the Random Oracle Model by hashing a (deterministic) blind signature-message pair.</t>
      <t>This document specifies a protocol for the RSA Blind Signature Scheme with Appendix (RSABSSA). In
order to facilitate deployment, we define it in such a way that the resulting (unblinded) signature
can be verified with a standard RSA-PSS library.</t>
    </section>
    <section anchor="requirements-notation" numbered="true" toc="default">
      <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&nbsp;14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they
appear in all capitals, as shown here.</t>
    </section>
    <section anchor="notation" numbered="true" toc="default">
      <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" format="default"/>, 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
such that M &lt;= R &lt; N.</li>
        <li>inverse_mod(x, n): Compute the multiplicative inverse of x mod n. This function
fails if x and n are not co-prime.</li>
        <li>len(s): The length of a byte string, in octets.</li>
      </ul>
    </section>
    <section anchor="overview" numbered="true" toc="default">
      <name>Blind Signature Protocol Overview</name>
      <t>In this section, we sketch the blind signature protocol wherein a client and server
interact to compute <tt>sig = Sign(skS, msg)</tt>, where <tt>msg</tt> is the private message
to be signed, and <tt>skS</tt> is the server's private key. In this protocol, the server
learns nothing of <tt>msg</tt>, whereas the client learns <tt>sig</tt> and nothing of <tt>skS</tt>.</t>
      <t>The core issuance protocol runs as follows:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
   Client(pkS, msg)                      Server(skS, pkS)
  -------------------------------------------------------
  blinded_msg, inv = Blind(pkS, msg)

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

                 blind_sig = BlindSign(skS, blinded_msg)

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

  sig = Finalize(pkS, msg, blind_sig, inv)
]]></artwork>
      <t>Upon completion, correctness requires that clients can verify signature <tt>sig</tt> over private
input message <tt>msg</tt> using the server public key <tt>pkS</tt> by invoking the RSASSA-PSS-VERIFY
routine defined in <xref target="RFC3447" format="default"/>. The finalization function performs that check before
returning the signature.</t>
    </section>
    <section anchor="rsabssa-signature-instantiation" numbered="true" toc="default">
      <name>RSABSSA Signature Instantiation</name>
      <t>Section 8.1 of <xref target="RFC8017" format="default"/> defines RSASSA-PSS RSAE, which is a signature algorithm
using RSASSA-PSS <xref target="RFC8017" format="default"/> with mask generation function 1. In this section, we
define RSABSSA, a blinded variant of this algorithm.</t>
      <section anchor="generation" numbered="true" toc="default">
        <name>Signature Generation</name>
        <t>As outlined in <xref target="overview" format="default"/>, signature generation involves three subroutines: Blind,
BlindSign, and Finalize. The output from Finalize is a signature over the input to Blind.
A specification of these subroutines is below.</t>
        <section anchor="blind" numbered="true" toc="default">
          <name>Blind</name>
          <t>rsabssa_blind encodes an input message and blinds it with the server's public
key. It outputs the blinded message to be sent to the server and the corresponding
inverse, both encoded as octet strings. RSAVP1 and EMSA-PSS-ENCODE are as defined in
<xref target="RFC3447" format="default"/>.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
rsabssa_blind(pkS, msg)

Parameters:
- kLen, the length in octets of the RSA modulus n
- kBits, the length in bits of the RSA modulus n
- HF, the hash function used to hash the message
- MGF, the mask generation function

Inputs:
- pkS, server public key (n, e)
- msg, message to be signed, an octet string

Outputs:
- blinded_msg, an octet string of length kLen
- inv, an octet string of length kLen

Errors:
- "message too long": Raised when the input message is too long.
- "encoding error": Raised when the input message fails encoding.
- "invalid blind": Raised when the inverse of r cannot be found.

Steps:
1. encoded_msg = EMSA-PSS-ENCODE(msg, kBits - 1)
   with MGF and HF 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. r = random_integer_uniform(1, n)
5. r_inv = inverse_mod(r, n)
6. If inverse_mod fails, raise an "invalid blind" error
   and stop
7. x = RSAVP1(pkS, r)
8. z = m * x mod n
9. blinded_msg = int_to_bytes(z, kLen)
10. inv = int_to_bytes(r_inv, kLen)
11. 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" numbered="true" toc="default">
          <name>BlindSign</name>
          <t>rsabssa_blind_sign performs the RSA private key operation on the client's
blinded message input and returns the output encoded as an octet string.
RSASP1 is as defined in <xref target="RFC3447" format="default"/>.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
rsabssa_blind_sign(skS, blinded_msg)

Parameters:
- kLen, the length in octets of the RSA modulus n

Inputs:
- skS, server private key
- blinded_msg, encoded and blinded message to be signed, an
  octet string

Outputs:
- blind_sig, an octet string of length kLen

Errors:
- "unexpected input size": Raised when a byte string input doesn't
  have the expected length.
- "invalid message length": Raised when the message representative
  to sign is not an integer between 0 and n - 1.

Steps:
1. If len(blinded_msg) != kLen, raise "unexpected input size"
   and stop
2. m = bytes_to_int(blinded_msg)
3. If m >= n, raise "invalid message length" and stop
4. s = RSASP1(skS, m)
5. blind_sig = int_to_bytes(s, kLen)
6. output blind_sig
]]></artwork>
        </section>
        <section anchor="finalize" numbered="true" toc="default">
          <name>Finalize</name>
          <t>rsabssa_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 rsabssa_blind.</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
rsabssa_finalize(pkS, msg, blind_sig, inv)

Parameters:
- kLen, the length in octets of the RSA modulus n

Inputs:
- pkS, server public key (n, e)
- msg, message to be signed, an octet string
- blind_sig, signed and blinded element, an octet string of
  length kLen
- inv, inverse of the blind, an octet string of length kLen

Outputs:
- sig, an octet string of length kLen

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) != kLen, raise "unexpected input size" and stop
2. If len(inv) != kLen, raise "unexpected input size" and stop
3. z = bytes_to_int(blind_sig)
4. r_inv = bytes_to_int(inv)
5. s = z * r_inv mod n
6. sig = int_to_bytes(s, kLen)
7. result = RSASSA-PSS-VERIFY(pkS, msg, sig)
8. If result = "valid signature", output sig, else
   raise "invalid signature" and stop
]]></artwork>
        </section>
      </section>
      <section anchor="pss-options" numbered="true" toc="default">
        <name>Encoding Options</name>
        <t>The RSASSA-PSS parameters, defined as in <xref section="9.1.1" sectionFormat="comma" target="RFC8017" format="default"/>, are as follows:</t>
        <ul spacing="normal">
          <li>Hash: hash function (hLen denotes the length in octets of the hash function output)</li>
          <li>MGF: mask generation function</li>
          <li>sLen: intended length in octets of the salt</li>
        </ul>
        <t>It is RECOMMENDED that implementations support the following encoding options:</t>
        <ul spacing="normal">
          <li>SHA-384 as Hash and MGF functions and sLen = 48, as described in <xref section="2" sectionFormat="comma" target="RFC8230" format="default"/>; and</li>
          <li>SHA-384 as Hash and MGF functions and sLen = 0.</li>
        </ul>
        <t>Note that setting sLen = 0 has the result of making the signature deterministic.</t>
        <t>The blinded functions in <xref target="generation" format="default"/> are orthogonal to the choice of these encoding options.</t>
      </section>
    </section>
    <section anchor="cert-oid" numbered="true" toc="default">
      <name>Public Key Certification</name>
      <t>If the server public key is carried in an X.509 certificate, it MUST use the RSASSA-PSS
OID <xref target="RFC5756" format="default"/>. It MUST NOT use the rsaEncryption OID <xref target="RFC5280" format="default"/>.</t>
    </section>
    <section anchor="implementation-considerations" numbered="true" toc="default">
      <name>Implementation 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" numbered="true" toc="default">
        <name>Errors</name>
        <t>The high-level functions specified in <xref target="generation" format="default"/> 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 rsabssa_blind, rsabssa_blind_sign, and rsabssa_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>
      </section>
      <section anchor="apis" numbered="true" toc="default">
        <name>API Considerations</name>
        <t>It is NOT RECOMMENDED that APIs allow clients to specify RSA-PSS parameters directly, e.g.,
to set the PSS salt value or its length. Instead, it is RECOMMENDED that implementations
generate the PSS salt using the same source of randomness used to produce the blinding factor.</t>
        <t>If implementations need support for randommized and deterministic signatures, they should
offer separate abstractions for each. Allowing callers to control the PSS salt value or
length may have security consequences. See <xref target="det-sigs" format="default"/> for more information about details.</t>
      </section>
    </section>
    <section anchor="sec-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>Bellare et al. <xref target="BNPS03" format="default"/> proved the following properties of
Chaum's original blind signature protocol based on RSA-FDH:</t>
      <ul spacing="normal">
        <li>One-more-forgery polynomial security. This means the adversary, interacting with the server
(signer) as a client, cannot output n+1 valid message and signature tuples after only
interacting with the server n times, for some n which is polynomial in the protocol's security
parameter.</li>
        <li>Concurrent polynomial security. This means that servers can engage in polynomially many
invocations of the protocol without compromising security.</li>
      </ul>
      <t>Both results rely upon the RSA Known Target Inversion Problem being hard.</t>
      <t>The design in this document differs from the analysis in <xref target="BNPS03" format="default"/> only in message encoding,
i.e., using PSS instead of FDH. Note, importantly, that an empty salt effectively reduces PSS
to FDH, so the same results apply.</t>
      <section anchor="timing-side-channels" numbered="true" toc="default">
        <name>Timing Side Channels</name>
        <t>rsabssa_blind_sign 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" format="default"/>. Implementations MUST implement RSA blinding as a
side channel attack mitigation. One mechanism is described in Section 10 of
<xref target="TimingAttacks" format="default"/>. Failure to do so may lead to side channel
attacks that leak the private signing key.</t>
      </section>
      <section anchor="message-robustness" numbered="true" toc="default">
        <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. This can be done, for example, by keeping blind signature keys distinct
from signature keys used for other protocols, such as TLS.</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 unblinded 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
unblinded messages adhere to this form.</t>
      </section>
      <section anchor="det-sigs" numbered="true" toc="default">
        <name>Randomized and Deterministic Signatures</name>
        <t>When sLen &gt; 0, the PSS salt is a randomly generated string chosen when a message is encoded.
This means the resulting signature is non-deterministic. As a result, two signatures over
the same message will be different. If the salt is not generated randomly, or is otherwise
constructed maliciously, it might be possible for the salt to encode information that is
not present in the signed message. For example, the salt might be maliciously constructed
to encode the local IP address of the client. As a result, APIs SHOULD NOT allow clients
to provide the salt directly; see <xref target="apis" format="default"/> for API considerations.</t>
        <t>When sLen = 0, the PSS salt is empty and the resulting signature is deterministic. Such
signatures may be useful for applications wherein the only desired source of entropy is
the input message.</t>
        <t>Applications that use deterministic signatures SHOULD carefully analyze the security implications.
When the required signature protocol is not clear, applications SHOULD default to randomized signatures.</t>
      </section>
      <section anchor="key-substitution-attacks" numbered="true" toc="default">
        <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 verify some known (message, signature) pair produced under a different (skS, pkS)
key pair <xref target="WM99" format="default"/>. 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" numbered="true" toc="default">
        <name>Alternative RSA Encoding Functions</name>
        <t>This document document uses PSS encoding as specified in <xref target="RFC3447" format="default"/> for a number of
reasons. First, it is recommended in recent standards, including TLS 1.3 <xref target="RFC8446" format="default"/>,
X.509v3 <xref target="RFC4055" format="default"/>, and even PKCS#1 itself. According to <xref target="RFC3447" format="default"/>, "Although no
attacks are known against RSASSA-PKCS#1 v1.5, in the interest of increased robustness,
RSA-PSS 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" format="default"/></t>
        <t>Full Domain Hash (FDH) <xref target="RSA-FDH" format="default"/> encoding is also possible, and this variant has
equivalent security to PSS <xref target="KK18" format="default"/>. 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="alternative-blind-signature-protocols" numbered="true" toc="default">
        <name>Alternative Blind Signature Protocols</name>
        <t>RSA has some advantages as a signature protocol, particularly around verification efficiency.
However, the protocol in this document is not without shortcomings, including:</t>
        <ul spacing="normal">
          <li>RSA key and signature sizes are larger than those of alternative blind signature protocols;</li>
          <li>No evaluation batching support, which means that the cost of the protocol scales linearly
with the number of invocations; and</li>
          <li>Extensions for features such as threshold signing are more complex to instantiate compared
to other protocols based on, for example, Schnorr signatures.</li>
        </ul>
        <t>There are a number of blind signature protocols beyond blind RSA. This section summarizes
these at a high level, and discusses why an RSA-based variant was chosen for the basis of
this specification, despite the shortcomings above.</t>
        <ul spacing="normal">
          <li>Blind Schnorr <xref target="Sch01" format="default"/>: This is a three-message protocol based on the classical Schnorr
signature protocol over elliptic curve groups. Although simple, the hardness problem upon
which this is based -- Random inhomogeneities in a Overdetermined Solvable system of linear
equations, or ROS -- can be broken in polynomial time when a small number of concurrent
signing sessions are invoked <xref target="PolytimeROS" format="default"/>, leading to signature forgeries. Even
with small concurrency limits, Wagner's generalized attack <xref target="Wagner02" format="default"/>
leads to subexponential forgery speedup. For example, a limit of 15 parallel sessions yields
an attack runtime of approximately 2^55, which is substantially lower than acceptable security
levels. In contrast, the variant in this specification has no such concurrency limit.</li>
          <li>Clause Blind Schnorr <xref target="FPS20" format="default"/>: This is a three-message protocol
based on a variant of the blind Schnorr signature protocol. This variant of the protocol is not
known to be vulnerable to the attack in <xref target="PolytimeROS" format="default"/>, though the protocol is still new and
under consideration. In the future, this may be a candidate for future blind signatures based
on blind signatures. However, the three-message flow necessarily requires two round trips
between the client and server, which may be prohibitive for large-scale signature generation.
Further analysis and experimentation with this protocol is needed.</li>
          <li>BSA <xref target="Abe01" format="default"/>: This is a three-message protocol based on elliptic
curve groups similar to blind Schnorr. It is also not known to be vulnerable to the ROS attack
in <xref target="PolytimeROS" format="default"/>. Kastner et al. <xref target="KLRX20" format="default"/> proved concurrent security with a polynomial number
of sessions. For similar reasons to the clause blind Schnorr protocol above, the additional
number of round trips requires further analysis and experimentation.</li>
          <li>Blind BLS <xref target="BLS-Proposal" format="default"/>: The Boneh-Lynn-Shacham <xref target="I-D.irtf-cfrg-bls-signature" format="default"/> protocol can
incorporate message blinding when properly instantiated with Type III pairing group. This is a
two-message protocol similar to the RSA variant, though it requires pairing support, which is
not common in widely deployed cryptographic libraries backing protocols such as TLS. In contrast,
the specification in this document relies upon widely deployed cryptographic primitives.</li>
        </ul>
        <t>Beyond blind signature protocols, anonymous credential schemes with public verifiability
such as U-Prove <xref target="UProve" format="default"/> may be used instead of blind signature protocols. Anonymous credentials
may even be constructed with blind signature protocols. However, anonymous credentials are
higher-level constructions that present a richer feature set.</t>
      </section>
      <section anchor="post-quantum-readiness" numbered="true" toc="default">
        <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" numbered="true" toc="default">
      <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="RFC8017">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <seriesInfo name="DOI" value="10.17487/RFC8017"/>
            <seriesInfo name="RFC" value="8017"/>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty">
              <organization/>
            </author>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson">
              <organization/>
            </author>
            <author fullname="A. Rusch" initials="A." surname="Rusch">
              <organization/>
            </author>
            <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>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <seriesInfo name="DOI" value="10.17487/RFC2119"/>
            <seriesInfo name="RFC" value="2119"/>
            <seriesInfo name="BCP" value="14"/>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <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>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <seriesInfo name="DOI" value="10.17487/RFC8174"/>
            <seriesInfo name="RFC" value="8174"/>
            <seriesInfo name="BCP" value="14"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <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>
        </reference>
        <reference anchor="RFC3447">
          <front>
            <title>Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.1</title>
            <seriesInfo name="DOI" value="10.17487/RFC3447"/>
            <seriesInfo name="RFC" value="3447"/>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson">
              <organization/>
            </author>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <date month="February" year="2003"/>
            <abstract>
              <t>This memo represents a republication of PKCS #1 v2.1 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series, and change control is retained within the PKCS process.  The body of this document is taken directly from the PKCS #1 v2.1 document, with certain corrections made during the publication process.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8230">
          <front>
            <title>Using RSA Algorithms with CBOR Object Signing and Encryption (COSE) Messages</title>
            <seriesInfo name="DOI" value="10.17487/RFC8230"/>
            <seriesInfo name="RFC" value="8230"/>
            <author fullname="M. Jones" initials="M." surname="Jones">
              <organization/>
            </author>
            <date month="September" year="2017"/>
            <abstract>
              <t>The CBOR Object Signing and Encryption (COSE) specification defines cryptographic message encodings using Concise Binary Object Representation (CBOR).  This specification defines algorithm encodings and representations enabling RSA algorithms to be used for COSE messages.  Encodings are specified for the use of RSA Probabilistic Signature Scheme (RSASSA-PSS) signatures, RSA Encryption Scheme - Optimal Asymmetric Encryption Padding (RSAES-OAEP) encryption, and RSA keys.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC5756">
          <front>
            <title>Updates for RSAES-OAEP and RSASSA-PSS Algorithm Parameters</title>
            <seriesInfo name="DOI" value="10.17487/RFC5756"/>
            <seriesInfo name="RFC" value="5756"/>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <author fullname="D. Brown" initials="D." surname="Brown">
              <organization/>
            </author>
            <author fullname="K. Yiu" initials="K." surname="Yiu">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="T. Polk" initials="T." surname="Polk">
              <organization/>
            </author>
            <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>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="WM99">
          <front>
            <title>Unknown key-share attacks on the station-to-station (STS) protocol</title>
            <author>
              <organization/>
            </author>
            <date year="1999" month="October"/>
          </front>
        </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>
              <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>
              <organization/>
            </author>
            <date year="2014" month="August"/>
          </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>
              <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>
              <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>
              <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>
              <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>
              <organization/>
            </author>
            <date year="2003" month="May"/>
          </front>
        </reference>
        <reference anchor="UProve" target="https://www.microsoft.com/en-us/research/project/u-prove/">
          <front>
            <title>U-Prove</title>
            <author>
              <organization/>
            </author>
            <date year="2012" month="February"/>
          </front>
        </reference>
        <reference anchor="I-D.irtf-cfrg-voprf">
          <front>
            <title>Oblivious Pseudorandom Functions (OPRFs) using Prime-Order Groups</title>
            <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-voprf-08"/>
            <author fullname="Alex Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Armando Faz-Hernandez">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Nick Sullivan">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <date day="25" month="October" year="2021"/>
            <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 secret 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
   secret key, and the server learns neither the PRF input nor output.
   A Partially-Oblivious PRF (POPRF) is an OPRF that allows client and
   server to provide public input to the PRF.  OPRFs and POPRFs can also
   satisfy a notion of 'verifiability'.  In this setting, clients can
   verify that the server used a specific private key during the
   execution of the protocol.  This document specifies a POPRF protocol
   with optional verifiability instantiated within standard prime-order
   groups, including elliptic curves.

              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.davidson-pp-protocol">
          <front>
            <title>Privacy Pass: The Protocol</title>
            <seriesInfo name="Internet-Draft" value="draft-davidson-pp-protocol-01"/>
            <author fullname="Alex Davidson">
              <organization>Cloudflare</organization>
            </author>
            <date day="13" month="July" year="2020"/>
            <abstract>
              <t>   This document specifies the Privacy Pass protocol.  This protocol
   provides anonymity-preserving authorization of clients to servers.
   In particular, client re-authorization events cannot be linked to any
   previous initial authorization.  Privacy Pass is intended to be used
   as a performant protocol in the application-layer.

              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC5280">
          <front>
            <title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
            <seriesInfo name="DOI" value="10.17487/RFC5280"/>
            <seriesInfo name="RFC" value="5280"/>
            <author fullname="D. Cooper" initials="D." surname="Cooper">
              <organization/>
            </author>
            <author fullname="S. Santesson" initials="S." surname="Santesson">
              <organization/>
            </author>
            <author fullname="S. Farrell" initials="S." surname="Farrell">
              <organization/>
            </author>
            <author fullname="S. Boeyen" initials="S." surname="Boeyen">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <author fullname="W. Polk" initials="W." surname="Polk">
              <organization/>
            </author>
            <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>
        </reference>
        <reference anchor="BNPS03">
          <front>
            <title>The One-More-RSA-Inversion Problems and the Security of Chaum's Blind Signature Scheme</title>
            <seriesInfo name="DOI" value="10.1007/s00145-002-0120-1"/>
            <seriesInfo name="Journal of Cryptology" value="Vol. 16, pp. 185-215"/>
            <author fullname="Bellare" initials="." surname="Bellare">
              <organization/>
            </author>
            <author fullname="Namprempre" initials="." surname="Namprempre">
              <organization/>
            </author>
            <author fullname="Pointcheval" initials="." surname="Pointcheval">
              <organization/>
            </author>
            <author fullname="Semanko" initials="." surname="Semanko">
              <organization/>
            </author>
            <date month="June" year="2003"/>
          </front>
        </reference>
        <reference anchor="TimingAttacks">
          <front>
            <title>Timing Attacks on Implementations of Diffie-Hellman, RSA, DSS, and Other Systems</title>
            <seriesInfo name="DOI" value="10.1007/3-540-68697-5_9"/>
            <seriesInfo name="Advances in Cryptology - CRYPTO '96" value="pp. 104-113"/>
            <author fullname="Paul C. Kocher" initials="P." surname="Kocher">
              <organization/>
            </author>
            <date year="1996"/>
          </front>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <seriesInfo name="DOI" value="10.17487/RFC8446"/>
            <seriesInfo name="RFC" value="8446"/>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <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>
        </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>
            <seriesInfo name="DOI" value="10.17487/RFC4055"/>
            <seriesInfo name="RFC" value="4055"/>
            <author fullname="J. Schaad" initials="J." surname="Schaad">
              <organization/>
            </author>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <author fullname="R. Housley" initials="R." surname="Housley">
              <organization/>
            </author>
            <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>
        </reference>
        <reference anchor="JKM18">
          <front>
            <title>On the Security of the PKCS#1 v1.5 Signature Scheme</title>
            <seriesInfo name="DOI" value="10.1145/3243734.3243798"/>
            <seriesInfo name="Proceedings of the 2018 ACM SIGSAC Conference on Computer and Communications" value="Security"/>
            <author fullname="Tibor Jager" initials="T." surname="Jager">
              <organization/>
            </author>
            <author fullname="Saqib A. Kakvi" initials="S." surname="Kakvi">
              <organization/>
            </author>
            <author fullname="Alexander May" initials="A." surname="May">
              <organization/>
            </author>
            <date month="January" year="2018"/>
          </front>
        </reference>
        <reference anchor="KK18">
          <front>
            <title>Optimal Security Proofs for Full Domain Hash, Revisited</title>
            <seriesInfo name="DOI" value="10.1007/s00145-017-9257-9"/>
            <seriesInfo name="Journal of Cryptology" value="Vol. 31, pp. 276-306"/>
            <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>
        </reference>
        <reference anchor="Sch01">
          <front>
            <title>Security of Blind Discrete Log Signatures against Interactive Attacks</title>
            <seriesInfo name="DOI" value="10.1007/3-540-45600-7_1"/>
            <seriesInfo name="Information and Communications Security" value="pp. 1-12"/>
            <author fullname="Claus Peter Schnorr" initials="C." surname="Schnorr">
              <organization/>
            </author>
            <date year="2001"/>
          </front>
        </reference>
        <reference anchor="Wagner02">
          <front>
            <title>A Generalized Birthday Problem</title>
            <seriesInfo name="DOI" value="10.1007/3-540-45708-9_19"/>
            <seriesInfo name="Advances in Cryptology - CRYPTO 2002" value="pp. 288-304"/>
            <author fullname="David Wagner" initials="D." surname="Wagner">
              <organization/>
            </author>
            <date year="2002"/>
          </front>
        </reference>
        <reference anchor="FPS20">
          <front>
            <title>Blind Schnorr Signatures and Signed ElGamal Encryption in the Algebraic Group Model</title>
            <seriesInfo name="DOI" value="10.1007/978-3-030-45724-2_3"/>
            <seriesInfo name="Advances in Cryptology - EUROCRYPT 2020" value="pp. 63-95"/>
            <author fullname="Georg Fuchsbauer" initials="G." surname="Fuchsbauer">
              <organization/>
            </author>
            <author fullname="Antoine Plouviez" initials="A." surname="Plouviez">
              <organization/>
            </author>
            <author fullname="Yannick Seurin" initials="Y." surname="Seurin">
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="Abe01">
          <front>
            <title>A Secure Three-Move Blind Signature Scheme for Polynomially Many Signatures</title>
            <seriesInfo name="DOI" value="10.1007/3-540-44987-6_9"/>
            <seriesInfo name="Lecture Notes in Computer Science" value="pp. 136-151"/>
            <author fullname="Masayuki Abe" initials="M." surname="Abe">
              <organization/>
            </author>
            <date year="2001"/>
          </front>
        </reference>
        <reference anchor="I-D.irtf-cfrg-bls-signature">
          <front>
            <title>BLS Signatures</title>
            <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-bls-signature-04"/>
            <author fullname="Dan Boneh">
              <organization>Stanford University</organization>
            </author>
            <author fullname="Sergey Gorbunov">
              <organization>University of Waterloo</organization>
            </author>
            <author fullname="Riad S. Wahby">
              <organization>Stanford University</organization>
            </author>
            <author fullname="Hoeteck Wee">
              <organization>NTT Research and ENS</organization>
            </author>
            <author fullname="Zhenfei Zhang">
              <organization>Algorand</organization>
            </author>
            <date day="10" month="September" year="2020"/>
            <abstract>
              <t>   BLS is a digital signature scheme with aggregation properties.  Given
   set of signatures (signature_1, ..., signature_n) anyone can produce
   an aggregated signature.  Aggregation can also be done on secret keys
   and public keys.  Furthermore, the BLS signature scheme is
   deterministic, non-malleable, and efficient.  Its simplicity and
   cryptographic properties allows it to be useful in a variety of use-
   cases, specifically when minimal storage space or bandwidth are
   required.

              </t>
            </abstract>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="test-vectors" numbered="true" toc="default">
      <name>Test Vectors</name>
      <t>This section includes test vectors for the blind signature protocol defined in this document.
The following parameters are specified:</t>
      <ul spacing="normal">
        <li>p, q, n, e, d: RSA private and public key parameters, each encoded as a hexadecimal string.</li>
        <li>msg: Messsage being signed, encoded as a hexadecimal string. The hash is computed using SHA-384.</li>
        <li>salt: Randomly-generated salt used when computing the signature. The length (sLen) is either 48 or 0 bytes.</li>
        <li>inv: The message blinding inverse, encoded as a hexadecimal string.</li>
        <li>encoded_msg: EMSA-PSS encoded message. The mask generation function is MGF1 with SHA-384.</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>
      <t>Test vector for probabilistic signatures (sLen=48):</t>
      <artwork name="" type="" align="left" alt=""><![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 = 010001
d = 0d43242aefe1fb2c13fbc66e20b678c4336d20b1808c558b6e62ad16a2870771
80b177e1f01b12f9c6cd6c52630257ccef26a45135a990928773f3bd2fc01a313f1d
ac97a51cec71cb1fd7efc7adffdeb05f1fb04812c924ed7f4a8269925dad88bd7dcf
bc4ef01020ebfc60cb3e04c54f981fdbd273e69a8a58b8ceb7c2d83fbcbd6f784d05
2201b88a9848186f2a45c0d2826870733e6fd9aa46983e0a6e82e35ca20a439c5ee7
b502a9062e1066493bdadf8b49eb30d9558ed85abc7afb29b3c9bc644199654a4676
681af4babcea4e6f71fe4565c9c1b85d9985b84ec1abf1a820a9bbebee0df1398aae
2c85ab580a9f13e7743afd3108eb32100b870648fa6bc17e8abac4d3c99246b1f0ea
9f7f93a5dd5458c56d9f3f81ff2216b3c3680a13591673c43194d8e6fc93fc1e37ce
2986bd628ac48088bc723d8fbe293861ca7a9f4a73e9fa63b1b6d0074f5dea2a624c
5249ff3ad811b6255b299d6bc5451ba7477f19c5a0db690c3e6476398b1483d10314
afd38bbaf6e2fbdbcd62c3ca9797a420ca6034ec0a83360a3ee2adf4b9d4ba29731d
131b099a38d6a23cc463db754603211260e99d19affc902c915d7854554aabf608e3
ac52c19b8aa26ae042249b17b2d29669b5c859103ee53ef9bdc73ba3c6b537d5c34b
6d8f034671d7f3a8a6966cc4543df223565343154140fd7391c7e7be03e241f4ecfe
b877a051
msg = 8f3dc6fb8c4a02f4d6352edf0907822c1210a9b32f9bdda4c45a698c80023a
a6b59f8cfec5fdbb36331372ebefedae7d
salt = 051722b35f458781397c3a671a7d3bd3096503940e4c4f1aaa269d60300ce
449555cd7340100df9d46944c5356825abf
inv = 80682c48982407b489d53d1261b19ec8627d02b8cda5336750b8cee332ae26
0de57b02d72609c1e0e9f28e2040fc65b6f02d56dbd6aa9af8fde656f70495dfb723
ba01173d4707a12fddac628ca29f3e32340bd8f7ddb557cf819f6b01e445ad96f874
ba235584ee71f6581f62d4f43bf03f910f6510deb85e8ef06c7f09d9794a008be7ff
2529f0ebb69decef646387dc767b74939265fec0223aa6d84d2a8a1cc912d5ca25b4
e144ab8f6ba054b54910176d5737a2cff011da431bd5f2a0d2d66b9e70b39f4b050e
45c0d9c16f02deda9ddf2d00f3e4b01037d7029cd49c2d46a8e1fc2c0c17520af1f4
b5e25ba396afc4cd60c494a4c426448b35b49635b337cfb08e7c22a39b256dd032c0
0adddafb51a627f99a0e1704170ac1f1912e49d9db10ec04c19c58f420212973e0cb
329524223a6aa56c7937c5dffdb5d966b6cd4cbc26f3201dd25c80960a1a111b3294
7bb78973d269fac7f5186530930ed19f68507540eed9e1bab8b00f00d8ca09b3f099
aae46180e04e3584bd7ca054df18a1504b89d1d1675d0966c4ae1407be325cdf623c
f13ff13e4a28b594d59e3eadbadf6136eee7a59d6a444c9eb4e2198e8a974f27a39e
b63af2c9af3870488b8adaad444674f512133ad80b9220e09158521614f1faadfe85
05ef57b7df6813048603f0dd04f4280177a11380fbfc861dbcbd7418d62155248dad
5fdec0991f
encoded_msg = 6e0c464d9c2f9fbc147b43570fc4f238e0d0b38870b3addcf7
a4217df912ccef17a7f629aa850f63a063925f312d61d6437be954b45025e8282f9c
0b1131bc8ff19a8a928d859b37113db1064f92a27f64761c181c1e1f9b251ae5a2f8
a4047573b67a270584e089beadcb13e7c82337797119712e9b849ff56e04385d144d
3ca9d8d92bf78adb20b5bbeb3685f17038ec6afade3ef354429c51c687b45a7018ee
3a6966b3af15c9ba8f40e6461ba0a17ef5a799672ad882bab02b518f9da7c1a96294
5c2e9b0f02f29b31b9cdf3e633f9d9d2a22e96e1de28e25241ca7dd04147112f5789
73403e0f4fd80865965475d22294f065e17a1c4a201de93bd14223e6b1b999fd548f
2f759f52db71964528b6f15b9c2d7811f2a0a35d534b8216301c47f4f04f412cae14
2b48c4cdff78bc54df690fd43142d750c671dd8e2e938e6a440b2f825b6dbb3e19f1
d7a3c0150428a47948037c322365b7fe6fe57ac88d8f80889e9ff38177bad8c8d8d9
8db42908b389cb59692a58ce275aa15acb032ca951b3e0a3404b7f33f655b7c7d83a
2f8d1b6bbff49d5fcedf2e030e80881aa436db27a5c0dea13f32e7d460dbf01240c2
320c2bb5b3225b17145c72d61d47c8f84d1e19417ebd8ce3638a82d395cc6f7050b6
209d9283dc7b93fecc04f3f9e7f566829ac41568ef799480c733c09759aa9734e201
3d7640dc6151018ea902bc
blinded_msg = 10c166c6a711e81c46f45b18e5873cc4f494f003180dd7f115
585d871a28930259654fe28a54dab319cc5011204c8373b50a57b0fdc7a678bd74c5
23259dfe4fd5ea9f52f170e19dfa332930ad1609fc8a00902d725cfe50685c95e5b2
968c9a2828a21207fcf393d15f849769e2af34ac4259d91dfd98c3a707c509e1af55
647efaa31290ddf48e0133b798562af5eabd327270ac2fb6c594734ce339a14ea4fe
1b9a2f81c0bc230ca523bda17ff42a377266bc2778a274c0ae5ec5a8cbbe364fcf0d
2403f7ee178d77ff28b67a20c7ceec009182dbcaa9bc99b51ebbf13b7d542be33717
2c6474f2cd3561219fe0dfa3fb207cff89632091ab841cf38d8aa88af6891539f263
adb8eac6402c41b6ebd72984e43666e537f5f5fe27b2b5aa114957e9a580730308a5
f5a9c63a1eb599f093ab401d0c6003a451931b6d124180305705845060ebba6b0036
154fcef3e5e9f9e4b87e8f084542fd1dd67e7782a5585150181c01eb6d90cb958838
37384a5b91dbb606f266059ecc51b5acbaa280e45cfd2eec8cc1cdb1b7211c8e1480
5ba683f9b78824b2eb005bc8a7d7179a36c152cb87c8219e5569bba911bb32a1b923
ca83de0e03fb10fba75d85c55907dda5a2606bf918b056c3808ba496a4d955322120
40a5f44f37e1097f26dc27b98a51837daa78f23e532156296b64352669c94a8a855a
cf30533d8e0594ace7c442
blind_sig = 364f6a40dbfbc3bbb257943337eeff791a0f290898a67912
83bba581d9eac90a6376a837241f5f73a78a5c6746e1306ba3adab6067c32ff69115
734ce014d354e2f259d4cbfb890244fd451a497fe6ecf9aa90d19a2d441162f7eaa7
ce3fc4e89fd4e76b7ae585be2a2c0fd6fb246b8ac8d58bcb585634e30c9168a43478
6fe5e0b74bfe8187b47ac091aa571ffea0a864cb906d0e28c77a00e8cd8f6aba4317
a8cc7bf32ce566bd1ef80c64de041728abe087bee6cadd0b7062bde5ceef308a23bd
1ccc154fd0c3a26110df6193464fc0d24ee189aea8979d722170ba945fdcce9b1b4b
63349980f3a92dc2e5418c54d38a862916926b3f9ca270a8cf40dfb9772bfbdd9a3e
0e0892369c18249211ba857f35963d0e05d8da98f1aa0c6bba58f47487b8f663e395
091275f82941830b050b260e4767ce2fa903e75ff8970c98bfb3a08d6db91ab1746c
86420ee2e909bf681cac173697135983c3594b2def673736220452fde4ddec867d40
ff42dd3da36c84e3e52508b891a00f50b4f62d112edb3b6b6cc3dbd546ba10f36b03
f06c0d82aeec3b25e127af545fac28e1613a0517a6095ad18a98ab79f68801e05c17
5e15bae21f821e80c80ab4fdec6fb34ca315e194502b8f3dcf7892b511aee45060e3
994cd15e003861bc7220a2babd7b40eda03382548a34a7110f9b1779bf3ef6011361
611e6bc5c0dc851e1509de1a
sig = 6fef8bf9bc182cd8cf7ce45c7dcf0e6f3e518ae48f06f3c670c649ac737a8b
8119a34d51641785be151a697ed7825fdfece82865123445eab03eb4bb91cecf4d69
51738495f8481151b62de869658573df4e50a95c17c31b52e154ae26a04067d5ecdc
1592c287550bb982a5bb9c30fd53a768cee6baabb3d483e9f1e2da954c7f4cf492fe
3944d2fe456c1ecaf0840369e33fb4010e6b44bb1d721840513524d8e9a3519f40d1
b81ae34fb7a31ee6b7ed641cb16c2ac999004c2191de0201457523f5a4700dd64926
7d9286f5c1d193f1454c9f868a57816bf5ff76c838a2eeb616a3fc9976f65d4371de
ecfbab29362caebdff69c635fe5a2113da4d4d8c24f0b16a0584fa05e80e607c5d9a
2f765f1f069f8d4da21f27c2a3b5c984b4ab24899bef46c6d9323df4862fe51ce300
fca40fb539c3bb7fe2dcc9409e425f2d3b95e70e9c49c5feb6ecc9d43442c33d5000
3ee936845892fb8be475647da9a080f5bc7f8a716590b3745c2209fe05b17992830c
e15f32c7b22cde755c8a2fe50bd814a0434130b807dc1b7218d4e85342d70695a5d7
f29306f25623ad1e8aa08ef71b54b8ee447b5f64e73d09bdd6c3b7ca224058d7c67c
c7551e9241688ada12d859cb7646fbd3ed8b34312f3b49d69802f0eaa11bc4211c2f
7a29cd5c01ed01a39001c5856fab36228f5ee2f2e1110811872fe7c865c42ed59029
c706195d52
]]></artwork>
      <t>Test vector for deterministic signatures (sLen=0):</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
p = ca9d82e9059fa3b145da850e0c451ff31093d819644ba29a3409393de2adfa1b
cd65e8669a5c5140142c1404204edbc380d4e7a5c866c06bb2427c76b9e3d16bbfc1
b1668dec219b8c59fee90b7baf557fc2feb13f2f4b30d8606d20b9928f4f588a3b34
baa659b3bd1dd590c83e90e6251b5239fbbb73b12e90534a375e3f71
q = c075694f69db6a07456e19eeace01b430f2d6cc6cd5495d569e242b6f5e8ded7
df27e6aeea4db4e307554fb519b68279a58d9e2d25cee4b37668554eec2f2feb7924
6955a07bd526f02a6afedc7a3aff2b8953287fef2c4a02207ccb9f14e4612e9af344
7dd3401728a8957871b759b6bbf22aa0e8271b82f32dd5a2d2550197
n = 98530f850dcc894d84ecfce9dec3a475bf30ec3ce4606f677ac4a6ef63f763ff
64a162ef1c991d8094b5652d0d78c126b3e97d1d77eba2f833b5be9a124e003065ec
2a3ea4fbc31bc283de1c7cd8a971eb57aa7284b082562ccde572b73702068a6143e6
dabf886538ff419874c300a85f3d9d50f0731fc6b9c92a121fefb7911f5ea92d25b1
7a4f3b2883eff34a221b5c28c488e35067a8460d8fab1c405704ebfa1ca165d69cd4
e425995a03a447f6cbba5d20d459707ab4a2c537a5dbd02801d7b19a03aaa9aec21d
1c363996c6b9fee2cab370d501c9b67e7dc4a20eb0cdc3b24be242093b5a66119b96
da0fb0ec0b1b0da0bd0b92236ece47d5c95bdca7
e = 010001
d = 6b15d18e4f8220709fe75f7226ca517ef9b7320d28dc66d54fa89a5727670f24
c7a0f1857a0c6682338946a4a298e6e90788390e137553afbbe2a4297a7edd8128d6
1b68c8e1b96b7596f0fa0406e9308e2ba64735e344edc237c97b993411b7796721ae
54d05bda1574d5af913e59e30479b373e86676cb6566f7ada0480d3ae21d50ac94c0
b41c476e566d6bcdef88eeab3042ef1016527558e794b6029cff1120596fe2104fac
928a66ad2fb1094d1ae1231abf95206cae7cd4e7aad388199d7ac1fe17e3f9174362
32cffe70e12056e02cfb9604e73cc34984bb83f7112ed197bf3a4d9f6d0c0e3c4dd8
f2d9cbe17185f1e63561b08f7d14bd36112f3ea1
msg = 5465737420766563746f7220776974682064657465726d696e697374696320
70616464696e67
encoded_msg = 4021ac68705782fb7587bf24ac0528853025aa4a998db7b1a503af
b5b266cbd1876710a2b0aa6e37b70fca538d42285beddd61d965c02b2162c8644587
3bdaf687a29bf6b2ab10fa22013cae53ff1c78969ef6c3eb069bfef339a5df788044
d159678e571e50fc3fa40a30fe183348453542f258c663dc9c4b372895120ad12ff8
b8ec1d37d766b2604fbf50bf9d84432a59593d21d7f379d6bf9198ea2fa90ee5abad
b27eada5d6f40a2ec45aa4bb8710042beab5c6afb4381fc57012e61b3a815800e53e
69fe2fdccb3b4ee51968c1ef6281d7e8fe08c4337bad73d99e947df834e5402378a6
6142bf032dfade7e6e2d43ae90b145055861e06eff189b63bc
inv = 6e69972553327ee6240ce0de7146aea2243927cf9f7f52c0103367df79e3ba
febfa61c2ffdc41ea397a38523654a1a806f4eebcd5fe9a2592a463f1faa26c3601f
83f29141eda488f14f7c0aa82faa025e37adbe77e02e575f72f7b9d095882923476f
2328dfaeb23b607d2f706c6c8ef6c2aee50ddb14e6d27e043e7dec8e5dede6844aa8
0b2206b6019350d37925bb8819653aa7a13bfb9cc3c95b53378f278903b5c06a10c0
b3ce0aa028e9600f7b2733f0278565f9b88e9d92e039db78300170d7bbd32ce2b89a
d8944167839880e3a2aeba05bf00edc8032a63e6279bf42a131ccc9bb95b8693764b
27665274fb673bdfb7d69b7957ee8b64a99efbeed9
blinded_msg = 5a631b41e7759a634cef04359436e358143ee2892fbebd072d1e5c
c45475ff55b6b492e13c59979f4b968994ddca3cc068084d3b176a6132039c584707
acbb9862c009fa5b63cfb7b6f6d577825c1e81ad11059cb87a524083230f906ea0a4
d9db3434d49cf9f0ea52b2425db4d319f51540e5de6cfb30b86d5e5d810a284f3478
f6259f054407c854303ec23c2e0989dd57aa002e56ab6287594c25154a1646060cb4
f6479b07f627991f7089ac0491d5841d6461166b324b3d448b2a8071de68505503fe
adf7d8182d18d8b0d3b91d77b627a5ffae68f913efbbb2fc082437f845880f94f07d
873bc0c0688f60033235bcc1701dcba83dca944b05227884e3
blind_sig = 817596a0b568088b60c29482c0178d34e0d54dc34a9375152701e4e6
d5ef76c92f4281a377d8b2f438f6af4ef9c26dd38ad2cc932f90fe45d4c0a1ba10e6
95a1c8e797aa5023f84385904e5f378df5677b8eb7312f835f9e3a097b1b7e55fece
0d00ec3f52ba26b39c91322b6404eef4e567d909195bfc0f72690805ea3f71736d7e
b51e84556c5241786f5f37bf9d2a0305bf36454d9ab8b5a9f6fe03fd4ab472b5379d
7e8ab92e803c7c15bf3d0234653e1f6d80d23c7f127bed7fba3d297b62fee51b8e71
b04d402cf291ac87460011fd222cfd27b5669d79d1e0dcc8d911c2dc6d0edcd205a9
1278cc97019cfc709ce8a50297409e66f27b1299e386a6cd
sig = 848fc8a032ea073280a7d9146ae55bb0199cd1941c10a03cce1dc38579c4e7
7e87f259e250b16a9912ce2c085cb9489846f803fd6ed09bf8605c4aa8b0ebf2c938
093e53ad025a48b97f7975255805118c33fa0f73ec204b9723acefacd8031ab3d9f7
ebeaf996eee3678c788cea96932dd723b236355c0e6864fad2fc87b00e4eda476e90
f000936b0d9fa65bf1112fc296e8aa5bb05ca7cb32dec01407e3d3ed94c1ebb0dc43
0ea59588ccc0995a6e2f1423dbe06c6f27650b23b12eb343b9e461ba532825e5e265
72fbe723b69753c178361e7a834a566ce950df55ff97d314b384b3fa8c0098d560d4
c6ba519a9b6040f908adf34f6b2d5d30c265cd0fb1
]]></artwork>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAIC4+mEAA7W9634cx5Xl+z2fIkf6YPIcAMz7hd3qbupCi5YocgjJ7v5N
z5EjIyOBahaq4MoqUrB+6meZZ5knO/8VkVkXEJTlPnNsiwILmZERO/Zee60d
O8vn5+fRdrFduqfxm8tn8efLxaqPLxdXK7PdbdwYma7buHcf+WW/titzw639
xgzb88VmO5zbYXN1vhnNeaerz8f91edJHvVm655Glj+v1pu7p/FiNayjaHG7
eRpvN7txmyVJm2TRW3f3fr3pn8YvVlu3Wbnt+Zd6QBSNW7PqfzTL9YqH3jGD
28XT+H9s1/YsHteb7cYNIz/d3eiH/xlFZre9Xm+eRvF5zKPGp/Hzi/hLt1qM
Ucx/wtSfb8zq7dGn680VH5pxu7zj8fbCf+huzGL5NB76f0mS4YIJnQz5B2PX
3emYrnebhT3+jR/32e3t0n047HT5xX/4y//F6KoLu745POWLi/jZRfyn9bo/
eswX15vFuF3fXrvNyW/9o75Yrnf9sDQbd/woa97/y7Uzt4vVVbfYjn4pkXZh
c2O2i3dsThz/6WXbPvU3TY7xyQ+rt6v1+1XMvpyP1wwZm+3W2LdjvF7F22sX
sy/bxXp1vl2fTz/Gjy6/v3wc327W7M56+Ykf751b7dy8q/4ys2Tam7fj9fpW
Y73e4TU2/sbdxV9s7m6366uNub2+8zd734lf2e26c5uzOG3b1n8eNnkMM47j
8+nfk+EuL3Bb89ad/2mxHNerhy/CeC/dyv3Vaau++fbNv2bJqQFeMTWz2GC1
c/bW3Y+E+NJeuxs3Mpo3x7Plles2hpX8frPe3cYv172bTLA1myu3fRpfb7e3
49MnT9wto24vFsZuLti3J1mSJU/SpE6P1nzpbrfuxq9av/4Nq/7DRfwNLrxy
m4/+/tv1OD78y5cX8Zv16FY88Oqjt//rjo/+8M03aXFiqfiTN+sdYf/qdru4
YXNfm3FUKJ+/xhGc3Tqs5uzGbeNL/Ah7xgR0/P3562fffDVbb3/PqxUxePP3
2C4tnlRlcmS6Z7srYEV2S4vf5i1/wL3t28X+cx9MP3wRv9i8W6zcWfzFs7P4
h8tnH3WkbxbmbmHGe/eviK3NuNjexeshfsYqVwDV73El6x4e6WtG2pj39q93
b0+HevH5y/iNG53Z2Ouz+Lt/m2fz+beXMvLtejTLU+f9H683i3fG3p3fYtj/
GX/1k4++JdG4WQwL0y2WzOtpbGK7XmlrnKLWj/Ow2YUkejpLuli47eBtrw+e
3IxXT26PHvbk8y9fvbq+/Pb95/nuhz/Y4fPFOFarH56X4w/Pnhzt0h92y7vf
7Nt/wndNL6R7vV7e4WbuzavLD8JVjvRosXo8OrvbTHbnur8jCNui/K9OkZzw
uVtdmxsg2Dx8yfeswt2ueex/LUJfbTa7j4evuXu7fqcnk7bPn3/59al53hBz
6xuGMHYJaAnPX/PzdmFxnfgZAbgx/eLqJiYtkBmVwhWpXw3Dwi7cahu/nlB9
fNicdnTvXXexs2N/4frdk/+8WVwvNk9uzS0x8GSzvrjth49AevkbrPtS1l3u
M9sHv38t/Loy743yxhfXZnfT5CcGuM9j/Dp/WG2xgTPdUgh0d8M6xw9Wx+JG
6xfHvy5213bpF3hnVldPts4QE/xgR7sos7z4k+suJ+97bpZLICh94qfzATW6
eP3l8yODpG2T/wY7fHkRVvdrUPOFWS5Y3WphzuJLs9qa+HOz6djfGTbeuBuA
+fvFDTN/FpL6PWfxF8Thini65NRnPuIFPoFfiLIxg8kTetOtZ0cYx+X51g97
zyFeGh9qSX5MGtJsex3/QFpa/BTPZo0v724AqsVkg79prs/hjden5rqcpndk
t4/fvtndLN3dbxngB0IksKm9JX849589aKv3799f3CzsZj2uh62Y3xO3Ot8R
KxPQg6rr/yB9Ptmd32qQY/B8DtXYbczG2yzNfksAzU86Xcnh4+j8/Dw23aiI
4G/fXy/GGK6/U1DE462z5A3CRhgrgOnMSF73Th3vnXpP/eL3C3YOTutWPXv3
SHd8fnn57PGFFxX3bhuj946bh8Vm3DLb7Wbd76xGvwvO7mN1dxSrt1Osxj//
PMX6L79cxC+2sSPPrfrRz/D15WXsVnbdy4fnBfQQX+76b2+ef9Ekaf3LL/F2
zVV+1PuLGXe3twiMi2Cam0XfL10UfSoq62coLhtFrzaLqwWpFdpyNPWJ1pBd
t8xJUQm4LrZkYGvGa+TKCLsb9yuMfssKzx60XcyfK5643m21lmuDuxns37sY
lXPl9GyJC4JWEx79pzLJsCEfuCUeJtXybr31dppILSPJn5jCdF984+y1QTDd
jBjkDRxmtVV2XIjXO79vH07t2ozx1UYqQuP1PZ8hHwCCWQegATZbXJ9Hj2FC
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
VHDj89X+MMcTf4SP3gedT9unxHpUp/NbRoypNAWWQxnwtGedexjBi7apzytV
+f8eBJ8xOTrGZCGxvkjLu8mx1/n2lJmsiuv8ujcJRINHRR961P574A4HteH7
7Q4nsQcUPfDdSVAe4XBA3UiF2glkAiTNi5gk3b4rKITwaTQdyu7KnWfTuev8
jRLRAdiPnObgTcNv2N+LfTr+/FvR9eMvRQtb5sKXAJ1/e7danV9eG3ttbj78
ZpFuOR6+nimYKsycQMLKCEc43tFrtoezJ5+qgr7xrH7PraZvHPj+7tbFL168
8ApeN3hnuDg4U0TUfOhKR74yH8xNELTHDNLB3lbz4PfI6FRvlNoMGm4SH+G7
FuQLJ1+BEb4KYeGRwb6dzunvfYmJji5OEkCowp4A/gccHqWjUf3h7q9PYf+F
G+KUnx9zxAdI5NnRt69YfUFLSKXz99h4+0/VkZPvvtt/w8z0FU34Q/j+Jnb+
UEXsj095PzoHmNYDc0CaM46vQnTuuEobJvUro+2B96GleZoTiQW7zdTJtR/7
UJWcy8sm3uAEbi8U1LkT9N9rVMn5f9/hTbub+I0nR/5ocd8Z+FDZ8aTc86BG
u9Wwf5mGBSB6lbz82fA2WownzRsX8aNL2PXvjtsZzj1jCR078xu4+xdK/XjK
Nr4mgns89g16z7579nBb3n5uN+at/2aWcK0ixo3+7X99sZP8XON8r9LNH52e
fL+vb991t9U178I1By3xMWudvC12cr71/WknzKHXShR2b2QvaG/P4r+c6c0J
wLN/evIKkdf4h8rfcddvaKA7ei8ovoZIqpSjb+icXw7yrfZP/QnzB8eEZ3/z
do+svsVX56jhawv6qUFianHVI1TffzopieXd+dHpUejumhvVwwgfvkR9/F0O
j3R88NifFix8YigaaYok9H1P3zsRIP8DlN6/0PobzDJd8u8/evvMb/Xt79wf
03z/Ky9/apYvf/88DeF+ZJDpIO/ffzy8ZvHvatoI8957j28CY6E/qW/giqf2
u81snWCrIFfR7Ucr+nA93iz74adupdk6x++qf39wbu/bp+WjI87od+Gzonk8
fTnDbfxZ7NKh6GuTF02Suay2dd5mJrfO5JnJKn4septXbdr1TT3kQ54mva3L
quaGps2TMipbm2bJ0CdFmqRtMXSNSXpTll2fdE2aZbVrinzorakqRnZN4kpT
9kVapGnV89R8sCaq+8bmiTPGuLJ2RWHSJq1c15W27JIqqWyZV1lR2XpI07Yp
+zpPq6ZIy6Srctua3PSti4q0SwqbdGXHOrq0aQxPtE1RtVVXF5lpkj63fZKY
rmnTIUOFFEXem35wnan6qjdDmkRNlWSdy6q+TuqU2dmqThNmXGRVkzeuYtV9
rTXVRZe1WVFYN5ihSBuXN2mXY4qiiTrGZo5F2mZpnjDFKnGu7pK+SZssSauy
qYrBDW1eZky/ykubZVmatGXlytw0PR9lUVa0+TDYsumbguU3LiuwSVI3ruxs
V/bZ0FeNcZWxA9Mb2opVFxkzM22fD1ldF0ka1S7PXGcNk0gak2bO2qxNbG37
NC2r3lo7dFmeptFf8AWmmZrWGsdesetNXjZZ3ZV523dtP1T8tzSuRrth0qxu
EtvneWGSpDJdXua2iZIKM3WVLGeTEgtXZdJkaZ+3RVH2uenKNnV9mpg6z9sh
LfsmH1yaD5XJe+aRdPoe18xWpu1YiTH4X9XYtk76Ibem77BmOzRJYfomy/K+
rNKk6Yfe5Uln6j6vatd2DG6YiS2GvjPYqO17V1VVOuDaA4sv8N62z5KsHbKm
TgabZEwjKzFjxrPMYNLWWZkz6o2pW2yepXzaJ63rqmxwTJxfp11d97ap265u
cYWixblc12eulaskJcFS9onJI9sORTnUrbF1VuN6qSnT1jRdmzVlm2d922Wu
tJiyqF3ZKsQyvNmaHFulpat7DBw1Bg9OKnySsHKNSxtc0hGSZYO7E6iVa5qs
GfCVKjeYFMhixwuTtXll+rpjx6MWd2bCOI7lF/hym7Upbtp3fd1i185m7HlT
RjroNc4WfdVC+W3NvrSJnIJn1oRj3lWDAyyMIXT6pBlYRWE7l2ZlYkucOCnq
yLDAXq6ds37HxuBTaWerDHzIyd0YTr9KGSoDMDpnmiFnpkXXDTXmzzuXR9gw
yzVO7Sqb5s4VXNWWpSMk+TyvM5k9HfAL/NUVuUtYOntVNqYtWuAjz6O6Hmxe
dq4q2HZshHOxsVmq5+A1BCIDEfMAhEsG7h6SjvhwDvABURJQwkQZoNJmwrEy
y0xd1GBZXxcAokkdS3dEGVCaNFWVmKQEWAaNWCaASmWqtHa2iqqmLOu8TuTb
Bq8qqyIBDK0ZsEbh8rYewLIhbXBcHMzKUG1qqjyvUnDAFSw3qnKgzbm0yHkW
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
+H8BKilnbxSNAAA=

-->

</rfc>
