<?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.13 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-cfrg-frost-07" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.13.0 -->
  <front>
    <title abbrev="FROST">Two-Round Threshold Schnorr Signatures with FROST</title>
    <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-frost-07"/>
    <author initials="D." surname="Connolly" fullname="Deirdre Connolly">
      <organization>Zcash Foundation</organization>
      <address>
        <email>durumcrustulum@gmail.com</email>
      </address>
    </author>
    <author initials="C." surname="Komlo" fullname="Chelsea Komlo">
      <organization>University of Waterloo, Zcash Foundation</organization>
      <address>
        <email>ckomlo@uwaterloo.ca</email>
      </address>
    </author>
    <author initials="I." surname="Goldberg" fullname="Ian Goldberg">
      <organization>University of Waterloo</organization>
      <address>
        <email>iang@uwaterloo.ca</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="July" day="11"/>
    <area>General</area>
    <workgroup>CFRG</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>In this draft, we present the two-round signing variant of FROST, a Flexible Round-Optimized
Schnorr Threshold signature scheme. FROST signatures can be issued after a threshold number
of entities cooperate to issue a signature, allowing for improved distribution of trust and
redundancy with respect to a secret key. Further, this draft specifies signatures that are
compatible with <xref target="RFC8032"/>. However, unlike <xref target="RFC8032"/>, the protocol for producing
signatures in this draft is not deterministic, so as to ensure protection against a
key-recovery attack that is possible when even only one participant is malicious.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Crypto Forum Research Group mailing list (cfrg@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/search/?email_list=cfrg"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/cfrg/draft-irtf-cfrg-frost"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>DISCLAIMER: This is a work-in-progress draft of FROST.</t>
      <t>RFC EDITOR: PLEASE REMOVE THE FOLLOWING PARAGRAPH The source for this draft is
maintained in GitHub. Suggested changes should be submitted as pull requests
at https://github.com/cfrg/draft-irtf-cfrg-frost. Instructions are on that page as
well.</t>
      <t>Unlike signatures in a single-party setting, threshold signatures
require cooperation among a threshold number of signers each holding a share
of a common private key. The security of threshold schemes in general assume
that an adversary can corrupt strictly fewer than a threshold number of participants.</t>
      <t>This document presents a variant of a Flexible Round-Optimized Schnorr Threshold (FROST)
signature scheme originally defined in <xref target="FROST20"/>. FROST reduces network overhead during
threshold signing operations while employing a novel technique to protect against forgery
attacks applicable to prior Schnorr-based threshold signature constructions. The variant of
FROST presented in this document requires two rounds to compute a signature. Single-round
signing with FROST is out of scope.</t>
      <t>For select ciphersuites, the signatures produced by this draft are compatible with
<xref target="RFC8032"/>. However, unlike <xref target="RFC8032"/>, signatures produced by FROST are not
deterministic, since deriving nonces deterministically allows for a complete key-recovery
attack in multi-party discrete logarithm-based signatures, such as FROST.</t>
      <t>While an optimization to FROST was shown in <xref target="Schnorr21"/> that reduces scalar multiplications
from linear in the number of signers to constant, this draft does not specify that optimization
due to the malleability that this optimization introduces, as shown in <xref target="StrongerSec22"/>.
Specifically, this optimization removes the guarantee that the set of signers that started
round one of the protocol is the same set of signers that produced the signature output by
round two.</t>
      <t>Key generation for FROST signing is out of scope for this document. However, for completeness,
key generation with a trusted dealer is specified in <xref target="dep-dealer"/>.</t>
      <section anchor="change-log">
        <name>Change Log</name>
        <t>draft-06</t>
        <ul spacing="normal">
          <li>Make verification a per-ciphersuite functionality (#219)</li>
          <li>Use per-signer values of rho to mitigate protocol malleability (#217)</li>
          <li>Correct prime-order subgroup checks (#215, #211)</li>
          <li>Fix bug in ed25519 ciphersuite description (#205)</li>
          <li>Various editorial improvements (#208, #209, #210, #218)</li>
        </ul>
        <t>draft-05</t>
        <ul spacing="normal">
          <li>Update test vectors to include version string (#202, #203)</li>
          <li>Rename THRESHOLD_LIMIT to MIN_SIGNERS (#192)</li>
          <li>Use non-contiguous signers for the test vectors (#187)</li>
          <li>Add more reasoning why the coordinator MUST abort (#183)</li>
          <li>Add a function to generate nonces (#182)</li>
          <li>Add MUST that all participants have the same view of VSS commitment (#174)</li>
          <li>Use THRESHOLD_LIMIT instead of t and MAX_SIGNERS instead of n (#171)</li>
          <li>Specify what the dealer is trusted to do (#166)</li>
          <li>Clarify types of NUM_SIGNERS and THRESHOLD_LIMIT (#165)</li>
          <li>Assert that the network channel used for signing should be authenticated (#163)</li>
          <li>Remove wire format section (#156)</li>
          <li>Update group commitment derivation to have a single scalarmul (#150)</li>
          <li>Use RandomNonzeroScalar for single-party Schnorr example (#148)</li>
          <li>Fix group notation and clarify member functions (#145)</li>
          <li>Update existing implementations table (#136)</li>
          <li>Various editorial improvements (#135, #143, #147, #149, #153, #158, #162, #167, #168, #169, #170, #175, #176, #177, #178, #184, #186, #193, #198, #199)</li>
        </ul>
        <t>draft-04</t>
        <ul spacing="normal">
          <li>Added methods to verify VSS commitments and derive group info (#126, #132).</li>
          <li>Changed check for participants to consider only nonnegative numbers (#133).</li>
          <li>Changed sampling for secrets and coefficients to allow the zero element (#130).</li>
          <li>Split test vectors into separate files (#129)</li>
          <li>Update wire structs to remove commitment shares where not necessary (#128)</li>
          <li>Add failure checks (#127)</li>
          <li>Update group info to include each participant's key and clarify how public key material is obtained (#120, #121).</li>
          <li>Define cofactor checks for verification (#118)</li>
          <li>Various editorial improvements and add contributors (#124, #123, #119, #116, #113, #109)</li>
        </ul>
        <t>draft-03</t>
        <ul spacing="normal">
          <li>Refactor the second round to use state from the first round (#94).</li>
          <li>Ensure that verification of signature shares from the second round uses commitments from the first round (#94).</li>
          <li>Clarify RFC8032 interoperability based on PureEdDSA (#86).</li>
          <li>Specify signature serialization based on element and scalar serialization (#85).</li>
          <li>Fix hash function domain separation formatting (#83).</li>
          <li>Make trusted dealer key generation deterministic (#104).</li>
          <li>Add additional constraints on participant indexes and nonce usage (#105, #103, #98, #97).</li>
          <li>Apply various editorial improvements.</li>
        </ul>
        <t>draft-02</t>
        <ul spacing="normal">
          <li>Fully specify both rounds of FROST, as well as trusted dealer key generation.</li>
          <li>Add ciphersuites and corresponding test vectors, including suites for RFC8032 compatibility.</li>
          <li>Refactor document for editorial clarity.</li>
        </ul>
        <t>draft-01</t>
        <ul spacing="normal">
          <li>Specify operations, notation and cryptographic dependencies.</li>
        </ul>
        <t>draft-00</t>
        <ul spacing="normal">
          <li>Outline CFRG draft based on draft-komlo-frost.</li>
        </ul>
      </section>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</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.</t>
      <t>The following terminology is used throughout this document.</t>
      <ul spacing="normal">
        <li>A participant is an entity that is trusted to hold and use a signing key share.</li>
        <li>
          <tt>MAX_SIGNERS</tt> denotes the number of participants, and the number of shares that <tt>s</tt> is split into. This value MUST NOT exceed 2^16-1.</li>
        <li>
          <tt>MIN_SIGNERS</tt> denotes the threshold number of participants required to issue a signature, where MIN_SIGNERS &lt;= MAX_SIGNERS.</li>
        <li>
          <tt>NUM_SIGNERS</tt> denotes the number of signers that participate in an invocation of FROST signing, where
MIN_SIGNERS &lt;= NUM_SIGNERS &lt;= MAX_SIGNERS.</li>
        <li>An identifier is an integer value associated with a participant, or signer,
and is a value in the range [1, MAX_SIGNERS].</li>
      </ul>
      <t>Additionally, the following notation is used throughout the document.</t>
      <ul spacing="normal">
        <li>
          <tt>encode_uint16(x)</tt>: Convert two byte unsigned integer (uint16) <tt>x</tt> to a 2-byte,
big-endian byte string. For example, <tt>encode_uint16(310) = [0x01, 0x36]</tt>.</li>
        <li>
          <tt>random_bytes(n)</tt>: Outputs <tt>n</tt> bytes, sampled uniformly at random
using a cryptographically secure pseudorandom number generator (CSPRNG).</li>
        <li>
          <tt>len(l)</tt>: Outputs the length of input list <tt>l</tt>, e.g., <tt>len([1,2,3]) = 3)</tt>.</li>
        <li>
          <tt>reverse(l)</tt>: Outputs the list <tt>l</tt> in reverse order, e.g., <tt>reverse([1,2,3]) = [3,2,1]</tt>.</li>
        <li>
          <tt>range(a, b)</tt>: Outputs a list of integers from <tt>a</tt> to <tt>b-1</tt> in ascending order, e.g., <tt>range(1, 4) = [1,2,3]</tt>.</li>
        <li>
          <tt>pow(a, b)</tt>: Output the integer result of <tt>a</tt> to the power of <tt>b</tt>, e.g., <tt>pow(2, 3) = 8</tt>.</li>
        <li>|| denotes concatenation, i.e., x || y = xy.</li>
        <li>nil denotes an empty byte string.</li>
      </ul>
      <t>Unless otherwise stated, we assume that secrets are sampled uniformly at random
using a cryptographically secure pseudorandom number generator (CSPRNG); see
<xref target="RFC4086"/> for additional guidance on the generation of random numbers.</t>
    </section>
    <section anchor="cryptographic-dependencies">
      <name>Cryptographic Dependencies</name>
      <t>FROST signing depends on the following cryptographic constructs:</t>
      <ul spacing="normal">
        <li>Prime-order Group, <xref target="dep-pog"/>;</li>
        <li>Cryptographic hash function, <xref target="dep-hash"/>;</li>
      </ul>
      <t>These are described in the following sections.</t>
      <section anchor="dep-pog">
        <name>Prime-Order Group</name>
        <t>FROST depends on an abelian group of prime order <tt>p</tt>. We represent this
group as the object <tt>G</tt> that additionally defines helper functions described below. The group operation
for <tt>G</tt> is addition <tt>+</tt> with identity element <tt>I</tt>. For any elements <tt>A</tt> and <tt>B</tt> of the group <tt>G</tt>,
<tt>A + B = B + A</tt> is also a member of <tt>G</tt>. Also, for any <tt>A</tt> in <tt>G</tt>, there exists an element
<tt>-A</tt> such that <tt>A + (-A) = (-A) + A = I</tt>. For convenience, we use <tt>-</tt> to denote
subtraction, e.g., <tt>A - B = A + (-B)</tt>. Scalar multiplication is equivalent to the repeated
application of the group operation on an element A with itself <tt>r-1</tt> times, this is denoted
as <tt>r*A = A + ... + A</tt>. For any element <tt>A</tt>, <tt>p * A = I</tt>. We denote <tt>B</tt> as a fixed generator
of the group. Scalar base multiplication is equivalent to the repeated application of the group
operation <tt>B</tt> with itself <tt>r-1</tt> times, this is denoted as <tt>ScalarBaseMult(r)</tt>. The set of
scalars corresponds to <tt>GF(p)</tt>, which we refer to as the scalar field. This document uses types
<tt>Element</tt> and <tt>Scalar</tt> to denote elements of the group <tt>G</tt> and its set of scalars, respectively.
We denote equality comparison as <tt>==</tt> and assignment of values by <tt>=</tt>.</t>
        <t>We now detail a number of member functions that can be invoked on <tt>G</tt>.</t>
        <ul spacing="normal">
          <li>Order(): Outputs the order of <tt>G</tt> (i.e. <tt>p</tt>).</li>
          <li>Identity(): Outputs the identity <tt>Element</tt> of the group (i.e. <tt>I</tt>).</li>
          <li>RandomScalar(): Outputs a random <tt>Scalar</tt> element in GF(p).</li>
          <li>SerializeElement(A): Maps an <tt>Element</tt> <tt>A</tt> to a unique byte array <tt>buf</tt> of fixed length <tt>Ne</tt>.</li>
          <li>DeserializeElement(buf): Attempts to map a byte array <tt>buf</tt> to an <tt>Element</tt> <tt>A</tt>,
and fails if the input is not a valid byte representation of an element of
the group. This function can raise a DeserializeError if deserialization fails
or <tt>A</tt> is the identity element of the group; see <xref target="ciphersuites"/> for group-specific
input validation steps.</li>
          <li>SerializeScalar(s): Maps a Scalar <tt>s</tt> to a unique byte array <tt>buf</tt> of fixed length <tt>Ns</tt>.</li>
          <li>DeserializeScalar(buf): Attempts to map a byte array <tt>buf</tt> to a <tt>Scalar</tt> <tt>s</tt>.
This function can raise a DeserializeError if deserialization fails; see
<xref target="ciphersuites"/> for group-specific input validation steps.</li>
        </ul>
      </section>
      <section anchor="dep-hash">
        <name>Cryptographic Hash Function</name>
        <t>FROST requires the use of a cryptographically secure hash function, generically
written as H, which functions effectively as a random oracle. For concrete
recommendations on hash functions which SHOULD be used in practice, see
<xref target="ciphersuites"/>. Using H, we introduce four separate domain-separated hashes,
H1, H2, H3, and H4, where H1, H2, and H4 map arbitrary byte strings to Scalar elements of
the prime-order group scalar field, and H3 is an alias for H with a domain separator.
The details of H1, H2, H3, and H4 vary based on ciphersuite. See <xref target="ciphersuites"/>
for more details about each.</t>
      </section>
    </section>
    <section anchor="helpers">
      <name>Helper functions</name>
      <t>Beyond the core dependencies, the protocol in this document depends on the
following helper operations:</t>
      <ul spacing="normal">
        <li>Nonce generation, <xref target="dep-nonces"/></li>
        <li>Polynomial operations, <xref target="dep-polynomial"/>;</li>
        <li>Encoding operations, <xref target="dep-encoding"/>;</li>
        <li>Signature binding <xref target="dep-binding-factor"/>, group commitment <xref target="dep-group-commit"/>, and challenge computation <xref target="dep-sig-challenge"/></li>
      </ul>
      <t>These sections describes these operations in more detail.</t>
      <section anchor="dep-nonces">
        <name>Nonce generation</name>
        <t>To hedge against a bad RNG that outputs predictable values, we generate
nonces by sourcing fresh randomness and combine with the secret key,
to create a domain-separated hash function from the ciphersuite hash
function <tt>H</tt>, <tt>H4</tt>:</t>
        <artwork><![CDATA[
  nonce_generate(secret):

  Inputs:
  - secret, a Scalar

  Outputs: nonce, a Scalar

  def nonce_generate(secret):
    k_enc = random_bytes(32)
    secret_enc = G.SerializeScalar(secret)
    return H4(k_enc || secret_enc)
]]></artwork>
      </section>
      <section anchor="dep-polynomial">
        <name>Polynomial Operations</name>
        <t>This section describes operations on and associated with polynomials over Scalars
that are used in the main signing protocol. A polynomial of maximum degree t
is represented as a list of t coefficients, where the constant term of the polynomial
is in the first position and the highest-degree coefficient is in the last position.
A point on the polynomial is a tuple (x, y), where <tt>y = f(x)</tt>. For notational
convenience, we refer to the x-coordinate and y-coordinate of a
point p as <tt>p.x</tt> and <tt>p.y</tt>, respectively.</t>
        <section anchor="evaluation-of-a-polynomial">
          <name>Evaluation of a polynomial</name>
          <t>This section describes a method for evaluating a polynomial <tt>f</tt> at a
particular input <tt>x</tt>, i.e., <tt>y = f(x)</tt> using Horner's method.</t>
          <artwork><![CDATA[
  polynomial_evaluate(x, coeffs):

  Inputs:
  - x, input at which to evaluate the polynomial, a Scalar
  - coeffs, the polynomial coefficients, a list of Scalars

  Outputs: Scalar result of the polynomial evaluated at input x

  def polynomial_evaluate(x, coeffs):
    value = 0
    for coeff in reverse(coeffs):
      value *= x
      value += coeff
    return value
]]></artwork>
        </section>
        <section anchor="lagrange-coefficients">
          <name>Lagrange coefficients</name>
          <t>The function <tt>derive_lagrange_coefficient</tt> derives a Lagrange coefficient
to later perform polynomial interpolation, and is provided a list of x-coordinates
as input. Note that <tt>derive_lagrange_coefficient</tt> does not permit any x-coordinate
to equal 0. Lagrange coefficients are used in FROST to evaluate a polynomial <tt>f</tt>
at x-coordinate 0, i.e., <tt>f(0)</tt>, given a list of <tt>t</tt> other x-coordinates.</t>
          <artwork><![CDATA[
  derive_lagrange_coefficient(x_i, L):

  Inputs:
  - x_i, an x-coordinate contained in L, a Scalar
  - L, the set of x-coordinates, each a Scalar

  Outputs: L_i, the i-th Lagrange coefficient

  Errors:
  - "invalid parameters", if any x-coordinate is equal to 0 or if x_i
    is not in L

  def derive_lagrange_coefficient(x_i, L):
    if x_i == 0:
      raise "invalid parameters"
    for x_j in L:
      if x_j == 0:
        raise "invalid parameters"
    if x_i not in L:
      raise "invalid parameters"

    numerator = Scalar(1)
    denominator = Scalar(1)
    for x_j in L:
      if x_j == x_i: continue
      numerator *= x_j
      denominator *= x_j - x_i

    L_i = numerator / denominator
    return L_i
]]></artwork>
        </section>
        <section anchor="deriving-the-constant-term-of-a-polynomial">
          <name>Deriving the constant term of a polynomial</name>
          <t>Secret sharing requires "splitting" a secret, which is represented as
a constant term of some polynomial <tt>f</tt> of degree <tt>t-1</tt>. Recovering the
constant term occurs with a set of <tt>t</tt> points using polynomial
interpolation, defined as follows.</t>
          <artwork><![CDATA[
  Inputs:
  - points, a set of t points on a polynomial f, each a tuple of two
    Scalar values representing the x and y coordinates

  Outputs: The constant term of f, i.e., f(0)

  def polynomial_interpolation(points):
    L = []
    for point in points:
      L.append(point.x)

    f_zero = Scalar(0)
    for point in points:
      delta = point.y * derive_lagrange_coefficient(point.x, L)
      f_zero = f_zero + delta

    return f_zero
]]></artwork>
        </section>
      </section>
      <section anchor="dep-encoding">
        <name>List Operations</name>
        <t>This section describes helper functions that work on lists of values produced
during the FROST protocol. The following function encodes a list of signer
commitments into a bytestring for use in the FROST protocol.</t>
        <artwork><![CDATA[
  Inputs:
  - commitment_list = [(i, hiding_nonce_commitment_i, binding_nonce_commitment_i), ...],
    a list of commitments issued by each signer, where each element in the list
    indicates the signer identifier i and their two commitment Element values
    (hiding_nonce_commitment_i, binding_nonce_commitment_i). This list MUST be sorted
    in ascending order by signer identifier.

  Outputs: A byte string containing the serialized representation of commitment_list

  def encode_group_commitment_list(commitment_list):
    encoded_group_commitment = nil
    for (identifier, hiding_nonce_commitment, binding_nonce_commitment) in commitment_list:
      encoded_commitment = encode_uint16(identifier) ||
                           G.SerializeElement(hiding_nonce_commitment) ||
                           G.SerializeElement(binding_nonce_commitment)
      encoded_group_commitment = encoded_group_commitment || encoded_commitment
    return encoded_group_commitment
]]></artwork>
        <t>The following function is used to extract participant identifiers from a commitment
list.</t>
        <artwork><![CDATA[
  Inputs:
  - commitment_list = [(i, hiding_nonce_commitment_i, binding_nonce_commitment_i), ...],
    a list of commitments issued by each signer, where each element in the list
    indicates the signer identifier i and their two commitment Element values
    (hiding_nonce_commitment_i, binding_nonce_commitment_i). This list MUST be sorted
    in ascending order by signer identifier.

  Outputs: A list of signer participant identifiers

def participants_from_commitment_list(commitment_list):
  identifiers = []
  for (identifier, _, _) in commitment_list:
    identifiers.append(identifier)
  return identifiers
]]></artwork>
        <t>The following function is used to extract a binding factor from a list of binding factors.</t>
        <artwork><![CDATA[
  Inputs:
  - binding_factor_list = [(i, binding_factor), ...],
    a list of binding factors for each signer, where each element in the list
    indicates the signer identifier i and their binding factor. This list MUST be sorted
    in ascending order by signer identifier.
  - identifier, Identifier i of the signer.

  Outputs: A Scalar value.

  Errors: "invalid participant", when the designated participant is not known

def binding_factor_for_participant(binding_factor_list, identifier):
  binding_factors = []
  for (i, binding_factor) in commitment_list:
    if identifier == i:
      return binding_factor
  raise "invalid participant"
]]></artwork>
      </section>
      <section anchor="dep-binding-factor">
        <name>Binding Factors Computation</name>
        <t>This section describes the subroutine for computing binding factors based
on the signer commitment list and message to be signed.</t>
        <artwork><![CDATA[
  Inputs:
  - commitment_list = [(i, hiding_nonce_commitment_i, binding_nonce_commitment_i), ...],
    a list of commitments issued by each signer, where each element in the list
    indicates the signer identifier i and their two commitment Element values
    (hiding_nonce_commitment_i, binding_nonce_commitment_i). This list MUST be sorted
    in ascending order by signer identifier.
  - msg, the message to be signed.

  Outputs: A list of (identifier, Scalar) tuples representing the binding factors.

  def compute_binding_factors(commitment_list, msg):
    msg_hash = H3(msg)
    encoded_commitment_hash = H3(encode_group_commitment_list(commitment_list))
    rho_input_prefix = msg_hash || encoded_commitment_hash

    binding_factor_list = []
    for (identifier, hiding_nonce_commitment, binding_nonce_commitment) in commitment_list:
      rho_input = rho_input_prefix || encode_uint16(identifier)
      binding_factor = H1(rho_input)
      binding_factor_list.append((identifier, binding_factor))
    return binding_factor_list
]]></artwork>
      </section>
      <section anchor="dep-group-commit">
        <name>Group Commitment Computation</name>
        <t>This section describes the subroutine for creating the group commitment
from a commitment list.</t>
        <artwork><![CDATA[
  Inputs:
  - commitment_list =
     [(i, hiding_nonce_commitment_i, binding_nonce_commitment_i), ...], a list
    of commitments issued by each signer, where each element in the list
    indicates the signer identifier i and their two commitment Element values
    (hiding_nonce_commitment_i, binding_nonce_commitment_i). This list MUST be
    sorted in ascending order by signer identifier.
  - binding_factor_list = [(i, binding_factor), ...],
    a list of (identifier, Scalar) tuples representing the binding factor Scalar
    for the given identifier. This list MUST be sorted in ascending order by identifier.

  Outputs: An Element in G representing the group commitment

  def compute_group_commitment(commitment_list, binding_factor_list):
    group_commitment = G.Identity()
    for (identifier, hiding_nonce_commitment, binding_nonce_commitment) in commitment_list:
      binding_factor = binding_factor_for_participant(binding_factors, identifier)
      group_commitment = group_commitment +
        (hiding_nonce_commitment + (binding_factor * binding_nonce_commitment))
    return group_commitment
]]></artwork>
      </section>
      <section anchor="dep-sig-challenge">
        <name>Signature Challenge Computation</name>
        <t>This section describes the subroutine for creating the per-message challenge.</t>
        <artwork><![CDATA[
  Inputs:
  - group_commitment, an Element in G representing the group commitment
  - group_public_key, public key corresponding to the group signing key, an
    Element in G.
  - msg, the message to be signed.

  Outputs: A Scalar representing the challenge

  def compute_challenge(group_commitment, group_public_key, msg):
    group_comm_enc = G.SerializeElement(group_commitment)
    group_public_key_enc = G.SerializeElement(group_public_key)
    challenge_input = group_comm_enc || group_public_key_enc || msg
    challenge = H2(challenge_input)
    return challenge
]]></artwork>
      </section>
    </section>
    <section anchor="frost-spec">
      <name>Two-Round FROST Signing Protocol</name>
      <t>We now present the two-round variant of the FROST threshold signature protocol for producing Schnorr signatures.
It involves signer participants and a Coordinator. Signer participants are
entities with signing key shares that participate in the threshold signing
protocol. The Coordinator is an entity with the following responsibilities:</t>
      <ol spacing="normal" type="1"><li>Determining which signers will participate (at least MIN_SIGNERS in number);</li>
        <li>Coordinating rounds (receiving and forwarding inputs among participants); and</li>
        <li>Aggregating signature shares output by each participant, and publishing the resulting signature.</li>
      </ol>
      <t>FROST assumes the selection of all participants, including Coordinator and set of
signers, are all chosen external to the protocol. Note that it is possible to
deploy the protocol without a distinguished Coordinator; see <xref target="no-coordinator"/>
for more information.</t>
      <t>Because key generation is not specified, all signers are assumed to have the (public) group state that we refer to as "group info"
below, and their corresponding signing key shares.</t>
      <t>In particular, it is assumed that the Coordinator and each signer participant <tt>P_i</tt> knows the following
group info:</t>
      <ul spacing="normal">
        <li>Group public key, an <tt>Element</tt> in <tt>G</tt>, denoted <tt>PK</tt>, corresponding
to the group secret key <tt>s</tt>, which is a <tt>Scalar</tt>. <tt>PK</tt> is an output from the group's key generation protocol, such as <tt>trusted_dealer_keygen</tt> or a DKG.</li>
        <li>Public keys for each signer, denoted <tt>PK_i</tt>, which are similarly outputs
from the group's key generation protocol, <tt>Element</tt> values in <tt>G</tt>.</li>
      </ul>
      <t>And that each participant with identifier <tt>i</tt> additionally knows the following:</t>
      <ul spacing="normal">
        <li>Participant <tt>i</tt>s signing key share <tt>sk_i</tt>, which is the i-th secret share of <tt>s</tt>, a <tt>Scalar</tt>.</li>
      </ul>
      <t>By construction, <tt>PK = G.ScalarBaseMult(s)</tt> and <tt>PK_i = G.ScalarMultBase(sk_i)</tt> for each participant <tt>i</tt>.</t>
      <t>The exact key generation mechanism is out of scope for this specification. In general,
key generation is a protocol that outputs (1) a shared, group public key PK owned
by each Signer, and (2) individual shares of the signing key owned by each Signer.
In general, two possible key generation mechanisms are possible, one that requires
a single, trusted dealer, and the other which requires performing a distributed
key generation protocol. We highlight key generation mechanism by a trusted dealer
in <xref target="dep-dealer"/>, for reference.</t>
      <t>This signing variant of FROST requires signers to perform two network rounds:
1) generating and publishing commitments, and 2) signature share generation and
publication. The first round serves for each participant to issue a commitment to
a nonce. The second round receives commitments for all signers as well as the message,
and issues a signature share with respect to that message. The Coordinator performs
the coordination of each of these rounds. At the end of the second round, the
Coordinator then performs an aggregation step and outputs the final signature.
This complete interaction is shown in <xref target="fig-frost"/>.</t>
      <figure anchor="fig-frost">
        <name>FROST signature overview</name>
        <artwork><![CDATA[
        (group info)            (group info,     (group info,
            |               signing key share)   signing key share)
            |                         |                |
            v                         v                v
        Coordinator               Signer-1   ...   Signer-n
    ------------------------------------------------------------
   message
------------>
            |
      == Round 1 (Commitment) ==
            |    signer commitment   |                 |
            |<-----------------------+                 |
            |          ...                             |
            |    signer commitment                     |
            |<-----------------------------------------+

      == Round 2 (Signature Share Generation) ==
            |
            |     signer input       |                 |
            +------------------------>                 |
            |     signature share    |                 |
            |<-----------------------+                 |
            |          ...                             |
            |     signer input                         |
            +------------------------------------------>
            |     signature share                      |
            <------------------------------------------+
            |
      == Aggregation ==
            |
  signature |
<-----------+
]]></artwork>
      </figure>
      <t>Details for round one are described in <xref target="frost-round-one"/>, and details for round two
are described in <xref target="frost-round-two"/>. The final Aggregation step is described in
<xref target="frost-aggregation"/>.</t>
      <t>FROST assumes that all inputs to each round, especially those of which are received
over the network, are validated before use. In particular, this means that any value
of type Element or Scalar is deserialized using DeserializeElement and DeserializeScalar,
respectively, as these functions perform the necessary input validation steps.</t>
      <t>FROST assumes reliable message delivery between the Coordinator and signer participants in
order for the protocol to complete. An attacker masquerading as another participant
will result only in an invalid signature; see <xref target="sec-considerations"/>. However, in order
to identify any participant which has misbehaved (resulting in the protocol aborting)
to take actions such as excluding them from future signing operations, we assume that
the network channel is additionally authenticated; confidentiality is not required.</t>
      <section anchor="frost-round-one">
        <name>Round One - Commitment</name>
        <t>Round one involves each signer generating nonces and their corresponding public commitments.
A nonce is a pair of Scalar values, and a commitment is a pair of Element values.</t>
        <t>Each signer in round one generates a nonce <tt>nonce = (hiding_nonce, binding_nonce)</tt> and commitment
<tt>comm = (hiding_nonce_commitment, binding_nonce_commitment)</tt>.</t>
        <artwork><![CDATA[
  Inputs: sk_i, the secret key share, a Scalar

  Outputs: (nonce, comm), a tuple of nonce and nonce commitment pairs,
    where each value in the nonce pair is a Scalar and each value in
    the nonce commitment pair is an Element

  def commit(sk_i):
    hiding_nonce = nonce_generate(sk_i)
    binding_nonce = nonce_generate(sk_i)
    hiding_nonce_commitment = G.ScalarBaseMult(hiding_nonce)
    binding_nonce_commitment = G.ScalarBaseMult(binding_nonce)
    nonce = (hiding_nonce, binding_nonce)
    comm = (hiding_nonce_commitment, binding_nonce_commitment)
    return (nonce, comm)
]]></artwork>
        <t>The private output <tt>nonce</tt> from Participant <tt>P_i</tt> is stored locally and kept private
for use in the second round. This nonce MUST NOT be reused in more than one invocation
of FROST, and it MUST be generated from a source of secure randomness. The public output
<tt>comm</tt> from Participant <tt>P_i</tt> is sent to the Coordinator.</t>
        <!-- The Coordinator must not get confused about which commitments come from which signers, do we need to say more about how this is done? -->

</section>
      <section anchor="frost-round-two">
        <name>Round Two - Signature Share Generation</name>
        <t>In round two, the Coordinator is responsible for sending the message to be signed, and
for choosing which signers will participate (of number at least MIN_SIGNERS). Signers
additionally require locally held data; specifically, their private key and the
nonces corresponding to their commitment issued in round one.</t>
        <t>The Coordinator begins by sending each signer the message to be signed along with the
set of signing commitments for all signers in the participant list. Each signer
MUST validate the inputs before processing the Coordinator's request. In particular,
the Signer MUST validate commitment_list, deserializing each group Element in the
list using DeserializeElement from <xref target="dep-pog"/>. If deserialization fails, the Signer
MUST abort the protocol. Moreover, each signer MUST ensure that their identifier as well as their commitment as from the first round appears in commitment_list.
Applications which require that signers not process arbitrary
input messages are also required to also perform relevant application-layer input
validation checks; see <xref target="message-validation"/> for more details.</t>
        <t>Upon receipt and successful input validation, each Signer then runs the following
procedure to produce its own signature share.</t>
        <artwork><![CDATA[
  Inputs:
  - identifier, Identifier i of the signer. Note identifier will never equal 0.
  - sk_i, Signer secret key share, a Scalar.
  - group_public_key, public key corresponding to the group signing key,
    an Element in G.
  - nonce_i, pair of Scalar values (hiding_nonce, binding_nonce) generated in
    round one.
  - msg, the message to be signed (sent by the Coordinator).
  - commitment_list =
      [(j, hiding_nonce_commitment_j, binding_nonce_commitment_j), ...], a
    list of commitments issued in Round 1 by each signer and sent by the Coordinator.
    Each element in the list indicates the signer identifier j and their two commitment
    Element values (hiding_nonce_commitment_j, binding_nonce_commitment_j).
    This list MUST be sorted in ascending order by signer identifier.

  Outputs: a Scalar value representing the signature share

  def sign(identifier, sk_i, group_public_key, nonce_i, msg, commitment_list):
    # Compute the binding factor(s)
    binding_factor_list = compute_binding_factors(commitment_list, msg)
    binding_factor = binding_factor_for_participant(binding_factor_list, identifier)

    # Compute the group commitment
    group_commitment = compute_group_commitment(commitment_list, binding_factor_list)

    # Compute Lagrange coefficient
    participant_list = participants_from_commitment_list(commitment_list)
    lambda_i = derive_lagrange_coefficient(identifier, participant_list)

    # Compute the per-message challenge
    challenge = compute_challenge(group_commitment, group_public_key, msg)

    # Compute the signature share
    (hiding_nonce, binding_nonce) = nonce_i
    sig_share = hiding_nonce + (binding_nonce * binding_factor) + (lambda_i * sk_i * challenge)

    return sig_share
]]></artwork>
        <t>The output of this procedure is a signature share. Each signer then sends
these shares back to the Coordinator. Each signer MUST delete the nonce and
corresponding commitment after this round completes, and MUST use the nonce to generate at most one
signature share.</t>
        <t>Note that the <tt>lambda_i</tt> value derived during this procedure does not change
across FROST signing operations for the same signing group. As such, signers
can compute it once and store it for reuse across signing sessions.</t>
        <t>Upon receipt from each Signer, the Coordinator MUST validate the input
signature share using DeserializeElement. If validation fails, the Coordinator MUST abort
the protocol. If validation succeeds, the Coordinator then verifies the set of
signature shares using the following procedure.</t>
      </section>
      <section anchor="frost-aggregation">
        <name>Signature Share Verification and Aggregation</name>
        <t>After signers perform round two and send their signature shares to the Coordinator,
the Coordinator verifies each signature share for correctness. In particular,
for each signer, the Coordinator uses commitment pairs generated during round
one and the signature share generated during round two, along with other group
parameters, to check that the signature share is valid using the following procedure.</t>
        <artwork><![CDATA[
  Inputs:
  - identifier, Identifier i of the signer. Note identifier will never equal 0.
  - PK_i, the public key for the ith signer, where PK_i = G.ScalarBaseMult(sk_i),
    an Element in G
  - comm_i, pair of Element values in G (hiding_nonce_commitment, binding_nonce_commitment)
    generated in round one from the ith signer.
  - sig_share_i, a Scalar value indicating the signature share as produced in
    round two from the ith signer.
  - commitment_list =
      [(j, hiding_nonce_commitment_j, binding_nonce_commitment_j), ...], a
    list of commitments issued in Round 1 by each signer, where each element
    in the list indicates the signer identifier j and their two commitment
    Element values (hiding_nonce_commitment_j, binding_nonce_commitment_j).
    This list MUST be sorted in ascending order by signer identifier.
  - group_public_key, public key corresponding to the group signing key,
    an Element in G.
  - msg, the message to be signed.

  Outputs: True if the signature share is valid, and False otherwise.

  def verify_signature_share(identifier, PK_i, comm_i, sig_share_i, commitment_list,
                             group_public_key, msg):
    # Compute the binding factors
    binding_factor_list = compute_binding_factors(commitment_list, msg)
    binding_factor = binding_factor_for_participant(binding_factor_list, identifier)

    # Compute the group commitment
    group_commitment = compute_group_commitment(commitment_list, binding_factor_list)

    # Compute the commitment share
    (hiding_nonce_commitment, binding_nonce_commitment) = comm_i
    comm_share = hiding_nonce_commitment + (binding_nonce_commitment * binding_factor)

    # Compute the challenge
    challenge = compute_challenge(group_commitment, group_public_key, msg)

    # Compute Lagrange coefficient
    participant_list = participants_from_commitment_list(commitment_list)
    lambda_i = derive_lagrange_coefficient(identifier, participant_list)

    # Compute relation values
    l = G.ScalarBaseMult(sig_share_i)
    r = comm_share + ((challenge * lambda_i) * PK_i)

    return l == r
]]></artwork>
        <t>If any signature share fails to verify, i.e., if verify_signature_share returns False for
any signer share, the Coordinator MUST abort the protocol for correctness reasons.
Excluding one signer means that their nonce will not be included in the joint response <tt>z</tt>
and consequently the output signature will not verify.</t>
        <t>Otherwise, if all signer shares are valid, the Coordinator performs the <tt>aggregate</tt> operation
and publishes the resulting signature.</t>
        <artwork><![CDATA[
  Inputs:
  - group_commitment, the group commitment returned by compute_group_commitment,
    an Element in G.
  - sig_shares, a set of signature shares z_i, Scalar values, for each signer,
    of length NUM_SIGNERS, where MIN_SIGNERS <= NUM_SIGNERS <= MAX_SIGNERS.

  Outputs: (R, z), a Schnorr signature consisting of an Element R and Scalar z.

  def aggregate(group_commitment, sig_shares):
    z = 0
    for z_i in sig_shares:
      z = z + z_i
    return (group_commitment, z)
]]></artwork>
        <t>The output signature (R, z) from the aggregation step MUST be encoded as follows
(using notation from <xref section="3" sectionFormat="of" target="TLS"/>):</t>
        <artwork><![CDATA[
  struct {
    opaque R_encoded[Ne];
    opaque z_encoded[Ns];
  } Signature;
]]></artwork>
        <t>Where Signature.R_encoded is <tt>G.SerializeElement(R)</tt> and Signature.z_encoded is
<tt>G.SerializeScalar(z)</tt>.</t>
      </section>
    </section>
    <section anchor="ciphersuites">
      <name>Ciphersuites</name>
      <t>A FROST ciphersuite must specify the underlying prime-order group details
and cryptographic hash function. Each ciphersuite is denoted as (Group, Hash),
e.g., (ristretto255, SHA-512). This section contains some ciphersuites.</t>
      <t>The RECOMMENDED ciphersuite is (ristretto255, SHA-512) <xref target="recommended-suite"/>.
The (Ed25519, SHA-512) ciphersuite is included for backwards compatibility
with <xref target="RFC8032"/>.</t>
      <t>The DeserializeElement and DeserializeScalar functions instantiated for a
particular prime-order group corresponding to a ciphersuite MUST adhere
to the description in <xref target="dep-pog"/>. Validation steps for these functions
are described for each the ciphersuites below. Future ciphersuites MUST
describe how input validation is done for DeserializeElement and DeserializeScalar.</t>
      <t>Each ciphersuite includes explicit instructions for verifying signatures produced
by FROST. Note that these instructions are equivalent to those produced by a single
signer.</t>
      <section anchor="frosted25519-sha-512">
        <name>FROST(Ed25519, SHA-512)</name>
        <t>This ciphersuite uses edwards25519 for the Group and SHA-512 for the Hash function <tt>H</tt>
meant to produce signatures indistinguishable from Ed25519 as specified in <xref target="RFC8032"/>.
The value of the contextString parameter is empty.</t>
        <ul spacing="normal">
          <li>
            <t>Group: edwards25519 <xref target="RFC8032"/>
            </t>
            <ul spacing="normal">
              <li>Order: 2^252 + 27742317777372353535851937790883648493 (see <xref target="RFC7748"/>)</li>
              <li>Identity: As defined in <xref target="RFC7748"/>.</li>
              <li>RandomScalar: Implemented by repeatedly generating a random 32-byte string
and invoking DeserializeScalar on the result until success.</li>
              <li>SerializeElement: Implemented as specified in <xref section="5.1.2" sectionFormat="comma" target="RFC8032"/>.</li>
              <li>DeserializeElement: Implemented as specified in <xref section="5.1.3" sectionFormat="comma" target="RFC8032"/>.
Additionally, this function validates that the resulting element is not the group
identity element and is in the prime-order subgroup. The latter check can
be implemented by multiplying the resulting point by the order of the group and
checking that the result is the identity element.</li>
              <li>SerializeScalar: Implemented by outputting the little-endian 32-byte encoding of
the Scalar value.</li>
              <li>DeserializeScalar: Implemented by attempting to deserialize a Scalar from a 32-byte
string. This function can fail if the input does not represent a Scalar between
the value 0 and <tt>G.Order() - 1</tt>.</li>
            </ul>
          </li>
          <li>
            <t>Hash (<tt>H</tt>): SHA-512, and Nh = 64.
            </t>
            <ul spacing="normal">
              <li>H1(m): Implemented by computing H("rho" || m), interpreting the 64-byte digest
as a little-endian integer, and reducing the resulting integer modulo
L = 2^252+27742317777372353535851937790883648493.</li>
              <li>H2(m): Implemented by computing H(m), interpreting the 64-byte digest
as a little-endian integer, and reducing the resulting integer modulo
L = 2^252+27742317777372353535851937790883648493.</li>
              <li>H3(m): Implemented as an alias for H, i.e., H(m).</li>
              <li>H4(m): Implemented by computing H("nonce" || m), interpreting the 64-byte digest
as a little-endian integer, and reducing the resulting integer modulo
L = 2^252+27742317777372353535851937790883648493.</li>
            </ul>
          </li>
        </ul>
        <t>Normally H2 would also include a domain separator, but for backwards compatibility
with <xref target="RFC8032"/>, it is omitted.</t>
        <t>Signature verification is as specified in <xref section="5.1.7" sectionFormat="of" target="RFC8032"/> with the
constraint that implementations MUST check the group group equation [8][S]B = [8]R + [8][k]A'.
The alternative check [S]B = R + [k]A' is not safe or interoperable in practice.</t>
      </section>
      <section anchor="recommended-suite">
        <name>FROST(ristretto255, SHA-512)</name>
        <t>This ciphersuite uses ristretto255 for the Group and SHA-512 for the Hash function <tt>H</tt>.
The value of the contextString parameter is "FROST-RISTRETTO255-SHA512-v5".</t>
        <ul spacing="normal">
          <li>
            <t>Group: ristretto255 <xref target="RISTRETTO"/>
            </t>
            <ul spacing="normal">
              <li>Order: 2^252 + 27742317777372353535851937790883648493 (see <xref target="RISTRETTO"/>)</li>
              <li>Identity: As defined in <xref target="RISTRETTO"/>.</li>
              <li>RandomScalar: Implemented by repeatedly generating a random 32-byte string and
invoking DeserializeScalar on the result until success.</li>
              <li>SerializeElement: Implemented using the 'Encode' function from <xref target="RISTRETTO"/>.</li>
              <li>DeserializeElement: Implemented using the 'Decode' function from <xref target="RISTRETTO"/>.</li>
              <li>SerializeScalar: Implemented by outputting the little-endian 32-byte encoding of
the Scalar value.</li>
              <li>DeserializeScalar: Implemented by attempting to deserialize a Scalar from a 32-byte
string. This function can fail if the input does not represent a Scalar between
the value 0 and <tt>G.Order() - 1</tt>.</li>
            </ul>
          </li>
          <li>
            <t>Hash (<tt>H</tt>): SHA-512, and Nh = 64.
            </t>
            <ul spacing="normal">
              <li>H1(m): Implemented by computing H(contextString || "rho" || m) and mapping the
output to a Scalar as described in <xref section="4.4" sectionFormat="comma" target="RISTRETTO"/>.</li>
              <li>H2(m): Implemented by computing H(contextString || "chal" || m) and mapping the
output to a Scalar as described in <xref section="4.4" sectionFormat="comma" target="RISTRETTO"/>.</li>
              <li>H3(m): Implemented by computing H(contextString || "digest" || m).</li>
              <li>H4(m): Implemented by computing H(contextString || "nonce" || m) and mapping the
output to a Scalar as described in <xref section="4.4" sectionFormat="comma" target="RISTRETTO"/>.</li>
            </ul>
          </li>
        </ul>
        <t>Signature verification is as specified in <xref target="prime-order-verify"/>.</t>
      </section>
      <section anchor="frosted448-shake256">
        <name>FROST(Ed448, SHAKE256)</name>
        <t>This ciphersuite uses edwards448 for the Group and SHAKE256 for the Hash function <tt>H</tt>
meant to produce signatures indistinguishable from Ed448 as specified in <xref target="RFC8032"/>.
The value of the contextString parameter is empty.</t>
        <ul spacing="normal">
          <li>
            <t>Group: edwards448 <xref target="RFC8032"/>
            </t>
            <ul spacing="normal">
              <li>Order: 2^446 - 13818066809895115352007386748515426880336692474882178609894547503885</li>
              <li>Identity: As defined in <xref target="RFC7748"/>.</li>
              <li>RandomScalar: Implemented by repeatedly generating a random 48-byte string and
invoking DeserializeScalar on the result until success.</li>
              <li>SerializeElement: Implemented as specified in <xref section="5.2.2" sectionFormat="comma" target="RFC8032"/>.</li>
              <li>DeserializeElement: Implemented as specified in <xref section="5.2.3" sectionFormat="comma" target="RFC8032"/>.
Additionally, this function validates that the resulting element is not the group
identity element.</li>
              <li>SerializeScalar: Implemented by outputting the little-endian 48-byte encoding of
the Scalar value.</li>
              <li>DeserializeScalar: Implemented by attempting to deserialize a Scalar from a 48-byte
string. This function can fail if the input does not represent a Scalar between
the value 0 and <tt>G.Order() - 1</tt>.</li>
            </ul>
          </li>
          <li>
            <t>Hash (<tt>H</tt>): SHAKE256, and Nh = 114.
            </t>
            <ul spacing="normal">
              <li>H1(m): Implemented by computing H("rho" || m), interpreting the lower
57 bytes as a little-endian integer, and reducing the resulting integer modulo
L = 2^446 - 13818066809895115352007386748515426880336692474882178609894547503885.</li>
              <li>H2(m): Implemented by computing H(m), interpreting the lower 57 bytes
as a little-endian integer, and reducing the resulting integer modulo
L = 2^446 - 13818066809895115352007386748515426880336692474882178609894547503885.</li>
              <li>H3(m): Implemented as an alias for H, i.e., H(m).</li>
              <li>H4(m): Implemented by computing H("nonce" || m), interpreting the lower
57 bytes as a little-endian integer, and reducing the resulting integer modulo
L = 2^446 - 13818066809895115352007386748515426880336692474882178609894547503885.</li>
            </ul>
          </li>
        </ul>
        <t>Normally H2 would also include a domain separator, but for backwards compatibility
with <xref target="RFC8032"/>, it is omitted.</t>
        <t>Signature verification is as specified in <xref section="5.2.7" sectionFormat="of" target="RFC8032"/> with the
constraint that implementations MUST check the group group equation [4][S]B = [4]R + [4][k]A'.
The alternative check [S]B = R + [k]A' is not safe or interoperable in practice.</t>
      </section>
      <section anchor="frostp-256-sha-256">
        <name>FROST(P-256, SHA-256)</name>
        <t>This ciphersuite uses P-256 for the Group and SHA-256 for the Hash function <tt>H</tt>.
The value of the contextString parameter is "FROST-P256-SHA256-v5".</t>
        <ul spacing="normal">
          <li>
            <t>Group: P-256 (secp256r1) <xref target="x9.62"/>
            </t>
            <ul spacing="normal">
              <li>Order: 0xffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551</li>
              <li>Identity: As defined in <xref target="x9.62"/>.</li>
              <li>RandomScalar: Implemented by repeatedly generating a random 32-byte string
and invoking DeserializeScalar on the result until success.</li>
              <li>SerializeElement: Implemented using the compressed Elliptic-Curve-Point-to-Octet-String
method according to <xref target="SECG"/>.</li>
              <li>DeserializeElement: Implemented by attempting to deserialize a public key using
the compressed Octet-String-to-Elliptic-Curve-Point method according to <xref target="SECG"/>,
and then performs partial public-key validation as defined in section 5.6.2.3.4 of
<xref target="KEYAGREEMENT"/>. This includes checking that the
coordinates of the resulting point are in the correct range, that the point is on
the curve, and that the point is not the point at infinity. Additionally, this function
validates that the resulting element is not the group identity element.
If these checks fail, deserialization returns an error.</li>
              <li>SerializeScalar: Implemented using the Field-Element-to-Octet-String conversion
according to <xref target="SECG"/>.</li>
              <li>DeserializeScalar: Implemented by attempting to deserialize a Scalar from a 32-byte
string using Octet-String-to-Field-Element from <xref target="SECG"/>. This function can fail if the
input does not represent a Scalar between the value 0 and <tt>G.Order() - 1</tt>.</li>
            </ul>
          </li>
          <li>
            <t>Hash (<tt>H</tt>): SHA-256, and Nh = 32.
            </t>
            <ul spacing="normal">
              <li>H1(m): Implemented using hash_to_field from <xref section="5.3" sectionFormat="comma" target="HASH-TO-CURVE"/>
using L = 48, <tt>expand_message_xmd</tt> with SHA-256, DST = contextString || "rho", and
prime modulus equal to <tt>Order()</tt>.</li>
              <li>H2(m): Implemented using hash_to_field from <xref section="5.3" sectionFormat="comma" target="HASH-TO-CURVE"/>
using L = 48, <tt>expand_message_xmd</tt> with SHA-256, DST = contextString || "chal", and
prime modulus equal to <tt>Order()</tt>.</li>
              <li>H3(m): Implemented by computing H(contextString || "digest" || m).</li>
              <li>H4(m): Implemented using hash_to_field from <xref section="5.3" sectionFormat="comma" target="HASH-TO-CURVE"/>
using L = 48, <tt>expand_message_xmd</tt> with SHA-256, DST = contextString || "nonce", and
prime modulus equal to <tt>Order()</tt>.</li>
            </ul>
          </li>
        </ul>
        <t>Signature verification is as specified in <xref target="prime-order-verify"/>.</t>
      </section>
    </section>
    <section anchor="sec-considerations">
      <name>Security Considerations</name>
      <t>A security analysis of FROST exists in <xref target="FROST20"/> and <xref target="Schnorr21"/>. The protocol as specified
in this document assumes the following threat model.</t>
      <ul spacing="normal">
        <li>Trusted dealer. The dealer that performs key generation is trusted to follow
the protocol, although participants still are able to verify the consistency of their
shares via a VSS (verifiable secret sharing) step; see <xref target="dep-vss"/>.</li>
        <li>Unforgeability assuming at most <tt>(MIN_SIGNERS-1)</tt> corrupted signers. So long as an adversary
corrupts fewer than <tt>MIN_SIGNERS</tt> participants, the scheme remains secure against Existential
Unforgeability Under Chosen Message Attack (EUF-CMA) attacks, as defined in <xref target="BonehShoup"/>,
Definition 13.2.</li>
        <li>Coordinator. We assume the Coordinator at the time of signing does not perform a
denial of service attack. A denial of service would include any action which either
prevents the protocol from completing or causing the resulting signature to be invalid.
Such actions for the latter include sending inconsistent values to signer participants,
such as messages or the set of individual commitments. Note that the Coordinator
is <em>not</em> trusted with any private information and communication at the time of signing
can be performed over a public but reliable channel.</li>
      </ul>
      <t>The protocol as specified in this document does not target the following goals:</t>
      <ul spacing="normal">
        <li>Post quantum security. FROST, like plain Schnorr signatures, requires the hardness of the Discrete Logarithm Problem.</li>
        <li>Robustness. In the case of failure, FROST requires aborting the protocol.</li>
        <li>Downgrade prevention. All participants in the protocol are assumed to agree on what algorithms to use.</li>
        <li>Metadata protection. If protection for metadata is desired, a higher-level communication
channel can be used to facilitate key generation and signing.</li>
      </ul>
      <t>The rest of this section documents issues particular to implementations or deployments.</t>
      <section anchor="nonce-reuse-attacks">
        <name>Nonce Reuse Attacks</name>
        <t>Nonces generated by each participant in the first round of signing must be sampled
uniformly at random and cannot be derived from some deterministic function. This
is to avoid replay attacks initiated by other signers, which allows for a complete
key-recovery attack. The Coordinator MAY further hedge against nonce reuse attacks by
tracking signer nonce commitments used for a given group key, at the cost of additional
state.</t>
      </section>
      <section anchor="protocol-failures">
        <name>Protocol Failures</name>
        <t>We do not specify what implementations should do when the protocol fails, other than requiring that
the protocol abort. Examples of viable failure include when a verification check returns invalid or
if the underlying transport failed to deliver the required messages.</t>
      </section>
      <section anchor="no-coordinator">
        <name>Removing the Coordinator Role</name>
        <t>In some settings, it may be desirable to omit the role of the Coordinator entirely.
Doing so does not change the security implications of FROST, but instead simply
requires each participant to communicate with all other participants. We loosely
describe how to perform FROST signing among signers without this coordinator role.
We assume that every participant receives as input from an external source the
message to be signed prior to performing the protocol.</t>
        <t>Every participant begins by performing <tt>commit()</tt> as is done in the setting
where a Coordinator is used. However, instead of sending the commitment
to the Coordinator, every participant instead will publish
this commitment to every other participant. Then, in the second round, signers will already have
sufficient information to perform signing. They will directly perform <tt>sign</tt>.
All participants will then publish their signature shares to one another. After having
received all signature shares from all other signers, each signer will then perform
<tt>verify_signature_share</tt> and then <tt>aggregate</tt> directly.</t>
        <t>The requirements for the underlying network channel remain the same in the setting
where all participants play the role of the Coordinator, in that all messages that
are exchanged are public and so the channel simply must be reliable. However, in
the setting that a player attempts to split the view of all other players by
sending disjoint values to a subset of players, the signing operation will output
an invalid signature. To avoid this denial of service, implementations may wish
to define a mechanism where messages are authenticated, so that cheating players
can be identified and excluded.</t>
      </section>
      <section anchor="message-validation">
        <name>Input Message Validation</name>
        <t>Some applications may require that signers only process messages of a certain
structure. For example, in digital currency applications wherein multiple
signers may collectively sign a transaction, it is reasonable to require that
each signer check the input message to be a syntactically valid transaction.
As another example, use of threshold signatures in TLS <xref target="TLS"/> to produce
signatures of transcript hashes might require that signers check that the input
message is a valid TLS transcript from which the corresponding transcript hash
can be derived.</t>
        <t>In general, input message validation is an application-specific consideration
that varies based on the use case and threat model. However, it is RECOMMENDED
that applications take additional precautions and validate inputs so that signers
do not operate as signing oracles for arbitrary messages.</t>
      </section>
    </section>
    <section anchor="contributors">
      <name>Contributors</name>
      <ul spacing="normal">
        <li>Isis Lovecruft</li>
        <li>T. Wilson-Brown</li>
        <li>Alden Torres</li>
      </ul>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="x9.62">
          <front>
            <title>Public Key Cryptography for the Financial Services Industry: the Elliptic Curve Digital Signature Algorithm (ECDSA)</title>
            <author>
              <organization>ANSI</organization>
            </author>
            <date year="1998" month="September"/>
          </front>
          <seriesInfo name="ANSI" value="X9.62-1998"/>
        </reference>
        <reference anchor="SECG" target="https://secg.org/sec1-v2.pdf">
          <front>
            <title>Elliptic Curve Cryptography, Standards for Efficient Cryptography Group, ver. 2</title>
            <author>
              <organization/>
            </author>
            <date year="2009"/>
          </front>
        </reference>
        <reference anchor="RFC8032">
          <front>
            <title>Edwards-Curve Digital Signature Algorithm (EdDSA)</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <author fullname="I. Liusvaara" initials="I." surname="Liusvaara">
              <organization/>
            </author>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes elliptic curve signature scheme Edwards-curve Digital Signature Algorithm (EdDSA).  The algorithm is instantiated with recommended parameters for the edwards25519 and edwards448 curves.  An example implementation and test vectors are provided.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8032"/>
          <seriesInfo name="DOI" value="10.17487/RFC8032"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <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>
          <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">
              <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>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RISTRETTO">
          <front>
            <title>The ristretto255 and decaf448 Groups</title>
            <author fullname="Henry de Valence">
	 </author>
            <author fullname="Jack Grigg">
	 </author>
            <author fullname="Mike Hamburg">
	 </author>
            <author fullname="Isis Lovecruft">
	 </author>
            <author fullname="George Tankersley">
	 </author>
            <author fullname="Filippo Valsorda">
	 </author>
            <date day="25" month="February" year="2022"/>
            <abstract>
              <t>   This memo specifies two prime-order groups, ristretto255 and
   decaf448, suitable for safely implementing higher-level and complex
   cryptographic protocols.  The ristretto255 group can be implemented
   using Curve25519, allowing existing Curve25519 implementations to be
   reused and extended to provide a prime-order group.  Likewise, the
   decaf448 group can be implemented using edwards448.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-ristretto255-decaf448-03"/>
        </reference>
        <reference anchor="KEYAGREEMENT">
          <front>
            <title>Recommendation for pair-wise key-establishment schemes using discrete logarithm cryptography</title>
            <author fullname="Elaine Barker" initials="E." surname="Barker">
              <organization/>
            </author>
            <author fullname="Lily Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <author fullname="Allen Roginsky" initials="A." surname="Roginsky">
              <organization/>
            </author>
            <author fullname="Apostol Vassilev" initials="A." surname="Vassilev">
              <organization/>
            </author>
            <author fullname="Richard Davis" initials="R." surname="Davis">
              <organization/>
            </author>
            <date month="April" year="2018"/>
          </front>
          <seriesInfo name="National Institute of Standards and Technology" value="report"/>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-56ar3"/>
        </reference>
        <reference anchor="HASH-TO-CURVE">
          <front>
            <title>Hashing to Elliptic Curves</title>
            <author fullname="Armando Faz-Hernandez">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Sam Scott">
              <organization>Cornell Tech</organization>
            </author>
            <author fullname="Nick Sullivan">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Riad S. Wahby">
              <organization>Stanford University</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <date day="15" month="June" year="2022"/>
            <abstract>
              <t>   This document specifies a number of algorithms for encoding or
   hashing an arbitrary string to a point on an elliptic curve.  This
   document is a product of the Crypto Forum Research Group (CFRG) in
   the IRTF.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-hash-to-curve-16"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="FROST20" target="https://eprint.iacr.org/2020/852.pdf">
          <front>
            <title>Two-Round Threshold Signatures with FROST</title>
            <author initials="C." surname="Komlo" fullname="Chelsea Komlo">
              <organization/>
            </author>
            <author initials="I." surname="Goldberg" fullname="Ian Goldberg">
              <organization/>
            </author>
            <date year="2020" month="December" day="22"/>
          </front>
        </reference>
        <reference anchor="Schnorr21" target="https://eprint.iacr.org/2021/1375">
          <front>
            <title>How to Prove Schnorr Assuming Schnorr</title>
            <author initials="E." surname="Crites" fullname="Elizabeth Crites">
              <organization/>
            </author>
            <author initials="C." surname="Komlo" fullname="Chelsea Komlo">
              <organization/>
            </author>
            <author initials="M." surname="Maller" fullname="Mary Maller">
              <organization/>
            </author>
            <date year="2021" month="October" day="11"/>
          </front>
        </reference>
        <reference anchor="StrongerSec22" target="https://eprint.iacr.org/2022/833">
          <front>
            <title>Stronger Security for Non-Interactive Threshold Signatures: BLS and FROST</title>
            <author initials="M." surname="Bellare" fullname="Mihir Bellare">
              <organization/>
            </author>
            <author initials="S." surname="Tessaro" fullname="Stefano Tessaro">
              <organization/>
            </author>
            <author initials="C." surname="Zhu" fullname="Chenzhi Zhu">
              <organization/>
            </author>
            <date year="2022" month="June" day="01"/>
          </front>
        </reference>
        <reference anchor="BonehShoup" target="http://toc.cryptobook.us/book.pdf">
          <front>
            <title>A Graduate Course in Applied Cryptography</title>
            <author initials="D." surname="Boneh" fullname="Dan Boneh">
              <organization/>
            </author>
            <author initials="V." surname="Shoup" fullname="Victor Shoup">
              <organization/>
            </author>
            <date year="2020" month="January"/>
          </front>
        </reference>
        <reference anchor="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <author fullname="J. Schiller" initials="J." surname="Schiller">
              <organization/>
            </author>
            <author fullname="S. Crocker" initials="S." surname="Crocker">
              <organization/>
            </author>
            <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="RFC7748">
          <front>
            <title>Elliptic Curves for Security</title>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="M. Hamburg" initials="M." surname="Hamburg">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." surname="Turner">
              <organization/>
            </author>
            <date month="January" year="2016"/>
            <abstract>
              <t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS).  These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7748"/>
          <seriesInfo name="DOI" value="10.17487/RFC7748"/>
        </reference>
        <reference anchor="TLS">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <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>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
      </references>
    </references>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This document was improved based on input and contributions by the Zcash Foundation engineering team.</t>
    </section>
    <section anchor="prime-order-verify">
      <name>Schnorr Signature Verification for Prime-Order Groups</name>
      <t>This section contains a routine for verifying Schnorr signatures with validated inputs.
Specifically, it assumes that signature R component and public key belong to the
prime-order group.</t>
      <artwork><![CDATA[
  prime_order_verify(msg, sig, PK):

  Inputs:
  - msg, signed message, a byte string
  - sig, a tuple (R, z) output from signature generation
  - PK, public key, an Element

  Outputs: 1 if signature is valid, and 0 otherwise

  def prime_order_verify(msg, sig = (R, z), PK):
    comm_enc = G.SerializeElement(R)
    pk_enc = G.SerializeElement(PK)
    challenge_input = comm_enc || pk_enc || msg
    c = H2(challenge_input)

    l = G.ScalarBaseMult(z)
    r = R + (c * PK)
    return l == r
]]></artwork>
    </section>
    <section anchor="dep-dealer">
      <name>Trusted Dealer Key Generation</name>
      <t>One possible key generation mechanism is to depend on a trusted dealer, wherein the
dealer generates a group secret <tt>s</tt> uniformly at random and uses Shamir and Verifiable
Secret Sharing as described in <xref target="dep-shamir"/> and <xref target="dep-vss"/> to create secret
shares of <tt>s</tt> to be sent to all other participants. We highlight at a high level how this
operation can be performed.</t>
      <t>The dealer is trusted to 1) generate good randomness, and 2) delete secret values after distributing shares to each participant,
and 3) keep secret values confidential.</t>
      <artwork><![CDATA[
  Inputs:
  - s, a group secret, Scalar, that MUST be derived from at least Ns bytes of entropy
  - MAX_SIGNERS, the number of shares to generate, an integer
  - MIN_SIGNERS, the threshold of the secret sharing scheme, an integer

  Outputs:
  - signer_private_keys, MAX_SIGNERS shares of the secret key s, each a Scalar value.
  - vss_commitment, a vector commitment of Elements in G, to each of the coefficients
    in the polynomial defined by secret_key_shares and whose first element is
    G.ScalarBaseMult(s).

  def trusted_dealer_keygen(s, MAX_SIGNERS, MIN_SIGNERS):
    signer_private_keys, coefficients = secret_share_shard(secret_key, MAX_SIGNERS, MIN_SIGNERS)
    vss_commitment = vss_commit(coefficients):
    PK = G.ScalarBaseMult(secret_key)
    return signer_private_keys, vss_commitment
]]></artwork>
      <t>It is assumed the dealer then sends one secret key share to each of the NUM_SIGNERS participants, along with <tt>vss_commitment</tt>.
After receiving their secret key share and <tt>vss_commitment</tt>, participants MUST abort if they do not have the same view of <tt>vss_commitment</tt>.
Otherwise, each participant MUST perform <tt>vss_verify(secret_key_share_i, vss_commitment)</tt>, and abort if the check fails.
The trusted dealer MUST delete the secret_key and secret_key_shares upon completion.</t>
      <t>Use of this method for key generation requires a mutually authenticated secure channel
between the dealer and participants to send secret key shares, wherein the channel provides confidentiality
and integrity. Mutually authenticated TLS is one possible deployment option.</t>
      <section anchor="dep-shamir">
        <name>Shamir Secret Sharing</name>
        <t>In Shamir secret sharing, a dealer distributes a secret <tt>Scalar</tt> <tt>s</tt> to <tt>n</tt> participants
in such a way that any cooperating subset of <tt>MIN_SIGNERS</tt> participants can recover the
secret. There are two basic steps in this scheme: (1) splitting a secret into
multiple shares, and (2) combining shares to reveal the resulting secret.</t>
        <t>This secret sharing scheme works over any field <tt>F</tt>. In this specification, <tt>F</tt> is
the scalar field of the prime-order group <tt>G</tt>.</t>
        <t>The procedure for splitting a secret into shares is as follows.</t>
        <artwork><![CDATA[
  secret_share_shard(s, MAX_SIGNERS, MIN_SIGNERS):

  Inputs:
  - s, secret value to be shared, a Scalar
  - MAX_SIGNERS, the number of shares to generate, an integer
  - MIN_SIGNERS, the threshold of the secret sharing scheme, an integer

  Outputs:
  - secret_key_shares, A list of MAX_SIGNERS number of secret shares, which is a tuple
    consisting of the participant identifier and the key share, each of which is a Scalar
  - coefficients, a vector of the t coefficients which uniquely determine
    a polynomial f.

  Errors:
  - "invalid parameters", if MIN_SIGNERS > MAX_SIGNERS or if MIN_SIGNERS is less than 2

  def secret_share_shard(s, MAX_SIGNERS, MIN_SIGNERS):
    if MIN_SIGNERS > MAX_SIGNERS:
      raise "invalid parameters"
    if MIN_SIGNERS < 2:
      raise "invalid parameters"

    # Generate random coefficients for the polynomial, yielding
    # a polynomial of degree (MIN_SIGNERS - 1)
    coefficients = [s]
    for i in range(1, MIN_SIGNERS):
      coefficients.append(G.RandomScalar())

    # Evaluate the polynomial for each point x=1,...,n
    secret_key_shares = []
    for x_i in range(1, MAX_SIGNERS + 1):
      y_i = polynomial_evaluate(x_i, coefficients)
      secret_key_share_i = (x_i, y_i)
      secret_key_share.append(secret_key_share_i)
    return secret_key_shares, coefficients
]]></artwork>
        <t>Let <tt>points</tt> be the output of this function. The i-th element in <tt>points</tt> is
the share for the i-th participant, which is the randomly generated polynomial
evaluated at coordinate <tt>i</tt>. We denote a secret share as the tuple <tt>(i, points[i])</tt>,
and the list of these shares as <tt>shares</tt>.
<tt>i</tt> MUST never equal <tt>0</tt>; recall that <tt>f(0) = s</tt>, where <tt>f</tt> is the polynomial defined in a Shamir secret sharing operation.</t>
        <t>The procedure for combining a <tt>shares</tt> list of length <tt>MIN_SIGNERS</tt> to recover the
secret <tt>s</tt> is as follows.</t>
        <artwork><![CDATA[
  secret_share_combine(shares):

  Inputs:
  - shares, a list of at minimum MIN_SIGNERS secret shares, each a tuple (i, f(i))

  Outputs: The resulting secret s, a Scalar, that was previously split into shares

  Errors:
  - "invalid parameters", if less than MIN_SIGNERS input shares are provided

  def secret_share_combine(shares):
    if len(shares) < MIN_SIGNERS:
      raise "invalid parameters"
    s = polynomial_interpolation(shares)
    return s
]]></artwork>
      </section>
      <section anchor="dep-vss">
        <name>Verifiable Secret Sharing</name>
        <t>Feldman's Verifiable Secret Sharing (VSS) builds upon Shamir secret sharing,
adding a verification step to demonstrate the consistency of a participant's
share with a public commitment to the polynomial <tt>f</tt> for which the secret <tt>s</tt>
is the constant term. This check ensure that all participants have a point
(their share) on the same polynomial, ensuring that they can later reconstruct
the correct secret.</t>
        <t>The procedure for committing to a polynomial <tt>f</tt> of degree <tt>MIN_SIGNERS-1</tt> is as follows.</t>
        <artwork><![CDATA[
  vss_commit(coeffs):

  Inputs:
  - coeffs, a vector of the MIN_SIGNERS coefficients which uniquely determine
  a polynomial f.

  Outputs: a commitment vss_commitment, which is a vector commitment to each of the
  coefficients in coeffs, where each element of the vector commitment is an `Element` in `G`.

  def vss_commit(coeffs):
    vss_commitment = []
    for coeff in coeffs:
      A_i = G.ScalarBaseMult(coeff)
      vss_commitment.append(A_i)
    return vss_commitment
]]></artwork>
        <t>The procedure for verification of a participant's share is as follows.
If <tt>vss_verify</tt> fails, the participant MUST abort the protocol, and failure should be investigated out of band.</t>
        <artwork><![CDATA[
  vss_verify(share_i, vss_commitment):

  Inputs:
  - share_i: A tuple of the form (i, sk_i), where i indicates the participant
    identifier, and sk_i the participant's secret key, a secret share of the
    constant term of f, where sk_i is a Scalar.
  - vss_commitment: A VSS commitment to a secret polynomial f, a vector commitment
    to each of the coefficients in coeffs, where each element of the vector commitment
    is an Element

  Outputs: 1 if sk_i is valid, and 0 otherwise

  vss_verify(share_i, commitment)
    (i, sk_i) = share_i
    S_i = ScalarBaseMult(sk_i)
    S_i' = G.Identity()
    for j in range(0, MIN_SIGNERS):
      S_i' += pow(i, j) * vss_commitment[j]
    if S_i == S_i':
      return 1
    return 0
]]></artwork>
        <t>We now define how the Coordinator and signer participants can derive group info,
which is an input into the FROST signing protocol.</t>
        <artwork><![CDATA[
    derive_group_info(MAX_SIGNERS, MIN_SIGNERS, vss_commitment):

    Inputs:
    - MAX_SIGNERS, the number of shares to generate, an integer
    - MIN_SIGNERS, the threshold of the secret sharing scheme, an integer
    - vss_commitment: A VSS commitment to a secret polynomial f, a vector commitment to each of the
    coefficients in coeffs, where each element of the vector commitment is an Element in G.

    Outputs:
    - PK, the public key representing the group, an Element.
    - signer_public_keys, a list of MAX_SIGNERS public keys PK_i for i=1,...,MAX_SIGNERS,
      where each PK_i is the public key, an Element, for participant i.

    derive_group_info(MAX_SIGNERS, MIN_SIGNERS, vss_commitment)
      PK = vss_commitment[0]
      signer_public_keys = []
      for i in range(1, MAX_SIGNERS+1):
        PK_i = G.Identity()
        for j in range(0, MIN_SIGNERS):
          PK_i += pow(i, j) * vss_commitment[j]
        signer_public_keys.append(PK_i)
      return PK, signer_public_keys
]]></artwork>
      </section>
    </section>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>This section contains test vectors for all ciphersuites listed in <xref target="ciphersuites"/>.
All <tt>Element</tt> and <tt>Scalar</tt> values are represented in serialized form and encoded in
hexadecimal strings. Signatures are represented as the concatenation of their
constituent parts. The input message to be signed is also encoded as a hexadecimal
string.</t>
      <t>Each test vector consists of the following information.</t>
      <ul spacing="normal">
        <li>Configuration: This lists the fixed parameters for the particular instantiation
of FROST, including MAX_SIGNERS, MIN_SIGNERS, and NUM_SIGNERS.</li>
        <li>Group input parameters: This lists the group secret key and shared public key,
generated by a trusted dealer as described in <xref target="dep-dealer"/>, as well as the
input message to be signed. All values are encoded as hexadecimal strings.</li>
        <li>Signer input parameters: This lists the signing key share for each of the
NUM_SIGNERS signers.</li>
        <li>Round one parameters and outputs: This lists the NUM_SIGNERS participants engaged
in the protocol, identified by their integer identifier, the hiding and binding commitment
values produced in <xref target="frost-round-one"/>, as well as the resulting group binding factor input,
computed in part from the group commitment list encoded as described in <xref target="dep-encoding"/>,
and group binding factor as computed in <xref target="frost-round-two"/>).</li>
        <li>Round two parameters and outputs: This lists the NUM_SIGNERS participants engaged
in the protocol, identified by their integer identifier, along with their corresponding
output signature share as produced in <xref target="frost-round-two"/>.</li>
        <li>Final output: This lists the aggregate signature as produced in <xref target="frost-aggregation"/>.</li>
      </ul>
      <section anchor="frosted25519-sha-512-1">
        <name>FROST(Ed25519, SHA-512)</name>
        <artwork><![CDATA[
// Configuration information
MAX_SIGNERS: 3
MIN_SIGNERS: 2
NUM_SIGNERS: 2

// Group input parameters
group_secret_key: 7b1c33d3f5291d85de664833beb1ad469f7fb6025a0ec78b3a7
90c6e13a98304
group_public_key: 15d21ccd7ee42959562fc8aa63224c8851fb3ec85a3faf66040
d380fb9738673
message: 74657374

// Signer input parameters
S1 signer_share: 929dcc590407aae7d388761cddb0c0db6f5627aea8e217f4a033
f2ec83d93509
S2 signer_share: a91e66e012e4364ac9aaa405fcafd370402d9859f7b6685c07ee
d76bf409e80d
S3 signer_share: d3cb090a075eb154e82fdb4b3cb507f110040905468bb9c46da8
bdea643a9a02

// Round one parameters
participants: 1,3

// Signer round one outputs
S1 hiding_nonce: d9aad97e1a1127bb87702ce8d81d8c07c7cbca89e784868d8e38
76ff6b459700
S1 binding_nonce: 5063be2774520d08a5ccd7f1213fb1179a5fa292bf13bc91cb2
8e7bd4d4a690c
S1 hiding_nonce_commitment: 33fc1eacb8d168e54ab811320196b7715a9918461
e1e00c3688e503ace1628d5
S1 binding_nonce_commitment: b32d41ce5a230b459de8c49b0619cb5fbde46690
752ec94ef05aa1f8647301df
S1 binding_factor_input: ee26b0dd4af7e749aa1a8ee3c10ae9923f618980772e
473f8819a5d4940e0db27ac185f8a0e1d5f84f88bc887fd67b143732c304cc5fa9ad8
e6f57f50028a8ff7b5e7b0a8efad964ba83310b56607920b6c3c979e38e583aa9d02a
df541c58ea92a259b5c8a184d0a7c5ea978e42a8ff84608c38cbb22475bd54858c4ff
d524e0001
S1 binding_factor: a523eba59830d1b5dbe6914e954862c5396b979bcd258fe323
e324335db81101
S3 hiding_nonce: 86961f3a429ac0c5696f49e6d796817ff653f83c07f34e9e1f4d
4c8c515b7900
S3 binding_nonce: 72225ec11c1315d9f1ea0e78b1160ed95800fadd0191d23fd2f
2c90ac96cb307
S3 hiding_nonce_commitment: 493651312d26af93d2bc5b92eeecc12f1d6da9e18
4911e0943ebeb5ec59d3926
S3 binding_nonce_commitment: 8dae85381a582288c934741defbcaeba7a1b944e
3a2df0aa0ac96aec4431c690
S3 binding_factor_input: ee26b0dd4af7e749aa1a8ee3c10ae9923f618980772e
473f8819a5d4940e0db27ac185f8a0e1d5f84f88bc887fd67b143732c304cc5fa9ad8
e6f57f50028a8ff7b5e7b0a8efad964ba83310b56607920b6c3c979e38e583aa9d02a
df541c58ea92a259b5c8a184d0a7c5ea978e42a8ff84608c38cbb22475bd54858c4ff
d524e0003
S3 binding_factor: c900ec81622c4b4b756139607357c1bf531df1a3b055304af2
15278aadb84b02

// Round two parameters
participants: 1,3

// Signer round two outputs
S1 sig_share: caae171b83bff0c2c6f56a1276892918ba228146f6344b85d2ec6ef
eb6f16d0d
S3 sig_share: ea6fdbf61683cf5f1f742e1b91583f0f667f0369efd2e33399b96d5
a3ff0300d

sig: 5da10008c13c04dd72328ba8e0f72b63cad43c3bf4b7eaada1c78225afbd977e
c74afdb47fdfadca0fcda18a28e8891220a284afe5072fb96ba6dc58f6e19e0a
]]></artwork>
      </section>
      <section anchor="frosted448-shake256-1">
        <name>FROST(Ed448, SHAKE256)</name>
        <artwork><![CDATA[
// Configuration information
MAX_SIGNERS: 3
MIN_SIGNERS: 2
NUM_SIGNERS: 2

// Group input parameters
group_secret_key: 6298e1eef3c379392caaed061ed8a31033c9e9e3420726f23b4
04158a401cd9df24632adfe6b418dc942d8a091817dd8bd70e1c72ba52f3c00
group_public_key: 1588564c56a8edb53b55399df5b65fd2abe777717baa2ef440b
13fe13b7ce077347f5e4346ab4475f9258fb947978b0123884832a46c6be800
message: 74657374

// Signer input parameters
S1 signer_share: 4a2b2f5858a932ad3d3b18bd16e76ced3070d72fd79ae4402df2
01f525e754716a1bc1b87a502297f2a99d89ea054e0018eb55d39562fd0100
S2 signer_share: 2503d56c4f516444a45b080182b8a2ebbe4d9b2ab509f25308c8
8c0ea7ccdc44e2ef4fc4f63403a11b116372438a1e287265cadeff1fcb0700
S3 signer_share: 00db7a8146f995db0a7cf844ed89d8e94c2b5f259378ff66e39d
172828b264185ac4decf7219e4aa4478285b9c0eef4fccdf3eea69dd980d00

// Round one parameters
participants: 1,3

// Signer round one outputs
S1 hiding_nonce: a7fa56e3dc9935845e58275131eeda30d648432cba7ec3e3c522
dea613962439cdbd016cd78d54eb72ba8ec4e1b4e6cb41d3afb55a28f40300
S1 binding_nonce: 66480d4125faf4033babeee514f0b8d26118618ad05d6e3f8e6
4ea7082249b460c9eee5259f6ca6d1036db968923a89534b679c6ec96181b00
S1 hiding_nonce_commitment: b4b449e692a233b7661da0dbe4c337dd1c8c8369f
c0786d6d1537ab371bb8afc4e59812de18300aef79b26920696c180e2f78f96bfb0d9
1100
S1 binding_nonce_commitment: 705e18f4f601754c700ef93591fb24af5d3ca0c8
052a890de5aa2dc9231903b5d0d8a56c0dfe5b3c66e94b8615f705e7a5086fe93c020
b5600
S1 binding_factor_input: b54ff7255705a71ee2925e4a3e30e41aed489a579d55
95e0df13e32e1e4dd202a7c7f68b31d6418d9845eb4d757adda6ab189e1bb340db818
e5b3bc725d992faf63e9b0500db10517fe09d3f566fba3a80e46a403e0c7d41548fbf
75cf2662b00225b502961f98d8c9ff937de0b24c231845c16de964d8b11ffe861c657
afc6656a15d98dc9e6df3d2371d0fd2e0d990ad977470d0a371c1510accd90bb9fe51
4da13c4c2d97488a7980cb7ea47ac5124ec710faa8692c009794b7c7a9e29b8cc5ea4
cd9418c853676e55971349c313f84b902c1a112a0ecdbecb5fb6030ad874161ff7c00
01
S1 binding_factor: 63e240eeaa6d10b99561d7eb813fd4164f3cde8eeffcf2c973
c9de583ea075e471efbeb949af4fb11e7659bfacbd67eba4d9aa58c653190f00
S3 hiding_nonce: 6341f043b08f518d5f12ce4d699e3827e0ad7a8f2a4bcdcee64f
afe99dfbbe4187a01ebdf967a3503bbd84af24e0af93b078ab8d1cda533c00
S3 binding_nonce: 1716d9dc1e4c97553708f2ebc65039a50d00919a68940afd660
f31d1939e6e5f4a88631693f1acb2e737feff2bef7b0cdb1d3baae603272900
S3 hiding_nonce_commitment: 8dd1e8cf1e0330bbcdeced3e8e325e48bba2b0caf
34185a53bd8227f1c96be778681164417a582d39f1bea23a8dfe5a9e0a96d3dbbf8ee
6180
S3 binding_nonce_commitment: 58df1966884f46af333e26b6c1cace2720e2bd70
39a21b1b8483e28974237bcea8c5649cfe460e821afc94021d0b686029681a1148cd3
f0e00
S3 binding_factor_input: b54ff7255705a71ee2925e4a3e30e41aed489a579d55
95e0df13e32e1e4dd202a7c7f68b31d6418d9845eb4d757adda6ab189e1bb340db818
e5b3bc725d992faf63e9b0500db10517fe09d3f566fba3a80e46a403e0c7d41548fbf
75cf2662b00225b502961f98d8c9ff937de0b24c231845c16de964d8b11ffe861c657
afc6656a15d98dc9e6df3d2371d0fd2e0d990ad977470d0a371c1510accd90bb9fe51
4da13c4c2d97488a7980cb7ea47ac5124ec710faa8692c009794b7c7a9e29b8cc5ea4
cd9418c853676e55971349c313f84b902c1a112a0ecdbecb5fb6030ad874161ff7c00
03
S3 binding_factor: bb8b3d669199e180628a91097a03422c12103b2f34c7931f98
0accb20574a506d8cf966c444fcf5fd5bbfbc6943440aa981ef6fb070fad0600

// Round two parameters
participants: 1,3

// Signer round two outputs
S1 sig_share: a2697f5e866a4b61651f16df4105b80a47365294522dbfa26ed9f8b
cb66954dec45326f5645590f2e0a8664e8870c053ec8ba5a58526a42f00
S3 sig_share: 1bce211bc3a8ccd27721c091bc426f422314f70b0bde3f4c45bfad2
48e57643f68983bcba53e6c500bbb4d19de4b5320e44a757c8997042c00

sig: 60cf90055083501d04f38c133c01f121444a6c6889745363555cea964285d5eb
bdb25690cdff9ca96a28b10bab68aa721b0fca9288a7efbe80caf248ceb6509f1088b
110e38b85ba2bda1373f11330b02aca74dc6445c1b81d2dec61c00a94fc42ec63b467
66bc1374d0d61a220fbea81b00
]]></artwork>
      </section>
      <section anchor="frostristretto255-sha-512">
        <name>FROST(ristretto255, SHA-512)</name>
        <artwork><![CDATA[
// Configuration information
MAX_SIGNERS: 3
MIN_SIGNERS: 2
NUM_SIGNERS: 2

// Group input parameters
group_secret_key: 1b25a55e463cfd15cf14a5d3acc3d15053f08da49c8afcf3ab2
65f2ebc4f970b
group_public_key: e2a62f39eede11269e3bd5a7d97554f5ca384f9f6d3dd9c3c0d
05083c7254f57
message: 74657374

// Signer input parameters
S1 signer_share: 5c3430d391552f6e60ecdc093ff9f6f4488756aa6cebdbad75a7
68010b8f830e
S2 signer_share: b06fc5eac20b4f6e1b271d9df2343d843e1e1fb03c4cbb673f28
72d459ce6f01
S3 signer_share: f17e505f0e2581c6acfe54d3846a622834b5e7b50cad9a2109a9
7ba7a80d5c04

// Round one parameters
participants: 1,3

// Signer round one outputs
S1 hiding_nonce: eb0dc12ae7b746d36e3f2de46ce3833a05b9d4af5434eeb8cafa
efda76906d00
S1 binding_nonce: 491e91aa9df514ef598d5e0c7c5cdd088fbde4965b96069d546
c0f04f1822b03
S1 hiding_nonce_commitment: c6fe28df6a13f2ea80a911dd7a284e4b185bc8d3e
3102adaf88807a5e3d3813c
S1 binding_nonce_commitment: a413722bcfc71ba044bb2846b814401e60fed6b2
fc5bfb25f5a49e63474b7011
S1 binding_factor_input: 678630bf982c566949d7f22d2aefb94f252c664216d3
32f34e2c8fdcd7045f207f854504d0daa534a5b31dbdf4183be30eb4fdba4f962d8a6
b69cf20c2734043c229faa47541463641bcc7c23a4576d74e536dea0d7f7ae6e2c846
1a63f4fe97599d8d83005d520a104f937ce3b8181281348fad246e1c0d89ed4cca7d5
22e750001
S1 binding_factor: 2e81f15e28874f517b6d2023291e49000f71f998852b484aae
f945000478ea05
S3 hiding_nonce: abd12b8e6f255ee1e540eab029003a6e956567617720f61115f0
941615892209
S3 binding_nonce: 218e22625f93f262f025bd2d13c46ba722aa29fe585ceed66ff
442d98fe4e509
S3 hiding_nonce_commitment: 5450c4c98c3fc6bb579bded17fcdc23073d2ecfb7
61e3f9433cbc991e1496068
S3 binding_nonce_commitment: 0ae0cf608fcba285ec1f6c84c955572c91a4fafc
c1f1120f4f30b25e40fbcc0a
S3 binding_factor_input: 678630bf982c566949d7f22d2aefb94f252c664216d3
32f34e2c8fdcd7045f207f854504d0daa534a5b31dbdf4183be30eb4fdba4f962d8a6
b69cf20c2734043c229faa47541463641bcc7c23a4576d74e536dea0d7f7ae6e2c846
1a63f4fe97599d8d83005d520a104f937ce3b8181281348fad246e1c0d89ed4cca7d5
22e750003
S3 binding_factor: 240d5257c68e377c1994481081a8a4c4362b9e82e523088c30
d91f8c2811890e

// Round two parameters
participants: 1,3

// Signer round two outputs
S1 sig_share: efae3a83437fa8cd96194aacc56a7eb841630c280da99e7764a81d1
340323306
S3 sig_share: 96ddc4582e45eabce46f07b9e9375f8b49d35d1510fd34ac02b1e79
d6100a602

sig: 7ec584cef9a383afb43883b73bcaa6313afe878bd5fe75a608311b866a76ec67
858cffdb71c4928a7b895165afa2dd438b366a3d1da6d323675905b1a132d908
]]></artwork>
      </section>
      <section anchor="frostp-256-sha-256-1">
        <name>FROST(P-256, SHA-256)</name>
        <artwork><![CDATA[
// Configuration information
MAX_SIGNERS: 3
MIN_SIGNERS: 2
NUM_SIGNERS: 2

// Group input parameters
group_secret_key: 8ba9bba2e0fd8c4767154d35a0b7562244a4aaf6f36c8fb8735
fa48b301bd8de
group_public_key: 023a309ad94e9fe8a7ba45dfc58f38bf091959d3c99cfbd02b4
dc00585ec45ab70
message: 74657374

// Signer input parameters
S1 signer_share: 0c9c1a0fe806c184add50bbdcac913dda73e482daf95dcb9f35d
bb0d8a9f7731
S2 signer_share: 8d8e787bef0ff6c2f494ca45f4dad198c6bee01212d6c8406715
9c52e1863ad5
S3 signer_share: 0e80d6e8f6192c003b5488ce1eec8f5429587d48cf001541e713
b2d53c09d928

// Round one parameters
participants: 1,3

// Signer round one outputs
S1 hiding_nonce: 33a519cf070a166f9ef41a798d03423743f3e7d0b0efd5d0d963
773c4c53205e
S1 binding_nonce: 307d208d0c5728f323ae374f1ebd7f14a1a49b77d9d4bc1eab2
22218a17765ff
S1 hiding_nonce_commitment: 021e5c8b286dc859314eb1c0a2024a2077ad49b60
3112dd7bfaf326591d3fab332
S1 binding_nonce_commitment: 039431f230cf2bd90ad556a7f3d6b5a5686efd19
4c863356628d7296c2a3fa5900
S1 binding_factor_input: 7a753fed12531fbcd151e1d84702927c39063e780e91
c01f02bd11b60d7632bf44df5a9e0d49f359549018a13a586b5ede02cadef80472f75
d195b82160f43ea0001
S1 binding_factor: 71f09a2c4a1fc2f7a1379102809b4ac3247837c532cc5cf091
3782496c515655
S3 hiding_nonce: a614eadb972dc37b88aeceb6e899903f3104742d13f379a0e014
541decbea4a4
S3 binding_nonce: e509791018504c5bb87edaf0f44761cc840888507c4cd802379
71d78e65f70f2
S3 hiding_nonce_commitment: 0282308b1a22eb8efa13d4655f795f1cbf6525d88
63ac0d60c4e164b7436d41778
S3 binding_nonce_commitment: 036549bda4158ec5f76611275360a57e6ad5007d
6c072462feb42c8f2a25ec94ea
S3 binding_factor_input: 7a753fed12531fbcd151e1d84702927c39063e780e91
c01f02bd11b60d7632bf44df5a9e0d49f359549018a13a586b5ede02cadef80472f75
d195b82160f43ea0003
S3 binding_factor: 57a1061da0837cc0cd7e901a1d33f46efa18af9c3e6468cca8
8edd2d4a16e78d

// Round two parameters
participants: 1,3

// Signer round two outputs
S1 sig_share: 61e8b9c474df2e66ad19fd80a6e6cec1c6fe43c0a1cffd2d1c28299
e93e1bbdb
S3 sig_share: 9651d355ca1dea2557ba1f73e38a9f4ff1f1afc565323ef27f88a9d
14df8370e

sig: 02dfba781e17b830229ae4ed22ebe402873683d9dfd945d01762217fb3172c2a
71f83a8d1a3efd188c04d41cf48a716e11b8eff38607023c1f9bb0d36fe1d9f2e9
]]></artwork>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+296XobR5Iu/L+uoo78o0mbgGtf1KM5Q0uypafl5RNt95np
8RFqySJhgwAHBUiil7mW71q+K/veiMisyioUKHrrZZ5WtyUSqMolMpY3IiMj
Z7OZs1vuVuqh++DLN5vZy81+XbtfXm1Ve7VZ1e5FdbXebLfuxfJyXez2+Nh9
s9xduR+//PziywdOUZZb9Rrv6t/rTbUurtFYvS2a3Wy53TWzqtlezprtpt3N
vNSpip263GxvH7rLdbNxnOXN9qG72+7bXeB5uRc4xVYVD91P1Fpti5XzZrP9
7nK72d88dB9//PIT5zt1i4/qh+7z9U5t12o3e0I9OU67K9b1q2K1WaP3W9U6
7XWx3b36r/1mp9qH7nrj3Cwfun/Zbaozt91sd1vVtPjp9pp++MZxiv3uarN9
6LgzFyPDG0/m7uPNer1ZrW4dF39kXk/Ucltv1fCrzfayWC+/L3bLzfqh+x9V
0YJAREj+hB9R18VyBbLst/vrima7X+2v/+2SPp1Xm+u+28dz90+b69XG6vPx
lVq1qrA+H3b41Xr5Wm3b5e7W3TTun0Hg7WqzObtzINV31Ni/7d/op+dV0Y/h
+dz9BItfqu2lNYznxXr48X1GYfe5LNaXR3rErM/n7p83m3ow7+2y3W1urtR2
8O2w38erzb5uVmCbwfyKN/92pYqb5fqyXO7aOTjFccDJ13jrtcIyu2/zeRI8
5HeMAHyxL1fLyv2TunUfb29vdpvLbXFzdes2m627u1Lux8t1sa6Wxcq9UNvX
ywrC8HxdYzGJnemBp6vV8maHJh7vt6+V+2R5udzR00Z43PMVeB/yc+2ePH38
5OL89AEPAOuD/i/UzZnr53nGn7Vqu1QtCYkM0nUfnH928fzBQ/f/0Mhn3YMd
5/Kfmf6XyfTQpVfwycXTx58M5zoaqj3fM/eChKnY1i1P/WnTLKulWu+GVPmE
xPLMxaLP3UDmsSu2l2r30L3a7W7ahx9+2Krqco5x0A/+7HUwv6kba8Ik8Q7N
0FoWViSB93CyPXWzXa5382VRbbnZwAu8D7O4b/dOVTatwiZIeFTu+u8OhMHM
KPBmfjALAiK66M7Av/dk/A/9MI0HM3m2eePuNu4X2w1WyWjj87bdX4O1zQd3
zeLpCqJSKkz4MTgPivH+k/y02N7ir9VKbYdz9Gc+punTHHfbzfpSbS9UFQT3
nmfwYRaGg2madiAE1X5LSoQ477PNesaKvqiIPyYX86H70YsLF/z67gX9dHm1
3LofqVWnLfrvLnaqKdYb90vVtsV2TAlQaf391dL9j6v9kBLBzEtmHlHiI1ie
q4srMlUHZAAVYHjmFYtPudl8N9+3H/K/Y8Y9h1gV9R7Nw8Tst62CfnTPb25W
S1UPxO+ueT4Bc/JwRp9/vax2oCoPcsy0mIMzm83cooQ6A7kd5/kaOm3Ziik/
c98o9wbkJjVAqm4HCduyhLVYCuLF18UWGn5H2p9X4swt3I9X6u2yXCmXhXH2
OTTO9fJ7VTuGk/sVbTsl2VZX6lrNpZX+8xZKfe2WoAi4H9TAqMAvBUZjmljv
ryGPDgaAUS53S3pls7kB+4CcECJ+EW90TWKIq9XmDY2e2G15fUNiVrs17M52
We7JwtB8GJ8QjzlbVZM5XVe3okTQ9Y2qdtQ62lXVVu1cYBQMfr8FmbZnFg1d
enTZ0LCsSe2uCjQNfgQMuIEaJGpx0z/88L9efvw488Lgp5/mLvSAek3t7der
5Xdq8O0ZrwjGDibbrHgq+KXeV5iYY3W1tFcU1AAq2rm1AhmhTDDlJWMjt2hp
Omrd0mJQq5ggEaK4LGCsMVhCYbOtqkArKIhityuq72QeaPNm07YyCciMizGD
gusVQMEajQGSwZTcEJvg0esC5na52bdz4b3rZV2vlOO8R+iOJ8CwxXny/OLx
i/Pnnz59+RAMgxfx/8IlaDhbrmcY4SVmZ6Zl2A9tgkDu0yfPv/wc733x4un5
xVP35dNPP//6qfvls6fux5+/ePH5n59/9on7xfnL809enn/xDK2D/SB3ldJG
36KWA2Sx3uE/MAgo+cly92xfzt2L/eWlanf4sLoCwKHFhXyBG8Gp7b68Xu7o
O9D0Zr9agV/+a4+nWwfEMgoSIOEKLWH9PySs/OEkdp6DJmBKIUlLDAOKCtFv
iktwdeu8gWLDrL8SBhmuOzH9+nKlZrQEt+DU3Q6/n1nC0z/v0CCX6MAIDy/+
NfTzhLQRvelVQD9XFdWVS98t+dH2itga3xdo6Rrvg5mWr0kWWUKY1kbbk5D1
Q2EFwOO+FD8A04PFU44IC0ZTE9Yk80Q6oYIm2d9AviC01Q681qg3ilaPnpwc
scWIxHzMVPBd0AU4U6s54jFLpx1XZu6hMjthFjx1xkoNoAyYcA2tcwvBawwv
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
g8MgBLni0CoUaiZxvSH3mEJ4juDwUrySjx5/8f/9v36kfXwA+RzurXb4gQLx
C0VApTc2a/IrVAVc8Zsb7dwSzqyKG9ontN1LshigJtOr2ZggtQjYBp76Lenw
vQ7CbPaXV+STDd0wx3nfPR+HXOGyc2z8tovXWjiSQzmFKDkdaqFeab1YJ87R
4sICrQswzpr210cuum3dZf4jF14ULI9g0S7E3yMTTFZ3LiFe9r5cwxdAV5XC
IIP/6yczX8bRuxjDcbwr3mdiTPWRLQGx1rYH8y+PbKjOvVuo+hgVhj64GcCO
d3QKCiC83vTWZ+Bj6zE47ngUNpY/HNQ5Gq1pdeE3b/ViEwNfGmeWoqibaskg
XXveFmHOXI3t4bmja1q2pcRA6VUdh9my1/0X/8zu/Bvw2nmn4SXyYbNtp3km
eVYNWXYBNbSp1as9hu4nJ29PFw9FpZBv8gZSeQsS7tc80Lqb34k8fuou3i5k
MyaY0ZM0k3J5OYN6W9LuEb0szuzcpWigdgPOxt2GvnfqPnL/4r31MFfvbZh8
s+CF37KT8Yoaak/WNLjPOY7Suov1gtuncBk3CjlaL8mYUnhu58qbzr6ViOxA
A3MIj4Phyr1p1b7eyNOGnbTJwYBPHl988fKzT055MCu1PlnZYyBq4sNLrC2Y
armmAM8KBhmPLs5cNb+cn8lbWMHgLPyG5hie6plRzKZVEw3qBogH9EMuRzW6
Fs2rVqt/CfGj3xPtUp0UZ25pt11IyzxQXkUNphYFL+GinPncZ9FWSgzpqFdu
FcsTcYfSt3R4s3kz6o5nYrgFCmK/4p51XxxP27wRwV2UPa2oIbhaIfWQcdv/
+eN//thJPMAM+bxrZm+Y9rnCS2/lmVu88vaWXlkvV90bpICvbwj4WazImza0
hbWhPcM3SwNna952lb0PHQ00fs5W/TW47I94XDk//PC/YdQiL0tg1DjC3MO5
y/2StkP1bpSyASFFzuz2W4EHA+TxxEIejjOMNAoqaU3LvT4Zgpdux6F9SIDl
CyvqplNUJH54s7n86ac/EiYfvD5Aw+ZZ+pAeJvtLtnBrYnCl2bSwx6ODGq1E
JmUAn/cDcH94z/RvpmhNjfaoSrUi7SR+HpkrakK4HSy4mLt/pthXv/2+bB15
thAJ3ZTfUsBx8clCB68sZaz3mVpAitXNIILRzwj9b97IZo0eg8GNDi03tUum
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
FaCavr5aOwwaywDMSvNRZVmovjKNI/hdM5Xeb6MafXYpXf7AwH8gefWa2MSq
6zZbFbfGq3YsX0AqzBvIrDuZ9Q/o0kZ2ORmqmHnD9+nAjbrRhc/3FY262a8O
3I0zO1wv8cntfj3eW+Np1/utuR2LK/5QFTYKN44c9MkUlHvmlss2q7XWrKjW
5BJ0R8G5PcFhetTHodj8N8tbkeyz9UTeith+jGYSEN+NMiwbqqGapdvemRTj
nrCFLG/HSuN0fleGo/uXk2+Ppzh+e0cG4Ld9iiM3dUdaNuhjwpnDbEe9DT85
7rmkBh3Jg3xnDuS3R3MgBylHUwtzfwrIGH9mcuA7DvQUA545zGoaSZjB6fTx
IHNPpOKQ3TsWZXaaPgH4ns5UUxMJkyftEHgPczZ/Vg74RDs/Nynw8IiHMzGD
iQy2ydTBX5dmOe55ssoCPWJNx9Dt5x/MEqErrsu64L3ou45J23wx7nySYJP5
hAdZZL88n26qzzFj0xN3K0zjU0qpCbz/SqLCj4Y+qpXcKR+8P84qpkc6Ur7P
ooN/ummdDk6Pd/307pt229h+SX0UbSGXEzuRAzQoVpbgKW81tl2yVMmXxR76
O4OXWd/Uinf/er+e8P7QktmgiK8D5mGKeTFRPh2u4SbJc+zbs28Doz1TCmPD
KDmHtr5PjKK3F4akOkVEs6i5m3NMq64EjFwQ6xQVnKN2dK2eVRzLhCzlQj/9
va7QeS5RvDOD1xy5/1SYbUnD1+EW9qPpE9mS5xsdpN/u+i7C4lK1eoClGFoO
MiTGztoRoD+m21GQzZjaAoAWnD7ohjG1M8TUw7cZ96l6ogFmQbnnp0up6zLj
Bhl8+84r6TMVuwWcj9Kexd39enDHIChubysYB9jeQXCcc2ZRg7Q7qGy8YgMa
jHU/GOWh1Ih/ZM+5m26HRuwVkcNyfD2hBCxG3tZBktW4+dH1RxLEswCelgC5
k5U3d9bjeycHqRijVyQ4YPmpEoKXStB9WZozjuLzbWL93ZmjDuQOkWX9zrX9
/XE8JVXpsl89JDdSbnJx+yMyoxysPkmLAouTGL0DwjZCHyFBToH/pUE+G8Fb
4evOC+0noT0XY0q4DNQQ+GmAewT28U3Z5sLSgbtAEnK0w79LL2DqzJM59/g/
E+///o7ozzhA8eWWuK25UzsINvi4WLWqv3yjO/gptx6+6l4Wnh6gTpFtI3sD
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
geYPQgD3nMxiiPn6dQ5a5IxW/n+aYU0G5iIBAA==

-->

</rfc>
