<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.4.14 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-cfrg-hash-to-curve-15" category="info" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 2.42.0 -->
  <front>
    <title abbrev="hash-to-curve">Hashing to Elliptic Curves</title>
    <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-hash-to-curve-15"/>
    <author initials="A." surname="Faz-Hernandez" fullname="Armando Faz-Hernandez">
      <organization>Cloudflare, Inc.</organization>
      <address>
        <postal>
          <street>101 Townsend St</street>
          <city>San Francisco</city>
          <country>United States of America</country>
        </postal>
        <email>armfazh@cloudflare.com</email>
      </address>
    </author>
    <author initials="S." surname="Scott" fullname="Sam Scott">
      <organization>Cornell Tech</organization>
      <address>
        <postal>
          <street>2 West Loop Rd</street>
          <city>New York, New York 10044</city>
          <country>United States of America</country>
        </postal>
        <email>sam.scott@cornell.edu</email>
      </address>
    </author>
    <author initials="N." surname="Sullivan" fullname="Nick Sullivan">
      <organization>Cloudflare, Inc.</organization>
      <address>
        <postal>
          <street>101 Townsend St</street>
          <city>San Francisco</city>
          <country>United States of America</country>
        </postal>
        <email>nick@cloudflare.com</email>
      </address>
    </author>
    <author initials="R.S." surname="Wahby" fullname="Riad S. Wahby">
      <organization>Stanford University</organization>
      <address>
        <email>rsw@cs.stanford.edu</email>
      </address>
    </author>
    <author initials="C.A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare, Inc.</organization>
      <address>
        <postal>
          <street>101 Townsend St</street>
          <city>San Francisco</city>
          <country>United States of America</country>
        </postal>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2022" month="June" day="15"/>
    <workgroup>CFRG</workgroup>
    <keyword>Internet-Draft</keyword>
    <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>
    <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-hash-to-curve"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>Many cryptographic protocols require a procedure that encodes an arbitrary input,
e.g., a password, to a point on an elliptic curve. This procedure is known
as hashing to an elliptic curve, where the hashing procedure provides collision
resistance and does not reveal the discrete logarithm of the output point.
Prominent examples of cryptosystems that hash to elliptic curves include
password-authenticated key exchanges <xref target="BM92" format="default"/> <xref target="J96" format="default"/> <xref target="BMP00" format="default"/> <xref target="p1363.2" format="default"/>, Identity-Based
Encryption <xref target="BF01" format="default"/>, Boneh-Lynn-Shacham signatures <xref target="BLS01" format="default"/> <xref target="I-D.irtf-cfrg-bls-signature" format="default"/>,
Verifiable Random Functions <xref target="MRV99" format="default"/> <xref target="I-D.irtf-cfrg-vrf" format="default"/>, and Oblivious Pseudorandom
Functions <xref target="NR97" format="default"/> <xref target="I-D.irtf-cfrg-voprf" format="default"/>.</t>
      <t>Unfortunately for implementors, the precise hash function that is suitable
for a given protocol implemented using a given elliptic curve is often unclear
from the protocol's description. Meanwhile, an incorrect choice of hash
function can have disastrous consequences for security.</t>
      <t>This document aims to bridge this gap by providing a comprehensive set of
recommended algorithms for a range of curve types.
Each algorithm conforms to a common interface: it takes as input an arbitrary-length
byte string and produces as output a point on an elliptic curve.
We provide implementation details for each algorithm, describe
the security rationale behind each recommendation, and give guidance for
elliptic curves that are not explicitly covered. We also present optimized
implementations for internal functions used by these algorithms.</t>
      <t>Readers wishing to quickly specify or implement a conforming hash function
should consult <xref target="suites" format="default"/>, which lists recommended hash-to-curve suites
and describes both how to implement an existing suite and how to specify
a new one.</t>
      <t>This document does not cover rejection sampling methods, sometimes referred to
as "try-and-increment" or "hunt-and-peck," because the goal is to describe
algorithms that can plausibly be computed in constant time. Use of these rejection
methods is NOT RECOMMENDED, because they have been a perennial cause of
side-channel vulnerabilities. See Dragonblood <xref target="VR20" format="default"/> as one example of this
problem in practice.</t>
      <t>This document represents the consensus of the Crypto Forum Research Group (CFRG).</t>
      <section anchor="requirements-notation" numbered="true" toc="default">
        <name>Requirements Notation</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP&nbsp;14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they
appear in all capitals, as shown here.</t>
      </section>
    </section>
    <section anchor="background" numbered="true" toc="default">
      <name>Background</name>
      <section anchor="bg-curves" numbered="true" toc="default">
        <name>Elliptic curves</name>
        <t>The following is a brief definition of elliptic curves, with an emphasis on
important parameters and their relation to hashing to curves.
For further reference on elliptic curves, consult <xref target="CFADLNV05" format="default"/> or <xref target="W08" format="default"/>.</t>
        <t>Let F be the finite field GF(q) of prime characteristic p &gt; 3.
(This document does not consider elliptic curves over fields of characteristic 2 or 3.)
In most cases F is a prime field, so q = p.
Otherwise, F is an extension field, so q = p^m for an integer m &gt; 1.
This document writes elements of extension fields
in a primitive element or polynomial basis, i.e., as a vector
of m elements of GF(p) written in ascending order by degree.
The entries of this vector are indexed in ascending order starting from 1,
i.e., x = (x_1, x_2, ..., x_m).
For example, if q = p^2 and the primitive element basis is (1, I),
then x = (a, b) corresponds to the element a + b * I, where
x_1 = a and x_2 = b.
(Note that all choices of basis are isomorphic, but certain choices may
result in a more efficient implementation; this document does not make
any particular assumptions about choice of basis.)</t>
        <t>An elliptic curve E is specified by an equation in two variables and a
finite field F. An elliptic curve equation takes one of several standard forms,
including (but not limited to) Weierstrass, Montgomery, and Edwards.</t>
        <t>The curve E induces an algebraic group of order n, meaning that the group
has n distinct elements.
(This document uses additive notation for the elliptic curve group operation.)
Elements of an elliptic curve group are points with affine coordinates (x, y)
satisfying the curve equation, where x and y are elements of F.
In addition, all elliptic curve groups have a distinguished element, the identity
point, which acts as the identity element for the group operation.
On certain curves (including Weierstrass and Montgomery curves), the identity
point cannot be represented as an (x, y) coordinate pair.</t>
        <t>For security reasons, cryptographic uses of elliptic curves generally require
using a (sub)group of prime order.
Let G be such a subgroup of the curve of prime order r, where n = h * r.
In this equation, h is an integer called the cofactor.
An algorithm that takes as input an arbitrary point on the curve E and
produces as output a point in the subgroup G of E is said to "clear
the cofactor." Such algorithms are discussed in <xref target="cofactor-clearing" format="default"/>.</t>
        <t>Certain hash-to-curve algorithms restrict the form of the curve equation, the
characteristic of the field, or the parameters of the curve. For each
algorithm presented, this document lists the relevant restrictions.</t>
        <t>The table below summarizes quantities relevant to hashing to curves:</t>
        <table anchor="definition-table" align="center">
          <name>Summary of symbols and their definitions.</name>
          <thead>
            <tr>
              <th align="center">Symbol</th>
              <th align="left">Meaning</th>
              <th align="left">Relevance</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="center">F,q,p</td>
              <td align="left">A finite field F of characteristic p and #F = q = p^m.</td>
              <td align="left">For prime fields, q = p; otherwise, q = p^m and m&gt;1.</td>
            </tr>
            <tr>
              <td align="center">E</td>
              <td align="left">Elliptic curve.</td>
              <td align="left">E is specified by an equation and a field F.</td>
            </tr>
            <tr>
              <td align="center">n</td>
              <td align="left">Number of points on the elliptic curve E.</td>
              <td align="left">n = h * r, for h and r defined below.</td>
            </tr>
            <tr>
              <td align="center">G</td>
              <td align="left">A prime-order subgroup of the points on E.</td>
              <td align="left">Destination group to which byte strings are encoded.</td>
            </tr>
            <tr>
              <td align="center">r</td>
              <td align="left">Order of G.</td>
              <td align="left">r is a prime factor of n (usually, the largest such factor).</td>
            </tr>
            <tr>
              <td align="center">h</td>
              <td align="left">Cofactor, h &gt;= 1.</td>
              <td align="left">An integer satisfying n = h * r.</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="terminology" numbered="true" toc="default">
        <name>Terminology</name>
        <t>In this section, we define important terms used throughout the document.</t>
        <section anchor="term-mapping" numbered="true" toc="default">
          <name>Mappings</name>
          <t>A mapping is a deterministic function from an element of the field F to a point
on an elliptic curve E defined over F.</t>
          <t>In general, the set of all points that a mapping can produce over all
possible inputs may be only a subset of the points on an elliptic curve
(i.e., the mapping may not be surjective).
In addition, a mapping may output the same point for two or more distinct inputs
(i.e., the mapping may not be injective).
For example, consider a mapping from F to an elliptic curve having n points:
if the number of elements of F is not equal to n,
then this mapping cannot be bijective (i.e., both injective and surjective)
since the mapping is defined to be deterministic.</t>
          <t>Mappings may also be invertible, meaning that there is an efficient algorithm
that, for any point P output by the mapping, outputs an x in F such that
applying the mapping to x outputs P.
Some of the mappings given in <xref target="mappings" format="default"/> are invertible, but this
document does not discuss inversion algorithms.</t>
        </section>
        <section anchor="term-encoding" numbered="true" toc="default">
          <name>Encodings</name>
          <t>Encodings are closely related to mappings.
Like a mapping, an encoding is a function that outputs a point on an elliptic curve.
In contrast to a mapping, however, the input to an encoding is an arbitrary-length
byte string.</t>
          <t>This document constructs deterministic encodings by composing a hash function Hf
with a deterministic mapping.
In particular, Hf takes as input an arbitrary string and outputs an element of F.
The deterministic mapping takes that element as input and outputs a point on an
elliptic curve E defined over F.
Since Hf takes arbitrary-length byte strings as inputs, it cannot be injective:
the set of inputs is larger than the set of outputs, so there must
be distinct inputs that give the same output (i.e., there must be collisions).
Thus, any encoding built from Hf is also not injective.</t>
          <t>Like mappings, encodings may be invertible, meaning that there is an efficient
algorithm that, for any point P output by the encoding, outputs a string s
such that applying the encoding to s outputs P.
The instantiation of Hf used by all encodings specified in this document (<xref target="hashtofield" format="default"/>)
is not invertible. Thus, the encodings are also not invertible.</t>
          <t>In some applications of hashing to elliptic curves, it is important that
encodings do not leak information through side channels.
<xref target="VR20" format="default"/> is one example of this type of leakage leading to a security vulnerability.
See <xref target="security-considerations" format="default"/> for further discussion.</t>
        </section>
        <section anchor="term-rom" numbered="true" toc="default">
          <name>Random oracle encodings</name>
          <t>A random-oracle encoding satisfies a strong property: it can be proved
indifferentiable from a random oracle <xref target="MRH04" format="default"/> under a suitable assumption.</t>
          <t>Both constructions described in <xref target="roadmap" format="default"/> are indifferentiable from
random oracles <xref target="MRH04" format="default"/> when instantiated following the guidelines in this document.
The constructions differ in their output distributions: one gives a uniformly random
point on the curve, the other gives a point sampled from a nonuniform distribution.</t>
          <t>A random-oracle encoding with a uniform output distribution is suitable for use
in many cryptographic protocols proven secure in the random oracle model.
See <xref target="security-considerations" format="default"/> for further discussion.</t>
        </section>
        <section anchor="term-serialization" numbered="true" toc="default">
          <name>Serialization</name>
          <t>A procedure related to encoding is the conversion of an elliptic curve point to a bit string.
This is called serialization, and is typically used for compactly storing or transmitting points.
The inverse operation, deserialization, converts a bit string to an elliptic curve point.
For example, <xref target="SEC1" format="default"/> and <xref target="p1363a" format="default"/> give standard methods for serialization and deserialization.</t>
          <t>Deserialization is different from encoding in that only certain strings
(namely, those output by the serialization procedure) can be deserialized.
In contrast, this document is concerned with encodings from arbitrary strings
to elliptic curve points.
This document does not cover serialization or deserialization.</t>
        </section>
        <section anchor="term-domain-separation" numbered="true" toc="default">
          <name>Domain separation</name>
          <t>Cryptographic protocols proven secure in the random oracle model are often analyzed
under the assumption that the random oracle only answers queries associated
with that protocol (including queries made by adversaries) <xref target="BR93" format="default"/>.
In practice, this assumption does not hold if two protocols use the
same function to instantiate the random oracle.
Concretely, consider protocols P1 and P2 that query a random oracle RO:
if P1 and P2 both query RO on the same value x, the security analysis of
one or both protocols may be invalidated.</t>
          <t>A common way of addressing this issue is called domain separation,
which allows a single random oracle to simulate multiple, independent oracles.
This is effected by ensuring that each simulated oracle sees queries that are
distinct from those seen by all other simulated oracles.
For example, to simulate two oracles RO1 and RO2 given a single oracle RO,
one might define</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
RO1(x) := RO("RO1" || x)
RO2(x) := RO("RO2" || x)
]]></artwork>
          <t>where || is the concatenation operator.
In this example, "RO1" and "RO2" are called domain separation tags;
they ensure that queries to RO1 and RO2 cannot result in identical
queries to RO, meaning that it is safe to treat RO1 and RO2 as
independent oracles.</t>
          <t>In general, domain separation requires defining a distinct injective
encoding for each oracle being simulated.
In the above example, "RO1" and "RO2" have the same length and thus
satisfy this requirement when used as prefixes.
The algorithms specified in this document take a different approach to ensuring
injectivity; see <xref target="hashtofield-expand" format="default"/> and <xref target="security-considerations-domain-separation" format="default"/>
for more details.</t>
        </section>
      </section>
    </section>
    <section anchor="roadmap" numbered="true" toc="default">
      <name>Encoding byte strings to elliptic curves</name>
      <t>This section presents a general framework and interface for encoding byte strings
to points on an elliptic curve. The constructions in this section rely on three
basic functions:</t>
      <ul spacing="normal">
        <li>
          <t>The function hash_to_field hashes arbitrary-length byte strings to a list
of one or more elements of a finite field F; its implementation is defined in
<xref target="hashtofield" format="default"/>.  </t>
          <sourcecode type="pseudocode">
hash_to_field(msg, count)

Inputs:
- msg, a byte string containing the message to hash.
- count, the number of elements of F to output.

Outputs:
- (u_0, ..., u_(count - 1)), a list of field elements.

Steps: defined in Section 5.
</sourcecode>
        </li>
        <li>
          <t>The function map_to_curve calculates a point on the elliptic curve E
from an element of the finite field F over which E is defined.
<xref target="mappings" format="default"/> describes mappings for a range of curve families.  </t>
          <sourcecode type="pseudocode">
map_to_curve(u)

Input: u, an element of field F.
Output: Q, a point on the elliptic curve E.
Steps: defined in Section 6.
</sourcecode>
        </li>
        <li>
          <t>The function clear_cofactor sends any point on the curve E to
the subgroup G of E. <xref target="cofactor-clearing" format="default"/> describes methods to perform
this operation.  </t>
          <sourcecode type="pseudocode">
clear_cofactor(Q)

Input: Q, a point on the elliptic curve E.
Output: P, a point in G.
Steps: defined in Section 7.
</sourcecode>
        </li>
      </ul>
      <t>The two encodings (<xref target="term-encoding" format="default"/>) defined in this section have the
same interface and are both random-oracle encodings (<xref target="term-rom" format="default"/>).
Both are implemented as a composition of the three basic functions above.
The difference between the two is that their outputs are sampled from
different distributions:</t>
      <ul spacing="normal">
        <li>
          <t>encode_to_curve is a nonuniform encoding from byte strings to points in G.
That is, the distribution of its output is not uniformly random in G:
the set of possible outputs of encode_to_curve is only a fraction of the
points in G, and some points in this set are more likely to be output than others.
<xref target="security-considerations-encode" format="default"/> gives a more precise definition of
encode_to_curve's output distribution.  </t>
          <sourcecode type="pseudocode">
encode_to_curve(msg)

Input: msg, an arbitrary-length byte string.
Output: P, a point in G.

Steps:
1. u = hash_to_field(msg, 1)
2. Q = map_to_curve(u[0])
3. P = clear_cofactor(Q)
4. return P
</sourcecode>
        </li>
        <li>
          <t>hash_to_curve is a uniform encoding from byte strings to points in G.
That is, the distribution of its output is statistically close to uniform in G.  </t>
          <t>
This function is suitable for most applications requiring a random oracle
returning points in G, when instantiated with any of the map_to_curve
functions described in <xref target="mappings" format="default"/>.
See <xref target="security-considerations" format="default"/> for further discussion.  </t>
          <sourcecode type="pseudocode">
hash_to_curve(msg)

Input: msg, an arbitrary-length byte string.
Output: P, a point in G.

Steps:
1. u = hash_to_field(msg, 2)
2. Q0 = map_to_curve(u[0])
3. Q1 = map_to_curve(u[1])
4. R = Q0 + Q1              # Point addition
5. P = clear_cofactor(R)
6. return P
</sourcecode>
        </li>
      </ul>
      <t>Each hash-to-curve suite in <xref target="suites" format="default"/> instantiates one of these encoding
functions for a specifc elliptic curve.</t>
      <section anchor="domain-separation" numbered="true" toc="default">
        <name>Domain separation requirements</name>
        <t>All uses of the encoding functions defined in this document MUST include
domain separation (<xref target="term-domain-separation" format="default"/>) to avoid interfering with
other uses of similar functionality.</t>
        <t>Applications that instantiate multiple, independent instances of either
hash_to_curve or encode_to_curve MUST enforce domain separation
between those instances.
This requirement applies both in the case of multiple instances targeting
the same curve and in the case of multiple instances targeting different curves.
(This is because the internal hash_to_field primitive (<xref target="hashtofield" format="default"/>)
requires domain separation to guarantee independent outputs.)</t>
        <t>Domain separation is enforced with a domain separation tag (DST),
which is a byte string constructed according to the following requirements:</t>
        <ol spacing="normal" type="1">
          <li>Tags MUST be supplied as the DST parameter to hash_to_field, as
described in <xref target="hashtofield" format="default"/>.</li>
          <li>Tags MUST have nonzero length. A minimum length of 16 bytes
is RECOMMENDED to reduce the chance of collisions with other
applications.</li>
          <li>Tags SHOULD begin with a fixed identification string
that is unique to the application.</li>
          <li>Tags SHOULD include a version number.</li>
          <li>For applications that define multiple ciphersuites, each ciphersuite's
tag MUST be different. For this purpose, it is RECOMMENDED to
include a ciphersuite identifier in each tag.</li>
          <li>For applications that use multiple encodings, either to the same curve
or to different curves, each encoding MUST use a different tag.
For this purpose, it is RECOMMENDED to include the encoding's
Suite ID (<xref target="suites" format="default"/>) in the domain separation tag.
For independent encodings based on the same suite, each tag SHOULD
also include a distinct identifier, e.g., "ENC1" and "ENC2".</li>
        </ol>
        <t>As an example, consider a fictional application named Quux
that defines several different ciphersuites, each for a different curve.
A reasonable choice of tag is "QUUX-V&lt;xx&gt;-CS&lt;yy&gt;-&lt;suiteID&gt;", where
&lt;xx&gt; and &lt;yy&gt; are two-digit numbers indicating the version and
ciphersuite, respectively, and &lt;suiteID&gt; is the Suite ID of the
encoding used in ciphersuite &lt;yy&gt;.</t>
        <t>As another example, consider a fictional application named Baz that requires
two independent random oracles to the same curve.
Reasonable choices of tags for these oracles are
"BAZ-V&lt;xx&gt;-CS&lt;yy&gt;-&lt;suiteID&gt;-ENC1" and "BAZ-V&lt;xx&gt;-CS&lt;yy&gt;-&lt;suiteID&gt;-ENC2",
respectively, where &lt;xx&gt;, &lt;yy&gt;, and &lt;suiteID&gt; are as described above.</t>
        <t>The example tags given above are assumed to be ASCII-encoded byte strings
without null termination, which is the RECOMMENDED format. Other encodings
can be used, but in all cases the encoding as a sequence of bytes MUST be
specified unambiguously.</t>
      </section>
    </section>
    <section anchor="utility" numbered="true" toc="default">
      <name>Utility functions</name>
      <t>Algorithms in this document use the utility functions described below,
plus standard arithmetic operations (addition, multiplication, modular
reduction, etc.) and elliptic curve point operations (point addition and
scalar multiplication).</t>
      <t>For security, implementations of these functions SHOULD be constant time:
in brief, this means that execution time and memory access patterns SHOULD NOT
depend on the values of secret inputs, intermediate values, or outputs.
For such constant-time implementations, all arithmetic, comparisons, and
assignments MUST also be implemented in constant time.
<xref target="security-considerations" format="default"/> briefly discusses constant-time security issues.</t>
      <t>Guidance on implementing low-level operations (in constant time or otherwise)
is beyond the scope of this document; readers should consult standard reference
material <xref target="MOV96" format="default"/> <xref target="CFADLNV05" format="default"/>.</t>
      <ul spacing="normal">
        <li>CMOV(a, b, c): If c is False, CMOV returns a, otherwise it returns b.
For constant-time implementations, this operation must run in
time independent of the value of c.</li>
        <li>AND, OR, NOT, and XOR are standard bitwise logical operators.
For constant-time implementations, short-circuit operators MUST be avoided.</li>
        <li>
          <t>is_square(x): This function returns True whenever the value x is a
square in the field F. By Euler's criterion, this function can be
calculated in constant time as  </t>
          <sourcecode type="pseudocode">
is_square(x) := { True,  if x^((q - 1) / 2) is 0 or 1 in F;
                { False, otherwise.
</sourcecode>
          <t>
In certain extension fields, is_square can be computed in constant
time more quickly than by the above exponentiation.
<xref target="AR13" format="default"/> and <xref target="S85" format="default"/> describe optimized methods for extension fields.
<xref target="appx-sqrt-issq" format="default"/> gives an optimized straight-line method for GF(p^2).</t>
        </li>
        <li>
          <t>sqrt(x): The sqrt operation is a multi-valued function, i.e., there exist
two roots of x in the field F whenever x is square (except when x = 0).
To maintain compatibility across implementations while allowing implementors
leeway for optimizations, this document does not require sqrt() to return a
particular value. Instead, as explained in <xref target="point-sign" format="default"/>, any function that
calls sqrt also specifies how to determine the correct root.  </t>
          <t>
The preferred way of computing square roots is to fix a deterministic
algorithm particular to F. We give several algorithms in <xref target="appx-sqrt" format="default"/>.</t>
        </li>
        <li>sgn0(x): This function returns either 0 or 1 indicating the "sign" of x,
where sgn0(x) == 1 just when x is "negative".
(In other words, this function always considers 0 to be positive.)
<xref target="sgn0-function" format="default"/> defines this function and discusses its implementation.</li>
        <li>
          <t>inv0(x): This function returns the multiplicative inverse of x in F,
extended to all of F by fixing inv0(0) == 0.
A straightforward way to implement inv0 in constant time is to compute  </t>
          <sourcecode type="pseudocode">
inv0(x) := x^(q - 2).
</sourcecode>
          <t>
Notice that on input 0, the output is 0 as required.
Certain fields may allow faster inversion methods; detailed discussion
of such methods is beyond the scope of this document.</t>
        </li>
        <li>I2OSP and OS2IP: These functions are used to convert a byte string to
and from a non-negative integer as described in <xref target="RFC8017" format="default"/>.
(Note that these functions operate on byte strings in big-endian byte
order.)</li>
        <li>a || b: denotes the concatenation of byte strings a and b. For example,
"ABC" || "DEF" == "ABCDEF".</li>
        <li>substr(str, sbegin, slen): for a byte string str, this function returns
the slen-byte substring starting at position sbegin; positions are zero
indexed.
For example, substr("ABCDEFG", 2, 3) == "CDE".</li>
        <li>len(str): for a byte string str, this function returns the length of str
in bytes. For example, len("ABC") == 3.</li>
        <li>strxor(str1, str2): for byte strings str1 and str2, strxor(str1, str2)
returns the bitwise XOR of the two strings.
For example, strxor("abc", "XYZ") == "9;9" (the strings in this example
are ASCII literals, but strxor is defined for arbitrary byte strings).
In this document, strxor is only applied to inputs of equal length.</li>
      </ul>
      <section anchor="sgn0-function" numbered="true" toc="default">
        <name>The sgn0 function</name>
        <t>This section defines a generic sgn0 implementation that applies to any field F = GF(p^m).
It also gives simplified implementations for the cases F = GF(p) and F = GF(p^2).</t>
        <t>The definition of the sgn0 function for extension fields relies on
the polynomial basis or vector representation of field elements, and
iterates over the entire vector representation of the input element.
As a result, sgn0 depends on the primitive polynomial used to define
the polynomial basis; see <xref target="suites" format="default"/> for more information about this
basis, and see <xref target="bg-curves" format="default"/> for a discussion of representing elements
of extension fields as vectors.</t>
        <sourcecode type="pseudocode">
sgn0(x)

Parameters:
- F, a finite field of characteristic p and order q = p^m.
- p, the characteristic of F (see immediately above).
- m, the extension degree of F, m &gt;= 1 (see immediately above).

Input: x, an element of F.
Output: 0 or 1.

Steps:
1. sign = 0
2. zero = 1
3. for i in (1, 2, ..., m):
4.   sign_i = x_i mod 2
5.   zero_i = x_i == 0
6.   sign = sign OR (zero AND sign_i) # Avoid short-circuit logic ops
7.   zero = zero AND zero_i
8. return sign
</sourcecode>
        <t>When m == 1, sgn0 can be significantly simplified:</t>
        <sourcecode type="pseudocode">
sgn0_m_eq_1(x)

Input: x, an element of GF(p).
Output: 0 or 1.

Steps:
1. return x mod 2
</sourcecode>
        <t>The case m == 2 is only slightly more complicated:</t>
        <sourcecode type="pseudocode">
sgn0_m_eq_2(x)

Input: x, an element of GF(p^2).
Output: 0 or 1.

Steps:
1. sign_0 = x_0 mod 2
2. zero_0 = x_0 == 0
3. sign_1 = x_1 mod 2
4. s = sign_0 OR (zero_0 AND sign_1) # Avoid short-circuit logic ops
5. return s
</sourcecode>
      </section>
    </section>
    <section anchor="hashtofield" numbered="true" toc="default">
      <name>Hashing to a finite field</name>
      <t>The hash_to_field function hashes a byte string msg of arbitrary length into
one or more elements of a field F.
This function works in two steps: it first hashes the input byte string
to produce a uniformly random byte string, and then interprets this byte string
as one or more elements of F.</t>
      <t>For the first step, hash_to_field calls an auxiliary function expand_message.
This document defines two variants of expand_message: one appropriate
for hash functions like SHA-2 <xref target="FIPS180-4" format="default"/> or SHA-3 <xref target="FIPS202" format="default"/>, and another
appropriate for extendable-output functions such as SHAKE128 <xref target="FIPS202" format="default"/>.
Security considerations for each expand_message variant are discussed
below (<xref target="hashtofield-expand-xmd" format="default"/>, <xref target="hashtofield-expand-xof" format="default"/>).</t>
      <t>Implementors MUST NOT use rejection sampling to generate a uniformly random
element of F, to ensure that the hash_to_field function is amenable to
constant-time implementation.
The reason is that rejection sampling procedures are difficult to implement
in constant time, and later well-meaning "optimizations" may silently render
an implementation non-constant-time.
This means that any hash_to_field function based on rejection sampling
would be incompatible with constant-time implementation.</t>
      <t>The hash_to_field function is also suitable for securely hashing to scalars.
For example, when hashing to the scalar field for an elliptic curve (sub)group
with prime order r, it suffices to instantiate hash_to_field with target field
GF(r).</t>
      <section anchor="hashtofield-sec" numbered="true" toc="default">
        <name>Security considerations</name>
        <t>The hash_to_field function is designed to be indifferentiable from a
random oracle <xref target="MRH04" format="default"/> when expand_message (<xref target="hashtofield-expand" format="default"/>)
is modeled as a random oracle (see <xref target="security-considerations-hash-to-field" format="default"/>).
Ensuring indifferentiability requires care; to see why, consider a prime
p that is close to 3/4 * 2^256.
Reducing a random 256-bit integer modulo this p yields a value that is in
the range [0, p / 3] with probability roughly 1/2, meaning that this value
is statistically far from uniform in [0, p - 1].</t>
        <t>To control bias, hash_to_field instead uses random integers whose
length is at least ceil(log2(p)) + k bits, where k is the target security
level for the suite in bits.
Reducing such integers mod p gives bias at most 2^-k for any p; this bias
is appropriate when targeting k-bit security.
For each such integer, hash_to_field uses expand_message to obtain
L uniform bytes, where</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
L = ceil((ceil(log2(p)) + k) / 8)
]]></artwork>
        <t>These uniform bytes are then interpreted as an integer via OS2IP <xref target="RFC8017" format="default"/>.
For example, for a 255-bit prime p, and k = 128-bit security,
L = ceil((255 + 128) / 8) = 48 bytes.</t>
        <t>Note that k is an upper bound on the security level for the
corresponding curve.
See <xref target="security-considerations-targets" format="default"/> for more details, and
<xref target="new-suite" format="default"/> for guidelines on choosing k for a given curve.</t>
      </section>
      <section anchor="hashtofield-exteff" numbered="true" toc="default">
        <name>Efficiency considerations in extension fields</name>
        <t>The hash_to_field function described in this section is inefficient for certain
extension fields. Specifically, when hashing to an element of the extension
field GF(p^m), hash_to_field requires expanding msg into m * L bytes (for L as defined above).
For extension fields where log2(p) is significantly smaller than the security
level k, this approach is inefficient: it requires expand_message to output
roughly m * log2(p) + m * k bits, whereas m * log2(p) + k bytes suffices to
generate an element of GF(p^m) with bias at most 2^-k. In such cases, an
applications MAY use an alternative hash_to_field function, provided it
meets the following security requirements:</t>
        <ul spacing="normal">
          <li>The function MUST output field element(s) that are uniformly random except with bias at most 2^-k.</li>
          <li>The function MUST NOT use rejection sampling.</li>
          <li>The function SHOULD be amenable to straight line implementations.</li>
        </ul>
        <t>For example, Pornin <xref target="P20" format="default"/> describes a method for hashing to GF(9767^19) that meets
these requirements while using fewer output bits from expand_message than
hash_to_field would for that field.</t>
      </section>
      <section anchor="hashtofield-impl" numbered="true" toc="default">
        <name>hash_to_field implementation</name>
        <t>The following procedure implements hash_to_field.</t>
        <t>The expand_message parameter to this function MUST conform to the requirements
given in <xref target="hashtofield-expand" format="default"/>. <xref target="domain-separation" format="default"/> discusses the REQUIRED
method for constructing DST, the domain separation tag. Note that hash_to_field
may fail (abort) if expand_message fails.</t>
        <sourcecode type="pseudocode">
hash_to_field(msg, count)

Parameters:
- DST, a domain separation tag (see Section 3.1).
- F, a finite field of characteristic p and order q = p^m.
- p, the characteristic of F (see immediately above).
- m, the extension degree of F, m &gt;= 1 (see immediately above).
- L = ceil((ceil(log2(p)) + k) / 8), where k is the security
  parameter of the suite (e.g., k = 128).
- expand_message, a function that expands a byte string and
  domain separation tag into a uniformly random byte string
  (see Section 5.4).

Inputs:
- msg, a byte string containing the message to hash.
- count, the number of elements of F to output.

Outputs:
- (u_0, ..., u_(count - 1)), a list of field elements.

Steps:
1. len_in_bytes = count * m * L
2. uniform_bytes = expand_message(msg, DST, len_in_bytes)
3. for i in (0, ..., count - 1):
4.   for j in (0, ..., m - 1):
5.     elm_offset = L * (j + i * m)
6.     tv = substr(uniform_bytes, elm_offset, L)
7.     e_j = OS2IP(tv) mod p
8.   u_i = (e_0, ..., e_(m - 1))
9. return (u_0, ..., u_(count - 1))
</sourcecode>
      </section>
      <section anchor="hashtofield-expand" numbered="true" toc="default">
        <name>expand_message</name>
        <t>expand_message is a function that generates a uniformly random byte string.
It takes three arguments:</t>
        <ol spacing="normal" type="1">
          <li>msg, a byte string containing the message to hash,</li>
          <li>DST, a byte string that acts as a domain separation tag, and</li>
          <li>len_in_bytes, the number of bytes to be generated.</li>
        </ol>
        <t>This document defines the following two variants of expand_message:</t>
        <ul spacing="normal">
          <li>expand_message_xmd (<xref target="hashtofield-expand-xmd" format="default"/>) is appropriate for use
with a wide range of hash functions, including SHA-2 <xref target="FIPS180-4" format="default"/>, SHA-3
<xref target="FIPS202" format="default"/>, BLAKE2 <xref target="RFC7693" format="default"/>, and others.</li>
          <li>expand_message_xof (<xref target="hashtofield-expand-xof" format="default"/>) is appropriate for use
with extendable-output functions (XOFs) including functions in the SHAKE
<xref target="FIPS202" format="default"/> or BLAKE2X <xref target="BLAKE2X" format="default"/> families.</li>
        </ul>
        <t>These variants should suffice for the vast majority of use cases, but other
variants are possible; <xref target="hashtofield-expand-other" format="default"/> discusses requirements.</t>
        <section anchor="hashtofield-expand-xmd" numbered="true" toc="default">
          <name>expand_message_xmd</name>
          <t>The expand_message_xmd function produces a uniformly random byte string using
a cryptographic hash function H that outputs b bits. For security, H MUST meet
the following requirements:</t>
          <ul spacing="normal">
            <li>The number of bits output by H MUST be b &gt;= 2 * k, for k the target
security level in bits, and b MUST be divisible by 8.
The first requirement ensures k-bit collision resistance; the second
ensures uniformity of expand_message_xmd's output.</li>
            <li>H MAY be a Merkle-Damgaard hash function like SHA-2.
In this case, security holds when the underlying compression function is
modeled as a random oracle <xref target="CDMP05" format="default"/>. (See
<xref target="security-considerations-expand-xmd" format="default"/> for discussion.)</li>
            <li>H MAY be a sponge-based hash function like SHA-3 or BLAKE2.
In this case, security holds when the inner function is modeled as a
random transformation or as a random permutation <xref target="BDPV08" format="default"/>.</li>
            <li>Otherwise, H MUST be a hash function that has been proved indifferentiable
from a random oracle <xref target="MRH04" format="default"/> under a reasonable cryptographic assumption.</li>
          </ul>
          <t>SHA-2 <xref target="FIPS180-4" format="default"/> and SHA-3 <xref target="FIPS202" format="default"/> are typical and RECOMMENDED choices.
As an example, for the 128-bit security level, b &gt;= 256 bits and either SHA-256 or
SHA3-256 would be an appropriate choice.</t>
          <t>The hash function H is assumed to work by repeatedly ingesting fixed-length
blocks of data. The length in bits of these blocks is called the input block
size (s). As examples, s = 1024 for SHA-512 <xref target="FIPS180-4" format="default"/> and s = 576 for
SHA3-512 <xref target="FIPS202" format="default"/>. For correctness, H requires b &lt;= s.</t>
          <t>The following procedure implements expand_message_xmd.</t>
          <sourcecode type="pseudocode">
expand_message_xmd(msg, DST, len_in_bytes)

Parameters:
- H, a hash function (see requirements above).
- b_in_bytes, b / 8 for b the output size of H in bits.
  For example, for b = 256, b_in_bytes = 32.
- s_in_bytes, the input block size of H, measured in bytes (see
  discussion above). For example, for SHA-256, s_in_bytes = 64.

Input:
- msg, a byte string.
- DST, a byte string of at most 255 bytes.
  See below for information on using longer DSTs.
- len_in_bytes, the length of the requested output in bytes,
  not greater than the lesser of (255 * b_in_bytes) or 2^16-1.

Output:
- uniform_bytes, a byte string.

Steps:
1.  ell = ceil(len_in_bytes / b_in_bytes)
2.  ABORT if ell &gt; 255 or len_in_bytes &gt; 65535 or len(DST) &gt; 255
3.  DST_prime = DST || I2OSP(len(DST), 1)
4.  Z_pad = I2OSP(0, s_in_bytes)
5.  l_i_b_str = I2OSP(len_in_bytes, 2)
6.  msg_prime = Z_pad || msg || l_i_b_str || I2OSP(0, 1) || DST_prime
7.  b_0 = H(msg_prime)
8.  b_1 = H(b_0 || I2OSP(1, 1) || DST_prime)
9.  for i in (2, ..., ell):
10.    b_i = H(strxor(b_0, b_(i - 1)) || I2OSP(i, 1) || DST_prime)
11. uniform_bytes = b_1 || ... || b_ell
12. return substr(uniform_bytes, 0, len_in_bytes)
</sourcecode>
          <t>Note that the string Z_pad (step 6) is prefixed to msg before computing b_0 (step 7).
This is necessary for security when H is a Merkle-Damgaard hash, e.g., SHA-2
(see <xref target="security-considerations-expand-xmd" format="default"/>).
Hashing this additional data means that the cost of computing b_0 is higher
than the cost of simply computing H(msg).
In most settings this overhead is negligible, because the cost of evaluating
H is much less than the other costs involved in hashing to a curve.</t>
          <t>It is possible, however, to entirely avoid this overhead by taking advantage
of the fact that Z_pad depends only on H, and not on the arguments to
expand_message_xmd.
To do so, first precompute and save the internal state of H after ingesting
Z_pad. Then, when computing b_0, initialize H using the saved state.
Further details are implementation dependent, and beyond the scope of this document.</t>
        </section>
        <section anchor="hashtofield-expand-xof" numbered="true" toc="default">
          <name>expand_message_xof</name>
          <t>The expand_message_xof function produces a uniformly random byte string
using an extendable-output function (XOF) H.
For security, H MUST meet the following criteria:</t>
          <ul spacing="normal">
            <li>The collision resistance of H MUST be at least k bits.</li>
            <li>H MUST be an XOF that has been proved indifferentiable from a random oracle
under a reasonable cryptographic assumption.</li>
          </ul>
          <t>The SHAKE <xref target="FIPS202" format="default"/> XOF family is a typical and RECOMMENDED choice.
As an example, for 128-bit security, SHAKE128 would be an appropriate choice.</t>
          <t>The following procedure implements expand_message_xof.</t>
          <sourcecode type="pseudocode">
expand_message_xof(msg, DST, len_in_bytes)

Parameters:
- H(m, d), an extendable-output function that processes
           input message m and returns d bytes.

Input:
- msg, a byte string.
- DST, a byte string of at most 255 bytes.
  See below for information on using longer DSTs.
- len_in_bytes, the length of the requested output in bytes.

Output:
- uniform_bytes, a byte string.

Steps:
1. ABORT if len_in_bytes &gt; 65535 or len(DST) &gt; 255
2. DST_prime = DST || I2OSP(len(DST), 1)
3. msg_prime = msg || I2OSP(len_in_bytes, 2) || DST_prime
4. uniform_bytes = H(msg_prime, len_in_bytes)
5. return uniform_bytes
</sourcecode>
        </section>
        <section anchor="hashtofield-expand-dst" numbered="true" toc="default">
          <name>Using DSTs longer than 255 bytes</name>
          <t>The expand_message variants defined in this section accept domain separation
tags of at most 255 bytes.
If applications require a domain separation tag longer than 255 bytes, e.g., because
of requirements imposed by an invoking protocol, implementors MUST compute a short
domain separation tag by hashing, as follows:</t>
          <ul spacing="normal">
            <li>
              <t>For expand_message_xmd using hash function H, DST is computed as  </t>
              <sourcecode type="pseudocode">
DST = H("H2C-OVERSIZE-DST-" || a_very_long_DST)
</sourcecode>
            </li>
            <li>
              <t>For expand_message_xof using extendable-output function H, DST is computed as  </t>
              <sourcecode type="pseudocode">
DST = H("H2C-OVERSIZE-DST-" || a_very_long_DST, ceil(2 * k / 8))
</sourcecode>
            </li>
          </ul>
          <t>Here, a_very_long_DST is the DST whose length is greater than 255 bytes,
"H2C-OVERSIZE-DST-" is a 17-byte ASCII string literal, and
k is the target security level in bits.</t>
        </section>
        <section anchor="hashtofield-expand-other" numbered="true" toc="default">
          <name>Defining other expand_message variants</name>
          <t>When defining a new expand_message variant, the most important consideration
is that hash_to_field models expand_message as a random oracle.
Thus, implementors SHOULD prove indifferentiability from a random oracle
under an appropriate assumption about the underlying cryptographic primitives;
see <xref target="security-considerations-hash-to-field" format="default"/> for more information.</t>
          <t>In addition, expand_message variants:</t>
          <ul spacing="normal">
            <li>MUST give collision resistance commensurate with the security level of
the target elliptic curve.</li>
            <li>MUST be built on primitives designed for use in applications requiring
cryptographic randomness. As examples, a secure stream cipher is an appropriate
primitive, whereas a Mersenne twister pseudorandom number generator <xref target="MT98" format="default"/> is not.</li>
            <li>MUST NOT use rejection sampling.</li>
            <li>MUST give independent values for distinct (msg, DST, length) inputs.
Meeting this requirement is subtle.
As a simplified example, hashing msg || DST does not work,
because in this case distinct (msg, DST) pairs whose concatenations are equal
will return the same output (e.g., ("AB", "CDEF") and ("ABC", "DEF")).
The variants defined in this document use a suffix-free encoding of DST
to avoid this issue.</li>
            <li>MUST use the domain separation tag DST to ensure that invocations of
cryptographic primitives inside of expand_message are domain separated
from invocations outside of expand_message.
For example, if the expand_message variant uses a hash function H, an encoding
of DST MUST be added either as a prefix or a suffix of the input to each invocation
of H. Adding DST as a suffix is the RECOMMENDED approach.</li>
            <li>SHOULD read msg exactly once, for efficiency when msg is long.</li>
          </ul>
          <t>In addition, each expand_message variant MUST specify a unique EXP_TAG
that identifies that variant in a Suite ID. See <xref target="suiteIDformat" format="default"/> for more information.</t>
        </section>
      </section>
    </section>
    <section anchor="mappings" numbered="true" toc="default">
      <name>Deterministic mappings</name>
      <t>The mappings in this section are suitable for implementing either nonuniform
or uniform encodings using the constructions in <xref target="roadmap" format="default"/>.
Certain mappings restrict the form of the curve or its parameters.
For each mapping presented, this document lists the relevant restrictions.</t>
      <t>Note that mappings in this section are not interchangeable: different mappings
will almost certainly output different points when evaluated on the same input.</t>
      <section anchor="choosing-mapping" numbered="true" toc="default">
        <name>Choosing a mapping function</name>
        <t>This section gives brief guidelines on choosing a mapping function
for a given elliptic curve.
Note that the suites given in <xref target="suites" format="default"/> are recommended mappings
for the respective curves.</t>
        <t>If the target elliptic curve is a Montgomery curve (<xref target="montgomery" format="default"/>),
the Elligator 2 method (<xref target="elligator2" format="default"/>) is recommended.
Similarly, if the target elliptic curve is a twisted Edwards curve (<xref target="twisted-edwards" format="default"/>),
the twisted Edwards Elligator 2 method (<xref target="ell2edwards" format="default"/>) is recommended.</t>
        <t>The remaining cases are Weierstrass curves.
For curves supported by the Simplified SWU method (<xref target="simple-swu" format="default"/>),
that mapping is the recommended one.
Otherwise, the Simplified SWU method for AB == 0 (<xref target="simple-swu-AB0" format="default"/>)
is recommended if the goal is best performance, while
the Shallue-van de Woestijne method (<xref target="svdw" format="default"/>) is recommended
if the goal is simplicity of implementation.
(The reason for this distinction is that the Simplified SWU method for AB == 0
requires implementing an isogeny map in addition to the mapping function, while
the Shallue-van de Woestijne method does not.)</t>
        <t>The Shallue-van de Woestijne method (<xref target="svdw" format="default"/>) works with any curve,
and may be used in cases where a generic mapping is required.
Note, however, that this mapping is almost always more computationally
expensive than the curve-specific recommendations above.</t>
      </section>
      <section anchor="interface" numbered="true" toc="default">
        <name>Interface</name>
        <t>The generic interface shared by all mappings in this section is as follows:</t>
        <sourcecode type="pseudocode">
    (x, y) = map_to_curve(u)
</sourcecode>
        <t>The input u and outputs x and y are elements of the field F.
The affine coordinates (x, y) specify a point on an elliptic curve defined
over F. Note, however, that the point (x, y) is not a uniformly random point.</t>
      </section>
      <section anchor="notation" numbered="true" toc="default">
        <name>Notation</name>
        <t>As a rough guide, the following conventions are used in pseudocode:</t>
        <ul spacing="normal">
          <li>All arithmetic operations are performed over a field F, unless
explicitly stated otherwise.</li>
          <li>u: the input to the mapping function.
This is an element of F produced by the hash_to_field function.</li>
          <li>(x, y), (s, t), (v, w): the affine coordinates of the point output by the mapping.
Indexed variables (e.g., x1, y2, ...) are used for candidate values.</li>
          <li>tv1, tv2, ...: reusable temporary variables.</li>
          <li>c1, c2, ...: constant values, which can be computed in advance.</li>
        </ul>
      </section>
      <section anchor="point-sign" numbered="true" toc="default">
        <name>Sign of the resulting point</name>
        <t>In general, elliptic curves have equations of the form y^2 = g(x).
The mappings in this section first identify an x such that
g(x) is square, then take a square root to find y. Since there
are two square roots when g(x) != 0, this may result in an ambiguity
regarding the sign of y.</t>
        <t>When necessary, the mappings in this section resolve this ambiguity by
specifying the sign of the y-coordinate in terms of the input to the mapping
function.
Two main reasons support this approach: first, this covers elliptic curves
over any field in a uniform way, and second, it gives implementors leeway
in optimizing square-root implementations.</t>
      </section>
      <section anchor="map-exceptions" numbered="true" toc="default">
        <name>Exceptional cases</name>
        <t>Mappings may have exceptional cases, i.e., inputs u
on which the mapping is undefined. These cases must be handled
carefully, especially for constant-time implementations.</t>
        <t>For each mapping in this section, we discuss the exceptional cases and show
how to handle them in constant time. Note that all implementations SHOULD use
inv0 (<xref target="utility" format="default"/>) to compute multiplicative inverses, to avoid exceptional
cases that result from attempting to compute the inverse of 0.</t>
      </section>
      <section anchor="weierstrass" numbered="true" toc="default">
        <name>Mappings for Weierstrass curves</name>
        <t>The mappings in this section apply to a target curve E defined by the equation</t>
        <sourcecode type="pseudocode">
    y^2 = g(x) = x^3 + A * x + B
</sourcecode>
        <t>where 4 * A^3 + 27 * B^2 != 0.</t>
        <section anchor="svdw" numbered="true" toc="default">
          <name>Shallue-van de Woestijne method</name>
          <t>Shallue and van de Woestijne <xref target="SW06" format="default"/> describe a mapping that applies to
essentially any elliptic curve.
(Note, however, that this mapping is more expensive to evaluate than
the other mappings in this document.)</t>
          <t>The parameterization given below is for Weierstrass curves;
its derivation is detailed in <xref target="W19" format="default"/>.
This parameterization also works for Montgomery (<xref target="montgomery" format="default"/>) and
twisted Edwards (<xref target="twisted-edwards" format="default"/>) curves via the rational maps
given in <xref target="appx-rational-map" format="default"/>:
first evaluate the Shallue-van de Woestijne mapping to an equivalent Weierstrass
curve, then map that point to the target Montgomery or twisted Edwards curve
using the corresponding rational map.</t>
          <t>Preconditions: A Weierstrass curve y^2 = x^3 + A * x + B.</t>
          <t>Constants:</t>
          <ul spacing="normal">
            <li>A and B, the parameter of the Weierstrass curve.</li>
            <li>
              <t>Z, a non-zero element of F meeting the below criteria.
<xref target="svdw-z-code" format="default"/> gives a Sage <xref target="SAGE" format="default"/> script that outputs the RECOMMENDED Z.  </t>
              <ol spacing="normal" type="1">
                <li>g(Z) != 0 in F.</li>
                <li>-(3 * Z^2 + 4 * A) / (4 * g(Z)) != 0 in F.</li>
                <li>-(3 * Z^2 + 4 * A) / (4 * g(Z)) is square in F.</li>
                <li>At least one of g(Z) and g(-Z / 2) is square in F.</li>
              </ol>
            </li>
          </ul>
          <t>Sign of y: Inputs u and -u give the same x-coordinate for many values of u.
Thus, we set sgn0(y) == sgn0(u).</t>
          <t>Exceptions: The exceptional cases for u occur when
(1 + u^2 * g(Z)) * (1 - u^2 * g(Z)) == 0.
The restrictions on Z given above ensure that implementations that use inv0
to invert this product are exception free.</t>
          <t>Operations:</t>
          <sourcecode type="pseudocode">
1. tv1 = u^2 * g(Z)
2. tv2 = 1 + tv1
3. tv1 = 1 - tv1
4. tv3 = inv0(tv1 * tv2)
5. tv4 = sqrt(-g(Z) * (3 * Z^2 + 4 * A))    # can be precomputed
6. If sgn0(tv4) == 1, set tv4 = -tv4        # sgn0(tv4) MUST equal 0
7. tv5 = u * tv1 * tv3 * tv4
8. tv6 = -4 * g(Z) / (3 * Z^2 + 4 * A)      # can be precomputed
9.  x1 = -Z / 2 - tv5
10. x2 = -Z / 2 + tv5
11. x3 = Z + tv6 * (tv2^2 * tv3)^2
12. If is_square(g(x1)), set x = x1 and y = sqrt(g(x1))
13. Else If is_square(g(x2)), set x = x2 and y = sqrt(g(x2))
14. Else set x = x3 and y = sqrt(g(x3))
15. If sgn0(u) != sgn0(y), set y = -y
16. return (x, y)
</sourcecode>
          <t><xref target="straightline-svdw" format="default"/> gives an example straight-line implementation of this
mapping.</t>
        </section>
        <section anchor="simple-swu" numbered="true" toc="default">
          <name>Simplified Shallue-van de Woestijne-Ulas method</name>
          <t>The function map_to_curve_simple_swu(u) implements a simplification
of the Shallue-van de Woestijne-Ulas mapping <xref target="U07" format="default"/> described by Brier et
al. <xref target="BCIMRT10" format="default"/>, which they call the "simplified SWU" map. Wahby and Boneh
<xref target="WB19" format="default"/> generalize and optimize this mapping.</t>
          <t>Preconditions: A Weierstrass curve y^2 = x^3 + A * x + B where A != 0 and B != 0.</t>
          <t>Constants:</t>
          <ul spacing="normal">
            <li>A and B, the parameters of the Weierstrass curve.</li>
            <li>
              <t>Z, an element of F meeting the below criteria.
<xref target="sswu-z-code" format="default"/> gives a Sage <xref target="SAGE" format="default"/> script that outputs the RECOMMENDED Z.
The criteria are:  </t>
              <ol spacing="normal" type="1">
                <li>Z is non-square in F,</li>
                <li>Z != -1 in F,</li>
                <li>the polynomial g(x) - Z is irreducible over F, and</li>
                <li>g(B / (Z * A)) is square in F.</li>
              </ol>
            </li>
          </ul>
          <t>Sign of y: Inputs u and -u give the same x-coordinate.
Thus, we set sgn0(y) == sgn0(u).</t>
          <t>Exceptions: The exceptional cases are values of u such that
Z^2 * u^4 + Z * u^2 == 0. This includes u == 0, and may include
other values depending on Z. Implementations must detect
this case and set x1 = B / (Z * A), which guarantees that g(x1)
is square by the condition on Z given above.</t>
          <t>Operations:</t>
          <sourcecode type="pseudocode">
1. tv1 = inv0(Z^2 * u^4 + Z * u^2)
2.  x1 = (-B / A) * (1 + tv1)
3.  If tv1 == 0, set x1 = B / (Z * A)
4. gx1 = x1^3 + A * x1 + B
5.  x2 = Z * u^2 * x1
6. gx2 = x2^3 + A * x2 + B
7.  If is_square(gx1), set x = x1 and y = sqrt(gx1)
8.  Else set x = x2 and y = sqrt(gx2)
9.  If sgn0(u) != sgn0(y), set y = -y
10. return (x, y)
</sourcecode>
          <t><xref target="straightline-sswu" format="default"/> gives a general and optimized straight-line implementation of
this mapping. For more information on optimizing this mapping, see <xref target="WB19" format="default"/> Section
4 or the example code found at <xref target="hash2curve-repo" format="default"/>.</t>
        </section>
        <section anchor="simple-swu-AB0" numbered="true" toc="default">
          <name>Simplified SWU for AB == 0</name>
          <t>Wahby and Boneh <xref target="WB19" format="default"/> show how to adapt the simplified SWU mapping to
Weierstrass curves having A == 0 or B == 0, which the mapping of
<xref target="simple-swu" format="default"/> does not support.
(The case A == B == 0 is excluded because y^2 = x^3 is not an elliptic curve.)</t>
          <t>This method applies to curves like secp256k1 <xref target="SEC2" format="default"/> and to pairing-friendly
curves in the Barreto-Lynn-Scott <xref target="BLS03" format="default"/>, Barreto-Naehrig <xref target="BN05" format="default"/>, and other families.</t>
          <t>This method requires finding another elliptic curve E' given by the equation</t>
          <sourcecode type="pseudocode">
    y'^2 = g'(x') = x'^3 + A' * x' + B'
</sourcecode>
          <t>that is isogenous to E and has A' != 0 and B' != 0.
(See <xref target="WB19" format="default"/>, Appendix A, for one way of finding E' using <xref target="SAGE" format="default"/>.)
This isogeny defines a map iso_map(x', y') given by a pair of rational functions.
iso_map takes as input a point on E' and produces as output a point on E.</t>
          <t>Once E' and iso_map are identified, this mapping works as follows: on input
u, first apply the simplified SWU mapping to get a point on E', then apply
the isogeny map to that point to get a point on E.</t>
          <t>Note that iso_map is a group homomorphism, meaning that point addition
commutes with iso_map.
Thus, when using this mapping in the hash_to_curve construction of <xref target="roadmap" format="default"/>,
one can effect a small optimization by first mapping u0 and u1 to E', adding
the resulting points on E', and then applying iso_map to the sum.
This gives the same result while requiring only one evaluation of iso_map.</t>
          <t>Preconditions: An elliptic curve E' with A' != 0 and B' != 0 that is
isogenous to the target curve E with isogeny map iso_map from
E' to E.</t>
          <t>Helper functions:</t>
          <ul spacing="normal">
            <li>map_to_curve_simple_swu is the mapping of <xref target="simple-swu" format="default"/> to E'</li>
            <li>iso_map is the isogeny map from E' to E</li>
          </ul>
          <t>Sign of y: for this map, the sign is determined by map_to_curve_simple_swu.
No further sign adjustments are necessary.</t>
          <t>Exceptions: map_to_curve_simple_swu handles its exceptional cases.
Exceptional cases of iso_map are inputs that cause the denominator of
either rational function to evaluate to zero; such cases MUST return the
identity point on E.</t>
          <t>Operations:</t>
          <sourcecode type="pseudocode">
1. (x', y') = map_to_curve_simple_swu(u)    # (x', y') is on E'
2.   (x, y) = iso_map(x', y')               # (x, y) is on E
3. return (x, y)
</sourcecode>
          <t>See <xref target="hash2curve-repo" format="default"/> or <xref target="WB19" format="default"/> Section 4.3 for details on implementing the isogeny map.</t>
        </section>
      </section>
      <section anchor="montgomery" numbered="true" toc="default">
        <name>Mappings for Montgomery curves</name>
        <t>The mapping defined in this section applies to a target curve M defined by the equation</t>
        <sourcecode type="pseudocode">
    K * t^2 = s^3 + J * s^2 + s
</sourcecode>
        <section anchor="elligator2" numbered="true" toc="default">
          <name>Elligator 2 method</name>
          <t>Bernstein, Hamburg, Krasnova, and Lange give a mapping that applies to any
curve with a point of order 2 <xref target="BHKL13" format="default"/>, which they call Elligator 2.</t>
          <t>Preconditions: A Montgomery curve K * t^2 = s^3 + J * s^2 + s where
J != 0, K != 0, and (J^2 - 4) / K^2 is non-zero and non-square in F.</t>
          <t>Constants:</t>
          <ul spacing="normal">
            <li>J and K, the parameters of the elliptic curve.</li>
            <li>Z, a non-square element of F.
<xref target="elligator-z-code" format="default"/> gives a Sage <xref target="SAGE" format="default"/> script that outputs the RECOMMENDED Z.</li>
          </ul>
          <t>Sign of t: this mapping fixes the sign of t as specified in <xref target="BHKL13" format="default"/>.
No additional adjustment is required.</t>
          <t>Exceptions: The exceptional case is Z * u^2 == -1, i.e., 1 + Z * u^2 == 0.
Implementations must detect this case and set x1 = -(J / K).
Note that this can only happen when q = 3 (mod 4).</t>
          <t>Operations:</t>
          <sourcecode type="pseudocode">
1.  x1 = -(J / K) * inv0(1 + Z * u^2)
2.  If x1 == 0, set x1 = -(J / K)
3. gx1 = x1^3 + (J / K) * x1^2 + x1 / K^2
4.  x2 = -x1 - (J / K)
5. gx2 = x2^3 + (J / K) * x2^2 + x2 / K^2
6.  If is_square(gx1), set x = x1, y = sqrt(gx1) with sgn0(y) == 1.
7.  Else set x = x2, y = sqrt(gx2) with sgn0(y) == 0.
8.   s = x * K
9.   t = y * K
10. return (s, t)
</sourcecode>
          <t><xref target="straightline-ell2" format="default"/> gives an example straight-line implementation of this
mapping.
<xref target="ell2-opt" format="default"/> gives optimized straight-line procedures that apply to specific
classes of curves and base fields.</t>
        </section>
      </section>
      <section anchor="twisted-edwards" numbered="true" toc="default">
        <name>Mappings for twisted Edwards curves</name>
        <t>Twisted Edwards curves (a class of curves that includes Edwards curves)
are given by the equation</t>
        <sourcecode type="pseudocode">
    a * v^2 + w^2 = 1 + d * v^2 * w^2
</sourcecode>
        <t>with a != 0, d != 0, and a != d <xref target="BBJLP08" format="default"/>.</t>
        <t>These curves are closely related to Montgomery
curves (<xref target="montgomery" format="default"/>): every twisted Edwards curve is birationally equivalent
to a Montgomery curve (<xref target="BBJLP08" format="default"/>, Theorem 3.2).
This equivalence yields an efficient way of hashing to a twisted Edwards curve:
first, hash to an equivalent Montgomery curve, then transform the
result into a point on the twisted Edwards curve via a rational map.
This method of hashing to a twisted Edwards curve thus requires identifying a
corresponding Montgomery curve and rational map.
We describe how to identify such a curve and map immediately below.</t>
        <section anchor="rational-map" numbered="true" toc="default">
          <name>Rational maps from Montgomery to twisted Edwards curves</name>
          <t>There are two ways to select a Montgomery curve and rational map
for use when hashing to a given twisted Edwards curve.
The selected Montgomery curve and rational map MUST be specified as part of
the hash-to-curve suite for a given twisted Edwards curve; see <xref target="suites" format="default"/>.</t>
          <ol spacing="normal" type="1">
            <li>
              <t>When hashing to a standardized twisted Edwards curve for which a corresponding
Montgomery form and rational map are also standardized, the standard
Montgomery form and rational map SHOULD be used to ensure compatibility
with existing software.  </t>
              <t>
In certain cases, e.g., edwards25519 <xref target="RFC7748" format="default"/>, the sign of the rational
 map from the twisted Edwards curve to its corresponding Montgomery curve
 is not given explicitly.
 In this case, the sign MUST be fixed such that applying the rational map
 to the twisted Edwards curve's base point yields the Montgomery curve's
 base point with correct sign.
 (For edwards25519, see <xref target="RFC7748" format="default"/> and <xref target="EID4730" format="default"/>.)  </t>
              <t>
When defining new twisted Edwards curves, a Montgomery equivalent and rational
 map SHOULD also be specified, and the sign of the rational map SHOULD be stated
 explicitly.</t>
            </li>
            <li>When hashing to a twisted Edwards curve that does not have a standardized
Montgomery form or rational map, the map given in <xref target="appx-rational-map" format="default"/>
SHOULD be used.</li>
          </ol>
        </section>
        <section anchor="ell2edwards" numbered="true" toc="default">
          <name>Elligator 2 method</name>
          <t>Preconditions: A twisted Edwards curve E and an equivalent Montgomery
curve M meeting the requirements in <xref target="rational-map" format="default"/>.</t>
          <t>Helper functions:</t>
          <ul spacing="normal">
            <li>map_to_curve_elligator2 is the mapping of <xref target="elligator2" format="default"/> to the curve M.</li>
            <li>rational_map is a function that takes a point (s, t) on M and
returns a point (v, w) on E, as defined in <xref target="rational-map" format="default"/>.</li>
          </ul>
          <t>Sign of t (and v): for this map, the sign is determined by map_to_curve_elligator2.
No further sign adjustments are required.</t>
          <t>Exceptions: The exceptions for the Elligator 2 mapping are as given in
<xref target="elligator2" format="default"/>.
The exceptions for the rational map are as given in <xref target="rational-map" format="default"/>.
No other exceptions are possible.</t>
          <t>The following procedure implements the Elligator 2 mapping for a twisted
Edwards curve.
(Note that the output point is denoted (v, w) because it is a point on
the target twisted Edwards curve.)</t>
          <sourcecode type="pseudocode">
map_to_curve_elligator2_edwards(u)

Input: u, an element of F.
Output: (v, w), a point on E.

1. (s, t) = map_to_curve_elligator2(u)      # (s, t) is on M
2. (v, w) = rational_map(s, t)              # (v, w) is on E
3. return (v, w)
</sourcecode>
        </section>
      </section>
    </section>
    <section anchor="cofactor-clearing" numbered="true" toc="default">
      <name>Clearing the cofactor</name>
      <t>The mappings of <xref target="mappings" format="default"/> always output a point on the elliptic curve,
i.e., a point in a group of order h * r (<xref target="bg-curves" format="default"/>). Obtaining a point in G
may require a final operation commonly called "clearing the cofactor," which
takes as input any point on the curve and produces as output a point in the
prime-order (sub)group G (<xref target="bg-curves" format="default"/>).</t>
      <t>The cofactor can always be cleared via scalar multiplication by h.
For elliptic curves where h = 1, i.e., the curves with a prime number of points,
no operation is required. This applies, for example, to the NIST curves P-256,
P-384, and P-521 <xref target="FIPS186-4" format="default"/>.</t>
      <t>In some cases, it is possible to clear the cofactor via a faster method than
scalar multiplication by h.
These methods are equivalent to (but usually faster than) multiplication by
some scalar h_eff whose value is determined by the method and the curve.
Examples of fast cofactor clearing methods include the following:</t>
      <ul spacing="normal">
        <li>For certain pairing-friendly curves having subgroup G2 over an extension
field, Scott et al. <xref target="SBCDK09" format="default"/> describe a method for fast cofactor clearing
that exploits an efficiently-computable endomorphism. Fuentes-Castaneda
et al. <xref target="FKR11" format="default"/> propose an alternative method that is sometimes more efficient.
Budroni and Pintore <xref target="BP17" format="default"/> give concrete instantiations of these methods
for Barreto-Lynn-Scott pairing-friendly curves <xref target="BLS03" format="default"/>.
This method is described for the specific case of BLS12-381 in
<xref target="clear-cofactor-bls12381-g2" format="default"/>.</li>
        <li>Wahby and Boneh (<xref target="WB19" format="default"/>, Section 5) describe a trick due to Scott for
fast cofactor clearing on any elliptic curve for which the prime
factorization of h and the structure of the elliptic curve group meet
certain conditions.</li>
      </ul>
      <t>The clear_cofactor function is parameterized by a scalar h_eff.
Specifically,</t>
      <sourcecode type="pseudocode">
    clear_cofactor(P) := h_eff * P
</sourcecode>
      <t>where * represents scalar multiplication.
When a curve does not support a fast cofactor clearing method, h_eff = h
and the cofactor MUST be cleared via scalar multiplication.</t>
      <t>When a curve admits a fast cofactor clearing method, clear_cofactor
MAY be evaluated either via that method or via scalar multiplication
by the equivalent h_eff; these two methods give the same result.
Note that in this case scalar multiplication by the cofactor h does not
generally give the same result as the fast method, and SHOULD NOT be used.</t>
    </section>
    <section anchor="suites" numbered="true" toc="default">
      <name>Suites for hashing</name>
      <t>This section lists recommended suites for hashing to standard elliptic curves.</t>
      <t>A hash-to-curve suite fully specifies the procedure for hashing byte strings
to points on a specific elliptic curve group.
<xref target="suites-howto" format="default"/> describes how to implement a suite.
Applications that require hashing to an elliptic curve should use either
an existing suite or a new suite specified as described in <xref target="new-suite" format="default"/>.</t>
      <t>All applications using a hash-to-curve suite MUST choose a domain
separation tag (DST) in accordance with the guidelines in <xref target="domain-separation" format="default"/>.
In addition, applications whose security requires a random oracle that returns
uniformly random points on the target curve MUST use a suite whose encoding type
is hash_to_curve; see <xref target="roadmap" format="default"/> and immediately below for more information.</t>
      <t>A hash-to-curve suite comprises the following parameters:</t>
      <ul spacing="normal">
        <li>Suite ID, a short name used to refer to a given suite.
<xref target="suiteIDformat" format="default"/> discusses the naming conventions for suite IDs.</li>
        <li>encoding type, either uniform (hash_to_curve) or nonuniform (encode_to_curve).
See <xref target="roadmap" format="default"/> for definitions of these encoding types.</li>
        <li>E, the target elliptic curve over a field F.</li>
        <li>p, the characteristic of the field F.</li>
        <li>m, the extension degree of the field F. If m &gt; 1, the suite MUST also specify
the polynomial basis used to represent extension field elements.</li>
        <li>k, the target security level of the suite in bits.
(See <xref target="security-considerations-targets" format="default"/> for discussion.)</li>
        <li>L, the length parameter for hash_to_field (<xref target="hashtofield-sec" format="default"/>).</li>
        <li>expand_message, one of the variants specified in <xref target="hashtofield-expand" format="default"/>
plus any parameters required for the specified variant (for example, H,
the underlying hash function).</li>
        <li>f, a mapping function from <xref target="mappings" format="default"/>.</li>
        <li>h_eff, the scalar parameter for clear_cofactor (<xref target="cofactor-clearing" format="default"/>).</li>
      </ul>
      <t>In addition to the above parameters, the mapping f may require
additional parameters Z, M, rational_map, E', or iso_map.
When applicable, these MUST be specified.</t>
      <t>The below table lists suites RECOMMENDED for some elliptic curves.
The corresponding parameters are given in the following subsections.
Applications instantiating cryptographic protocols whose security analysis
relies on a random oracle that outputs points with a uniform distribution MUST NOT use a
nonuniform encoding.
Moreover, applications that use a nonuniform encoding SHOULD carefully
analyze the security implications of nonuniformity.
When the required encoding is not clear, applications SHOULD use a
uniform encoding for security.</t>
      <table anchor="suite-table" align="center">
        <name>Suites for hashing to elliptic curves.</name>
        <thead>
          <tr>
            <th align="left">E</th>
            <th align="left">Suites</th>
            <th align="left">Section</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">NIST P-256</td>
            <td align="left">P256_XMD:SHA-256_SSWU_RO_ P256_XMD:SHA-256_SSWU_NU_</td>
            <td align="left">
              <xref target="suites-p256" format="default"/></td>
          </tr>
          <tr>
            <td align="left">NIST P-384</td>
            <td align="left">P384_XMD:SHA-384_SSWU_RO_ P384_XMD:SHA-384_SSWU_NU_</td>
            <td align="left">
              <xref target="suites-p384" format="default"/></td>
          </tr>
          <tr>
            <td align="left">NIST P-521</td>
            <td align="left">P521_XMD:SHA-512_SSWU_RO_ P521_XMD:SHA-512_SSWU_NU_</td>
            <td align="left">
              <xref target="suites-p521" format="default"/></td>
          </tr>
          <tr>
            <td align="left">curve25519</td>
            <td align="left">curve25519_XMD:SHA-512_ELL2_RO_ curve25519_XMD:SHA-512_ELL2_NU_</td>
            <td align="left">
              <xref target="suites-25519" format="default"/></td>
          </tr>
          <tr>
            <td align="left">edwards25519</td>
            <td align="left">edwards25519_XMD:SHA-512_ELL2_RO_ edwards25519_XMD:SHA-512_ELL2_NU_</td>
            <td align="left">
              <xref target="suites-25519" format="default"/></td>
          </tr>
          <tr>
            <td align="left">curve448</td>
            <td align="left">curve448_XOF:SHAKE256_ELL2_RO_ curve448_XOF:SHAKE256_ELL2_NU_</td>
            <td align="left">
              <xref target="suites-448" format="default"/></td>
          </tr>
          <tr>
            <td align="left">edwards448</td>
            <td align="left">edwards448_XOF:SHAKE256_ELL2_RO_ edwards448_XOF:SHAKE256_ELL2_NU_</td>
            <td align="left">
              <xref target="suites-448" format="default"/></td>
          </tr>
          <tr>
            <td align="left">secp256k1</td>
            <td align="left">secp256k1_XMD:SHA-256_SSWU_RO_ secp256k1_XMD:SHA-256_SSWU_NU_</td>
            <td align="left">
              <xref target="suites-secp256k1" format="default"/></td>
          </tr>
          <tr>
            <td align="left">BLS12-381 G1</td>
            <td align="left">BLS12381G1_XMD:SHA-256_SSWU_RO_ BLS12381G1_XMD:SHA-256_SSWU_NU_</td>
            <td align="left">
              <xref target="suites-bls12381" format="default"/></td>
          </tr>
          <tr>
            <td align="left">BLS12-381 G2</td>
            <td align="left">BLS12381G2_XMD:SHA-256_SSWU_RO_ BLS12381G2_XMD:SHA-256_SSWU_NU_</td>
            <td align="left">
              <xref target="suites-bls12381" format="default"/></td>
          </tr>
        </tbody>
      </table>
      <section anchor="suites-howto" numbered="true" toc="default">
        <name>Implementing a hash-to-curve suite</name>
        <t>A hash-to-curve suite requires the following functions.
Note that some of these require utility functions from <xref target="utility" format="default"/>.</t>
        <ol spacing="normal" type="1">
          <li>Base field arithmetic operations for the target elliptic curve, e.g.,
addition, multiplication, and square root.</li>
          <li>Elliptic curve point operations for the target curve, e.g.,
point addition and scalar multiplication.</li>
          <li>The hash_to_field function; see <xref target="hashtofield" format="default"/>. This includes the expand_message
variant (<xref target="hashtofield-expand" format="default"/>) and any constituent hash function or XOF.</li>
          <li>The suite-specified mapping function; see the corresponding subsection of <xref target="mappings" format="default"/>.</li>
          <li>A cofactor clearing function; see <xref target="cofactor-clearing" format="default"/>. This may be implemented as
scalar multiplication by h_eff or as a faster equivalent method.</li>
          <li>The desired encoding function; see <xref target="roadmap" format="default"/>. This is either hash_to_curve or
encode_to_curve.</li>
        </ol>
      </section>
      <section anchor="suites-p256" numbered="true" toc="default">
        <name>Suites for NIST P-256</name>
        <t>This section defines ciphersuites for the NIST P-256 elliptic curve <xref target="FIPS186-4" format="default"/>.</t>
        <t>P256_XMD:SHA-256_SSWU_RO_ is defined as follows:</t>
        <ul spacing="normal">
          <li>encoding type: hash_to_curve (<xref target="roadmap" format="default"/>)</li>
          <li>
            <t>E: y^2 = x^3 + A * x + B, where
            </t>
            <ul spacing="normal">
              <li>A = -3</li>
              <li>B = 0x5ac635d8aa3a93e7b3ebbd55769886bc651d06b0cc53b0f63bce3c3e27d2604b</li>
            </ul>
          </li>
          <li>p: 2^256 - 2^224 + 2^192 + 2^96 - 1</li>
          <li>m: 1</li>
          <li>k: 128</li>
          <li>expand_message: expand_message_xmd (<xref target="hashtofield-expand-xmd" format="default"/>)</li>
          <li>H: SHA-256</li>
          <li>L: 48</li>
          <li>f: Simplified SWU method (<xref target="simple-swu" format="default"/>)</li>
          <li>Z: -10</li>
          <li>h_eff: 1</li>
        </ul>
        <t>P256_XMD:SHA-256_SSWU_NU_ is identical to P256_XMD:SHA-256_SSWU_RO_,
except that the encoding type is encode_to_curve (<xref target="roadmap" format="default"/>).</t>
        <t>An optimized example implementation of the Simplified SWU mapping
to P-256 is given in <xref target="straightline-sswu" format="default"/>.</t>
      </section>
      <section anchor="suites-p384" numbered="true" toc="default">
        <name>Suites for NIST P-384</name>
        <t>This section defines ciphersuites for the NIST P-384 elliptic curve <xref target="FIPS186-4" format="default"/>.</t>
        <t>P384_XMD:SHA-384_SSWU_RO_ is defined as follows:</t>
        <ul spacing="normal">
          <li>encoding type: hash_to_curve (<xref target="roadmap" format="default"/>)</li>
          <li>
            <t>E: y^2 = x^3 + A * x + B, where
            </t>
            <ul spacing="normal">
              <li>A = -3</li>
              <li>B = 0xb3312fa7e23ee7e4988e056be3f82d19181d9c6efe8141120314088f5013875ac656398d8a2ed19d2a85c8edd3ec2aef</li>
            </ul>
          </li>
          <li>p: 2^384 - 2^128 - 2^96 + 2^32 - 1</li>
          <li>m: 1</li>
          <li>k: 192</li>
          <li>expand_message: expand_message_xmd (<xref target="hashtofield-expand-xmd" format="default"/>)</li>
          <li>H: SHA-384</li>
          <li>L: 72</li>
          <li>f: Simplified SWU method (<xref target="simple-swu" format="default"/>)</li>
          <li>Z: -12</li>
          <li>h_eff: 1</li>
        </ul>
        <t>P384_XMD:SHA-384_SSWU_NU_ is identical to P384_XMD:SHA-384_SSWU_RO_,
except that the encoding type is encode_to_curve (<xref target="roadmap" format="default"/>).</t>
        <t>An optimized example implementation of the Simplified SWU mapping
to P-384 is given in <xref target="straightline-sswu" format="default"/>.</t>
      </section>
      <section anchor="suites-p521" numbered="true" toc="default">
        <name>Suites for NIST P-521</name>
        <t>This section defines ciphersuites for the NIST P-521 elliptic curve <xref target="FIPS186-4" format="default"/>.</t>
        <t>P521_XMD:SHA-512_SSWU_RO_ is defined as follows:</t>
        <ul spacing="normal">
          <li>encoding type: hash_to_curve (<xref target="roadmap" format="default"/>)</li>
          <li>
            <t>E: y^2 = x^3 + A * x + B, where
            </t>
            <ul spacing="normal">
              <li>A = -3</li>
              <li>B = 0x51953eb9618e1c9a1f929a21a0b68540eea2da725b99b315f3b8b489918ef109e156193951ec7e937b1652c0bd3bb1bf073573df883d2c34f1ef451fd46b503f00</li>
            </ul>
          </li>
          <li>p: 2^521 - 1</li>
          <li>m: 1</li>
          <li>k: 256</li>
          <li>expand_message: expand_message_xmd (<xref target="hashtofield-expand-xmd" format="default"/>)</li>
          <li>H: SHA-512</li>
          <li>L: 98</li>
          <li>f: Simplified SWU method (<xref target="simple-swu" format="default"/>)</li>
          <li>Z: -4</li>
          <li>h_eff: 1</li>
        </ul>
        <t>P521_XMD:SHA-512_SSWU_NU_ is identical to P521_XMD:SHA-512_SSWU_RO_,
except that the encoding type is encode_to_curve (<xref target="roadmap" format="default"/>).</t>
        <t>An optimized example implementation of the Simplified SWU mapping
to P-521 is given in <xref target="straightline-sswu" format="default"/>.</t>
      </section>
      <section anchor="suites-25519" numbered="true" toc="default">
        <name>Suites for curve25519 and edwards25519</name>
        <t>This section defines ciphersuites for curve25519 and edwards25519 <xref target="RFC7748" format="default"/>.
Note that these ciphersuites SHOULD NOT be used when hashing to ristretto255
<xref target="I-D.irtf-cfrg-ristretto255-decaf448" format="default"/>.
See <xref target="appx-ristretto255" format="default"/> for information on how to hash to that group.</t>
        <t>curve25519_XMD:SHA-512_ELL2_RO_ is defined as follows:</t>
        <ul spacing="normal">
          <li>encoding type: hash_to_curve (<xref target="roadmap" format="default"/>)</li>
          <li>
            <t>E: K * t^2 = s^3 + J * s^2 + s, where
            </t>
            <ul spacing="normal">
              <li>J = 486662</li>
              <li>K = 1</li>
            </ul>
          </li>
          <li>p: 2^255 - 19</li>
          <li>m: 1</li>
          <li>k: 128</li>
          <li>expand_message: expand_message_xmd (<xref target="hashtofield-expand-xmd" format="default"/>)</li>
          <li>H: SHA-512</li>
          <li>L: 48</li>
          <li>f: Elligator 2 method (<xref target="elligator2" format="default"/>)</li>
          <li>Z: 2</li>
          <li>h_eff: 8</li>
        </ul>
        <t>edwards25519_XMD:SHA-512_ELL2_RO_ is identical to curve25519_XMD:SHA-512_ELL2_RO_,
except for the following parameters:</t>
        <ul spacing="normal">
          <li>
            <t>E: a * v^2 + w^2 = 1 + d * v^2 * w^2, where
            </t>
            <ul spacing="normal">
              <li>a = -1</li>
              <li>d = 0x52036cee2b6ffe738cc740797779e89800700a4d4141d8ab75eb4dca135978a3</li>
            </ul>
          </li>
          <li>f: Twisted Edwards Elligator 2 method (<xref target="ell2edwards" format="default"/>)</li>
          <li>M: curve25519 defined in <xref target="RFC7748" format="default"/>, Section 4.1</li>
          <li>rational_map: the birational map defined in <xref target="RFC7748" format="default"/>, Section 4.1</li>
        </ul>
        <t>curve25519_XMD:SHA-512_ELL2_NU_ is identical to curve25519_XMD:SHA-512_ELL2_RO_,
except that the encoding type is encode_to_curve (<xref target="roadmap" format="default"/>).</t>
        <t>edwards25519_XMD:SHA-512_ELL2_NU_ is identical to edwards25519_XMD:SHA-512_ELL2_RO_,
except that the encoding type is encode_to_curve (<xref target="roadmap" format="default"/>).</t>
        <t>Optimized example implementations of the above mappings are given in
<xref target="map-to-curve25519" format="default"/> and <xref target="map-to-edwards25519" format="default"/>.</t>
      </section>
      <section anchor="suites-448" numbered="true" toc="default">
        <name>Suites for curve448 and edwards448</name>
        <t>This section defines ciphersuites for curve448 and edwards448 <xref target="RFC7748" format="default"/>.
Note that these ciphersuites SHOULD NOT be used when hashing to decaf448
<xref target="I-D.irtf-cfrg-ristretto255-decaf448" format="default"/>.
See <xref target="appx-decaf448" format="default"/> for information on how to hash to that group.</t>
        <t>curve448_XOF:SHAKE256_ELL2_RO_ is defined as follows:</t>
        <ul spacing="normal">
          <li>encoding type: hash_to_curve (<xref target="roadmap" format="default"/>)</li>
          <li>
            <t>E: K * t^2 = s^3 + J * s^2 + s, where
            </t>
            <ul spacing="normal">
              <li>J = 156326</li>
              <li>K = 1</li>
            </ul>
          </li>
          <li>p: 2^448 - 2^224 - 1</li>
          <li>m: 1</li>
          <li>k: 224</li>
          <li>expand_message: expand_message_xof (<xref target="hashtofield-expand-xof" format="default"/>)</li>
          <li>H: SHAKE256</li>
          <li>L: 84</li>
          <li>f: Elligator 2 method (<xref target="elligator2" format="default"/>)</li>
          <li>Z: -1</li>
          <li>h_eff: 4</li>
        </ul>
        <t>edwards448_XOF:SHAKE256_ELL2_RO_ is identical to curve448_XOF:SHAKE256_ELL2_RO_,
except for the following parameters:</t>
        <ul spacing="normal">
          <li>
            <t>E: a * v^2 + w^2 = 1 + d * v^2 * w^2, where
            </t>
            <ul spacing="normal">
              <li>a = 1</li>
              <li>d = -39081</li>
            </ul>
          </li>
          <li>f: Twisted Edwards Elligator 2 method (<xref target="ell2edwards" format="default"/>)</li>
          <li>M: curve448, defined in <xref target="RFC7748" format="default"/>, Section 4.2</li>
          <li>rational_map: the 4-isogeny map defined in <xref target="RFC7748" format="default"/>, Section 4.2</li>
        </ul>
        <t>curve448_XOF:SHAKE256_ELL2_NU_ is identical to curve448_XOF:SHAKE256_ELL2_RO_,
except that the encoding type is encode_to_curve (<xref target="roadmap" format="default"/>).</t>
        <t>edwards448_XOF:SHAKE256_ELL2_NU_ is identical to edwards448_XOF:SHAKE256_ELL2_RO_,
except that the encoding type is encode_to_curve (<xref target="roadmap" format="default"/>).</t>
        <t>Optimized example implementations of the above mappings are given in
<xref target="map-to-curve448" format="default"/> and <xref target="map-to-edwards448" format="default"/>.</t>
      </section>
      <section anchor="suites-secp256k1" numbered="true" toc="default">
        <name>Suites for secp256k1</name>
        <t>This section defines ciphersuites for the secp256k1 elliptic curve <xref target="SEC2" format="default"/>.</t>
        <t>secp256k1_XMD:SHA-256_SSWU_RO_ is defined as follows:</t>
        <ul spacing="normal">
          <li>encoding type: hash_to_curve (<xref target="roadmap" format="default"/>)</li>
          <li>E: y^2 = x^3 + 7</li>
          <li>p: 2^256 - 2^32 - 2^9 - 2^8 - 2^7 - 2^6 - 2^4 - 1</li>
          <li>m: 1</li>
          <li>k: 128</li>
          <li>expand_message: expand_message_xmd (<xref target="hashtofield-expand-xmd" format="default"/>)</li>
          <li>H: SHA-256</li>
          <li>L: 48</li>
          <li>f: Simplified SWU for AB == 0 (<xref target="simple-swu-AB0" format="default"/>)</li>
          <li>Z: -11</li>
          <li>
            <t>E': y'^2 = x'^3 + A' * x' + B', where
            </t>
            <ul spacing="normal">
              <li>A': 0x3f8731abdd661adca08a5558f0f5d272e953d363cb6f0e5d405447c01a444533</li>
              <li>B': 1771</li>
            </ul>
          </li>
          <li>iso_map: the 3-isogeny map from E' to E given in <xref target="appx-iso-secp256k1" format="default"/></li>
          <li>h_eff: 1</li>
        </ul>
        <t>secp256k1_XMD:SHA-256_SSWU_NU_ is identical to secp256k1_XMD:SHA-256_SSWU_RO_,
except that the encoding type is encode_to_curve (<xref target="roadmap" format="default"/>).</t>
        <t>An optimized example implementation of the Simplified SWU mapping
to the curve E' isogenous to secp256k1 is given in <xref target="straightline-sswu" format="default"/>.</t>
      </section>
      <section anchor="suites-bls12381" numbered="true" toc="default">
        <name>Suites for BLS12-381</name>
        <t>This section defines ciphersuites for groups G1 and G2 of
the BLS12-381 elliptic curve <xref target="BLS12-381" format="default"/>.
The curve parameters in this section match the ones listed in
<xref target="I-D.irtf-cfrg-pairing-friendly-curves" format="default"/>, Appendix C.</t>
        <section anchor="suites-bls12381-g1" numbered="true" toc="default">
          <name>BLS12-381 G1</name>
          <t>BLS12381G1_XMD:SHA-256_SSWU_RO_ is defined as follows:</t>
          <ul spacing="normal">
            <li>encoding type: hash_to_curve (<xref target="roadmap" format="default"/>)</li>
            <li>E: y^2 = x^3 + 4</li>
            <li>p: 0x1a0111ea397fe69a4b1ba7b6434bacd764774b84f38512bf6730d2a0f6b0f6241eabfffeb153ffffb9feffffffffaaab</li>
            <li>m: 1</li>
            <li>k: 128</li>
            <li>expand_message: expand_message_xmd (<xref target="hashtofield-expand-xmd" format="default"/>)</li>
            <li>H: SHA-256</li>
            <li>L: 64</li>
            <li>f: Simplified SWU for AB == 0 (<xref target="simple-swu-AB0" format="default"/>)</li>
            <li>Z: 11</li>
            <li>
              <t>E': y'^2 = x'^3 + A' * x' + B', where
              </t>
              <ul spacing="normal">
                <li>A' = 0x144698a3b8e9433d693a02c96d4982b0ea985383ee66a8d8e8981aefd881ac98936f8da0e0f97f5cf428082d584c1d</li>
                <li>B' = 0x12e2908d11688030018b12e8753eee3b2016c1f0f24f4070a0b9c14fcef35ef55a23215a316ceaa5d1cc48e98e172be0</li>
              </ul>
            </li>
            <li>iso_map: the 11-isogeny map from E' to E given in <xref target="appx-iso-bls12381-g1" format="default"/></li>
            <li>h_eff: 0xd201000000010001</li>
          </ul>
          <t>BLS12381G1_XMD:SHA-256_SSWU_NU_ is identical to BLS12381G1_XMD:SHA-256_SSWU_RO_,
except that the encoding type is encode_to_curve (<xref target="roadmap" format="default"/>).</t>
          <t>Note that the h_eff values for these suites are chosen for compatibility
with the fast cofactor clearing method described by Scott (<xref target="WB19" format="default"/> Section 5).</t>
          <t>An optimized example implementation of the Simplified SWU mapping
to the curve E' isogenous to BLS12-381 G1 is given in <xref target="straightline-sswu" format="default"/>.</t>
        </section>
        <section anchor="suites-bls12381-g2" numbered="true" toc="default">
          <name>BLS12-381 G2</name>
          <t>BLS12381G2_XMD:SHA-256_SSWU_RO_ is defined as follows:</t>
          <ul spacing="normal">
            <li>encoding type: hash_to_curve (<xref target="roadmap" format="default"/>)</li>
            <li>E: y^2 = x^3 + 4 * (1 + I)</li>
            <li>
              <t>base field F is GF(p^m), where
              </t>
              <ul spacing="normal">
                <li>p: 0x1a0111ea397fe69a4b1ba7b6434bacd764774b84f38512bf6730d2a0f6b0f6241eabfffeb153ffffb9feffffffffaaab</li>
                <li>m: 2</li>
                <li>(1, I) is the basis for F, where I^2 + 1 == 0 in F</li>
              </ul>
            </li>
            <li>k: 128</li>
            <li>expand_message: expand_message_xmd (<xref target="hashtofield-expand-xmd" format="default"/>)</li>
            <li>H: SHA-256</li>
            <li>L: 64</li>
            <li>f: Simplified SWU for AB == 0 (<xref target="simple-swu-AB0" format="default"/>)</li>
            <li>Z: -(2 + I)</li>
            <li>
              <t>E': y'^2 = x'^3 + A' * x' + B', where
              </t>
              <ul spacing="normal">
                <li>A' = 240 * I</li>
                <li>B' = 1012 * (1 + I)</li>
              </ul>
            </li>
            <li>iso_map: the isogeny map from E' to E given in <xref target="appx-iso-bls12381-g2" format="default"/></li>
            <li>h_eff: 0xbc69f08f2ee75b3584c6a0ea91b352888e2a8e9145ad7689986ff031508ffe1329c2f178731db956d82bf015d1212b02ec0ec69d7477c1ae954cbc06689f6a359894c0adebbf6b4e8020005aaa95551</li>
          </ul>
          <t>BLS12381G2_XMD:SHA-256_SSWU_NU_ is identical to BLS12381G2_XMD:SHA-256_SSWU_RO_,
except that the encoding type is encode_to_curve (<xref target="roadmap" format="default"/>).</t>
          <t>Note that the h_eff values for these suites are chosen for compatibility
with the fast cofactor clearing method described by
Budroni and Pintore (<xref target="BP17" format="default"/>, Section 4.1), and summarized in <xref target="clear-cofactor-bls12381-g2" format="default"/>.</t>
          <t>An optimized example implementation of the Simplified SWU mapping
to the curve E' isogenous to BLS12-381 G2 is given in <xref target="straightline-sswu" format="default"/>.</t>
        </section>
      </section>
      <section anchor="new-suite" numbered="true" toc="default">
        <name>Defining a new hash-to-curve suite</name>
        <t>The RECOMMENDED way to define a new hash-to-curve suite is:</t>
        <ol spacing="normal" type="1">
          <li>E, F, p, and m are determined by the elliptic curve and its base field.</li>
          <li>k is an upper bound on the target security level of the suite
(<xref target="security-considerations-targets" format="default"/>).
A reasonable choice of k is ceil(log2(r) / 2), where r is
the order of the subgroup G of the curve E (<xref target="bg-curves" format="default"/>).</li>
          <li>Choose encoding type, either hash_to_curve or encode_to_curve (<xref target="roadmap" format="default"/>).</li>
          <li>Compute L as described in <xref target="hashtofield-sec" format="default"/>.</li>
          <li>Choose an expand_message variant from <xref target="hashtofield-expand" format="default"/> plus any
underlying cryptographic primitives (e.g., a hash function H).</li>
          <li>Choose a mapping following the guidelines in <xref target="choosing-mapping" format="default"/>,
and select any required parameters for that mapping.</li>
          <li>Choose h_eff to be either the cofactor of E or, if a fast cofactor
clearing method is to be used, a value appropriate to that method
as discussed in <xref target="cofactor-clearing" format="default"/>.</li>
          <li>Construct a Suite ID following the guidelines in <xref target="suiteIDformat" format="default"/>.</li>
        </ol>
        <t>When hashing to an elliptic curve not listed in this section, corresponding
hash-to-curve suites SHOULD be fully specified as described above.</t>
      </section>
      <section anchor="suiteIDformat" numbered="true" toc="default">
        <name>Suite ID naming conventions</name>
        <t>Suite IDs MUST be constructed as follows:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
CURVE_ID || "_" || HASH_ID || "_" || MAP_ID || "_" || ENC_VAR || "_"
]]></artwork>
        <t>The fields CURVE_ID, HASH_ID, MAP_ID, and ENC_VAR are
ASCII-encoded strings of at most 64 characters each.
Fields MUST contain only ASCII characters between 0x21 and 0x7E (inclusive)
except that underscore (i.e., 0x5f) is not allowed.</t>
        <t>As indicated above, each field (including the last) is followed by an underscore
("_", ASCII 0x5f).
This helps to ensure that Suite IDs are prefix free.
Suite IDs MUST include the final underscore and MUST NOT include any characters
after the final underscore.</t>
        <t>Suite ID fields MUST be chosen as follows:</t>
        <ul spacing="normal">
          <li>CURVE_ID: a human-readable representation of the target elliptic curve.</li>
          <li>
            <t>HASH_ID: a human-readable representation of the expand_message function
and any underlying hash primitives used in hash_to_field (<xref target="hashtofield" format="default"/>).
This field MUST be constructed as follows:  </t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
  EXP_TAG || ":" || HASH_NAME
]]></artwork>
            <t>
EXP_TAG indicates the expand_message variant:  </t>
            <ul spacing="normal">
              <li>"XMD" for expand_message_xmd (<xref target="hashtofield-expand-xmd" format="default"/>).</li>
              <li>"XOF" for expand_message_xof (<xref target="hashtofield-expand-xof" format="default"/>).</li>
            </ul>
            <t>
HASH_NAME is a human-readable name for the underlying hash primitive.
As examples:  </t>
            <ol spacing="normal" type="1">
              <li>For expand_message_xof (<xref target="hashtofield-expand-xof" format="default"/>) with SHAKE128,
HASH_ID is "XOF:SHAKE128".</li>
              <li>For expand_message_xmd (<xref target="hashtofield-expand-xmd" format="default"/>) with SHA3-256,
HASH_ID is "XMD:SHA3-256".</li>
            </ol>
            <t>
Suites that use an alternative hash_to_field function that meets the requirements
in <xref target="hashtofield-exteff" format="default"/> MUST indicate this by appending a tag identifying that function
to the HASH_ID field, separated by a colon (":", ASCII 0x3A).</t>
          </li>
          <li>
            <t>MAP_ID: a human-readable representation of the map_to_curve function
as defined in <xref target="mappings" format="default"/>. These are defined as follows:  </t>
            <ul spacing="normal">
              <li>"SVDW" for or Shallue and van de Woestijne (<xref target="svdw" format="default"/>).</li>
              <li>"SSWU" for Simplified SWU (<xref target="simple-swu" format="default"/>, <xref target="simple-swu-AB0" format="default"/>).</li>
              <li>"ELL2" for Elligator 2 (<xref target="elligator2" format="default"/>, <xref target="ell2edwards" format="default"/>).</li>
            </ul>
          </li>
          <li>
            <t>ENC_VAR: a string indicating the encoding type and other information.
The first two characters of this string indicate whether the suite
represents a hash_to_curve or an encode_to_curve operation
(<xref target="roadmap" format="default"/>), as follows:  </t>
            <ul spacing="normal">
              <li>If ENC_VAR begins with "RO", the suite uses hash_to_curve.</li>
              <li>If ENC_VAR begins with "NU", the suite uses encode_to_curve.</li>
              <li>ENC_VAR MUST NOT begin with any other string.</li>
            </ul>
            <t>
ENC_VAR MAY also be used to encode other information used to identify
  variants, for example, a version number.
  The RECOMMENDED way to do so is to add one or more subfields separated
  by colons.
  For example, "RO:V02" is an appropriate ENC_VAR value for the second
  version of a uniform encoding suite, while "RO:V02:FOO01:BAR17" might be
  used to indicate a variant of that suite.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security considerations</name>
      <t><xref target="domain-separation" format="default"/> describes considerations related to domain separation.
See <xref target="security-considerations-domain-separation" format="default"/> for further discussion.</t>
      <t><xref target="hashtofield" format="default"/> describes considerations for uniformly hashing to field elements;
see <xref target="security-considerations-hash-to-field" format="default"/> and <xref target="security-considerations-expand-xmd" format="default"/>
for further discussion.</t>
      <t>Each encoding type (<xref target="roadmap" format="default"/>) accepts an arbitrary byte string and maps
it to a point on the curve sampled from a distribution that depends on the
encoding type.
It is important to note that using a nonuniform encoding or directly
evaluating one of the mappings of <xref target="mappings" format="default"/> produces an output that is
easily distinguished from a uniformly random point.
Applications that use a nonuniform encoding SHOULD carefully analyze the security
implications of nonuniformity.
When the required encoding is not clear, applications SHOULD use a uniform
encoding.</t>
      <t>Both encodings given in <xref target="roadmap" format="default"/> can output the identity element of the group G.
The probability that either encoding function outputs the identity element is
roughly 1/r for a random input, which is negligible for cryptographically useful
elliptic curves.
Further, it is computationally infeasible to find an input to either encoding function
whose corresponding output is the identity element.
(Both of these properties hold when the encoding functions are instantiated with a
hash_to_field function that follows all guidelines in <xref target="hashtofield" format="default"/>.)
Protocols that use these encoding functions SHOULD NOT add a special case
to detect and "fix" the identity element.</t>
      <t>When the hash_to_curve function (<xref target="roadmap" format="default"/>) is instantiated with a
hash_to_field function that is indifferentiable from a random oracle
(<xref target="hashtofield" format="default"/>), the resulting function is indifferentiable from a random
oracle (<xref target="MRH04" format="default"/>, <xref target="BCIMRT10" format="default"/>, <xref target="FFSTV13" format="default"/>, <xref target="LBB19" format="default"/>, <xref target="H20" format="default"/>).
In many cases such a function can be safely used in cryptographic protocols
whose security analysis assumes a random oracle that outputs uniformly random
points on an elliptic curve.
As Ristenpart et al. discuss in <xref target="RSS11" format="default"/>, however, not all security proofs
that rely on random oracles continue to hold when those oracles are replaced
by indifferentiable functionalities.
This limitation should be considered when analyzing the security of protocols
relying on the hash_to_curve function.</t>
      <t>When hashing passwords using any function described in this document, an adversary
who learns the output of the hash function (or potentially any intermediate value,
e.g., the output of hash_to_field) may be able to carry out a dictionary attack.
To mitigate such attacks, it is recommended to first execute a more costly key
derivation function (e.g., PBKDF2 <xref target="RFC2898" format="default"/>, scrypt <xref target="RFC7914" format="default"/>, or Argon2
<xref target="I-D.irtf-cfrg-argon2" format="default"/>) on the password, then hash the output of that
function to the target elliptic curve.
For collision resistance, the hash underlying the key derivation function
should be chosen according to the guidelines listed in <xref target="hashtofield-expand-xmd" format="default"/>.</t>
      <t>Constant-time implementations of all functions in this document are STRONGLY
RECOMMENDED for all uses, to avoid leaking information via side channels.
It is especially important to use a constant-time implementation when inputs to
an encoding are secret values; in such cases, constant-time implementations
are REQUIRED for security against timing attacks (e.g., <xref target="VR20" format="default"/>).
When constant-time implementations are required, all basic operations and
utility functions must be implemented in constant time, as discussed in
<xref target="utility" format="default"/>.
In some applications (e.g., embedded systems), leakage through other side
channels (e.g., power or electromagnetic side channels) may be pertinent.
Defending against such leakage is outside the scope of this document, because
the nature of the leakage and the appropriate defense depend on the application.</t>
      <section anchor="security-considerations-encode" numbered="true" toc="default">
        <name>encode_to_curve: output distribution and indifferentiability</name>
        <t>The encode_to_curve function (<xref target="roadmap" format="default"/>) returns points sampled from a
distribution that is statistically far from uniform.
This distribution is bounded roughly as follows:
first, it includes at least one eighth of the points in G, and second, the
probability of points in the distribution varies by at most a factor of four.
These bounds hold when encode_to_curve is instantiated with any of the
map_to_curve functions in <xref target="mappings" format="default"/>.</t>
        <t>The bounds above are derived from several works in the literature.
Specifically:</t>
        <ul spacing="normal">
          <li>Shallue and van de Woestijne <xref target="SW06" format="default"/> and Fouque and Tibouchi <xref target="FT12" format="default"/>
derive bounds on the Shallue-van de Woestijne mapping (<xref target="svdw" format="default"/>).</li>
          <li>Fouque and Tibouchi <xref target="FT10" format="default"/> and Tibouchi <xref target="T14" format="default"/> derive bounds for the
Simplified SWU mapping (<xref target="simple-swu" format="default"/>, <xref target="simple-swu-AB0" format="default"/>).</li>
          <li>Bernstein et al. <xref target="BHKL13" format="default"/> derive bounds for the Elligator 2 mapping
(<xref target="elligator2" format="default"/>, <xref target="ell2edwards" format="default"/>).</li>
        </ul>
        <t>Indifferentiability of encode_to_curve follows from an argument similar
to the one given by Brier et al. <xref target="BCIMRT10" format="default"/>; we briefly sketch.
Consider an ideal random oracle Hc() that samples from the distribution induced
by the map_to_curve function called by encode_to_curve, and assume for
simplicity that the target elliptic curve has cofactor 1 (a similar argument
applies for non-unity cofactors).
Indifferentiability holds just if it is possible to efficiently simulate
the "inner" random oracle in encode_to_curve, namely, hash_to_field.
The simulator works as follows:
on a fresh query msg, the simulator queries Hc(msg) and receives a point
P in the image of map_to_curve (if msg is the same as a prior query,
the simulator just returns the value it gave in response to that query).
The simulator then computes the possible preimages of P under map_to_curve,
i.e., elements u of F such that map_to_curve(u) == P
(Tibouchi <xref target="T14" format="default"/> shows that this can be done efficiently for the Shallue-van
de Woestijne and Simplified SWU maps, and Bernstein et al. show the same for
Elligator 2).
The simulator selects one such preimage at random and returns this value
as the simulated output of the "inner" random oracle.
By hypothesis, Hc() samples from the distribution induced by map_to_curve
on a uniformly random input element of F, so this value is uniformly random
and induces the correct point P when passed through map_to_curve.</t>
      </section>
      <section anchor="security-considerations-hash-to-field" numbered="true" toc="default">
        <name>hash_to_field security</name>
        <t>The hash_to_field function defined in <xref target="hashtofield" format="default"/> is indifferentiable
from a random oracle <xref target="MRH04" format="default"/> when expand_message (<xref target="hashtofield-expand" format="default"/>)
is modeled as a random oracle.
By composability of indifferentiability proofs, this also holds when
expand_message is proved indifferentiable from a random oracle relative
to an underlying primitive that is modeled as a random oracle.
When following the guidelines in <xref target="hashtofield-expand" format="default"/>, both variants
of expand_message defined in that section meet this requirement
(see also <xref target="security-considerations-expand-xmd" format="default"/>).</t>
        <t>We very briefly sketch the indifferentiability argument for hash_to_field.
Notice that each integer mod p that hash_to_field returns (i.e., each element
of the vector representation of F) is a member of an equivalence class of roughly
2^k integers of length log2(p) + k bits, all of which are equal modulo p.
For each integer mod p that hash_to_field returns, the simulator samples
one member of this equivalence class at random and outputs the byte string
returned by I2OSP.
(Notice that this is essentially the inverse of the hash_to_field procedure.)</t>
      </section>
      <section anchor="security-considerations-expand-xmd" numbered="true" toc="default">
        <name>expand_message_xmd security</name>
        <t>The expand_message_xmd function defined in <xref target="hashtofield-expand-xmd" format="default"/> is
indifferentiable from a random oracle <xref target="MRH04" format="default"/> when one of the following holds:</t>
        <ol spacing="normal" type="1">
          <li>H is indifferentiable from a random oracle,</li>
          <li>H is a sponge-based hash function whose inner function
is modeled as a random transformation or random permutation <xref target="BDPV08" format="default"/>, or</li>
          <li>H is a Merkle-Damgaard hash function whose compression function is
modeled as a random oracle <xref target="CDMP05" format="default"/>.</li>
        </ol>
        <t>For cases (1) and (2), the indifferentiability of expand_message_xmd follows
directly from the indifferentiability of H.</t>
        <t>For case (3), i.e., for H a Merkle-Damgaard hash function, indifferentiability
follows from <xref target="CDMP05" format="default"/>, Theorem 3.5.
In particular, expand_message_xmd computes b_0 by prefixing the message
with one block of 0-bytes plus auxiliary information (length, counter, and DST).
Then, each of the output blocks b_i, i &gt;= 1 in expand_message_xmd is the
result of invoking H on a unique, prefix-free encoding of b_0.
This is true, first, because the length of the input to all such invocations
is equal and fixed by the choice of H and DST, and
second, because each such input has a unique suffix (because of the inclusion
of the counter byte I2OSP(i, 1)).</t>
        <t>The essential difference between the construction of <xref target="CDMP05" format="default"/> and
expand_message_xmd is that the latter hashes a counter appended to
strxor(b_0, b_(i - 1)) (step 10) rather than to b_0.
This approach increases the Hamming distance between inputs to different
invocations of H, which reduces the likelihood that nonidealities in H
affect the distribution of the b_i values.</t>
        <t>We note that expand_message_xmd can be used to instantiate a general-purpose
indifferentiable functionality with variable-length output based on any hash
function meeting one of the above criteria.
Applications that use expand_message_xmd outside of hash_to_field should
ensure domain separation by picking a distinct value for DST.</t>
      </section>
      <section anchor="security-considerations-domain-separation" numbered="true" toc="default">
        <name>Domain separation recommendations</name>
        <t>As discussed in <xref target="term-domain-separation" format="default"/>, the purpose of domain separation
is to ensure that security analyses of cryptographic protocols that query
multiple independent random oracles remain valid even if all of these random
oracles are instantiated based on one underlying function H.
The expand_message variants in this document (<xref target="hashtofield-expand" format="default"/>) ensure
domain separation by appending a suffix-free-encoded domain separation tag
DST_prime to all strings hashed by H, an underlying hash or
extendable-output function.
(Other expand_message variants that follow the guidelines in
<xref target="hashtofield-expand-other" format="default"/> are expected to behave similarly,
but these should be analyzed on a case-by-case basis.)
For security, applications that use the same function H outside of expand_message
should enforce domain separation between those uses of H and expand_message,
and should separate all of these from uses of H in other applications.</t>
        <t>This section suggests four methods for enforcing domain separation
from expand_message variants, explains how each method achieves domain
separation, and lists the situations in which each is appropriate.
These methods share a high-level structure: the application designer fixes a tag
DST_ext distinct from DST_prime and augments calls to H with DST_ext.
Each method augments calls to H differently, and each may impose
additional requirements on DST_ext.</t>
        <t>These methods can be used to instantiate multiple domain separated functions
(e.g., H1 and H2) by selecting distinct DST_ext values for each
(e.g., DST_ext1, DST_ext2).</t>
        <ol spacing="normal" type="1">
          <li>
            <t>(Suffix-only domain separation.)
This method is useful when domain separating invocations of H
from expand_message_xmd or expand_message_xof.
It is not appropriate for domain separating expand_message from HMAC-H
<xref target="RFC2104" format="default"/>; for that purpose, see method 4.  </t>
            <t>
To instantiate a suffix-only domain separated function Hso, compute  </t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Hso(msg) = H(msg || DST_ext)
]]></artwork>
            <t>
DST_ext should be suffix-free encoded (e.g., by appending one byte
encoding the length of DST_ext) to make it infeasible to find distinct
(msg, DST_ext) pairs that hash to the same value.  </t>
            <t>
This method ensures domain separation because all distinct invocations of
H have distinct suffixes, since DST_ext is distinct from DST_prime.</t>
          </li>
          <li>
            <t>(Prefix-suffix domain separation.)
This method can be used in the same cases as the suffix-only method.  </t>
            <t>
To instantiate a prefix-suffix domain separated function Hps, compute  </t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Hps(msg) = H(DST_ext || msg || I2OSP(0, 1))
]]></artwork>
            <t>
DST_ext should be prefix-free encoded (e.g., by adding a one-byte prefix
that encodes the length of DST_ext) to make it infeasible to find distinct
(msg, DST_ext) pairs that hash to the same value.  </t>
            <t>
This method ensures domain separation because
appending the byte I2OSP(0, 1) ensures that inputs to H inside Hps
are distinct from those inside expand_message.
Specifically, the final byte of DST_prime encodes the length of DST, which
is required to be nonzero (<xref target="domain-separation" format="default"/>, requirement 2), and
DST_prime is always appended to invocations of H inside expand_message.</t>
          </li>
          <li>
            <t>(Prefix-only domain separation.)
This method is only useful for domain separating invocations of H
from expand_message_xmd.
It does not give domain separation for expand_message_xof or HMAC-H.  </t>
            <t>
To instantiate a prefix-only domain separated function Hpo, compute  </t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Hpo(msg) = H(DST_ext || msg)
]]></artwork>
            <t>
In order for this method to give domain separation, DST_ext should
be at least b bits long, where b is the number of bits output by the
hash function H.
In addition, at least one of the first b bits must be nonzero.
Finally, DST_ext should be prefix-free encoded (e.g., by adding a
one-byte prefix that encodes the length of DST_ext) to make it infeasible to
find distinct (msg, DST_ext) pairs that hash to the same value.  </t>
            <t>
This method ensures domain separation as follows.
First, since DST_ext contains at least one nonzero bit among its first b bits,
it is guaranteed to be distinct from the value Z_pad
(<xref target="hashtofield-expand-xmd" format="default"/>, step 4), which ensures that all inputs to H
are distinct from the input used to generate b_0 in expand_message_xmd.
Second, since DST_ext is at least b bits long, it is almost certainly
distinct from the values b_0 and strxor(b_0, b_(i - 1)), and therefore
all inputs to H are distinct from the inputs used to generate b_i, i &gt;= 1,
with high probability.</t>
          </li>
          <li>
            <t>(XMD-HMAC domain separation.)
This method is useful for domain separating invocations of H inside
HMAC-H (i.e., HMAC <xref target="RFC2104" format="default"/> instantiated with hash function H) from
expand_message_xmd.
It also applies to HKDF-H <xref target="RFC5869" format="default"/>, as discussed below.  </t>
            <t>
Specifically, this method applies when HMAC-H is used with a non-secret
key to instantiate a random oracle based on a hash function H
(note that expand_message_xmd can also be used for this purpose; see
<xref target="security-considerations-expand-xmd" format="default"/>).
When using HMAC-H with a high-entropy secret key, domain separation is not
necessary; see discussion below.  </t>
            <t>
To choose a non-secret HMAC key DST_key that ensures domain separation
from expand_message_xmd, compute  </t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
DST_key_preimage = "DERIVE-HMAC-KEY-" || DST_ext || I2OSP(0, 1)
DST_key = H(DST_key_preimage)
]]></artwork>
            <t>
Then, to instantiate the random oracle Hro using HMAC-H, compute  </t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Hro(msg) = HMAC-H(DST_key, msg)
]]></artwork>
            <t>
The trailing zero byte in DST_key_preimage ensures that this value
is distinct from inputs to H inside expand_message_xmd (because all
such inputs have suffix DST_prime, which cannot end with a zero byte
as discussed above).
This ensures domain separation because, with overwhelming probability,
all inputs to H inside of HMAC-H using key DST_key have prefixes that
are distinct from the values Z_pad, b_0, and strxor(b_0, b_(i - 1))
inside of expand_message_xmd.  </t>
            <t>
For uses of HMAC-H that instantiate a private random oracle by fixing
a high-entropy secret key, domain separation from expand_message_xmd
is not necessary.
This is because, similarly to the case above, all inputs to H inside
HMAC-H using this secret key almost certainly have distinct prefixes
from all inputs to H inside expand_message_xmd.  </t>
            <t>
Finally, this method can be used with HKDF-H <xref target="RFC5869" format="default"/> by fixing
the salt input to HKDF-Extract to DST_key, computed as above.
This ensures domain separation for HKDF-Extract by the same argument
as for HMAC-H using DST_key.
Moreover, assuming that the IKM input to HKDF-Extract has sufficiently
high entropy (say, commensurate with the security parameter), the
HKDF-Expand step is domain separated by the same argument as for
HMAC-H with a high-entropy secret key (since PRK is exactly that).</t>
          </li>
        </ol>
      </section>
      <section anchor="security-considerations-targets" numbered="true" toc="default">
        <name>Target security levels</name>
        <t>Each ciphersuite specifies a target security level (in bits) for the underlying
curve. This parameter ensures the corresponding hash_to_field instantiation is
conservative and correct. We stress that this parameter is only an upper bound on
the security level of the curve, and is neither a guarantee nor endorsement of its
suitability for a given application. Mathematical and cryptographic advancements
may reduce the effective security level for any curve.</t>
      </section>
    </section>
    <section anchor="acknowledgements" numbered="true" toc="default">
      <name>Acknowledgements</name>
      <t>The authors would like to thank Adam Langley for his detailed writeup of Elligator 2 with
Curve25519 <xref target="L13" format="default"/>;
Dan Boneh, Christopher Patton, Benjamin Lipp, and Leonid Reyzin for educational discussions; and
David Benjamin, Daniel Bourdrez, Frank Denis, Sean Devlin, Justin Drake, Bjoern Haase, Mike Hamburg,
Dan Harkins, Daira Hopwood, Thomas Icart, Andy Polyakov, Thomas Pornin, Mamy Ratsimbazafy, Michael Scott,
Filippo Valsorda, and Mathy Vanhoef for helpful reviews and feedback.</t>
    </section>
    <section anchor="contributors" numbered="true" toc="default">
      <name>Contributors</name>
      <ul spacing="normal">
        <li>Sharon Goldberg, Boston University (goldbe@cs.bu.edu)</li>
        <li>Ela Lee, Royal Holloway, University of London (Ela.Lee.2010@live.rhul.ac.uk)</li>
        <li>Michele Orru (michele.orru@ens.fr)</li>
      </ul>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="EID4730" target="https://www.rfc-editor.org/errata/eid4730">
          <front>
            <title>RFC 7748, Errata ID 4730</title>
            <author initials="A." surname="Langley" fullname="Adam Langley">
              <organization/>
            </author>
            <date year="2016" month="July"/>
          </front>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <seriesInfo name="DOI" value="10.17487/RFC2119"/>
            <seriesInfo name="RFC" value="2119"/>
            <seriesInfo name="BCP" value="14"/>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <seriesInfo name="DOI" value="10.17487/RFC8174"/>
            <seriesInfo name="RFC" value="8174"/>
            <seriesInfo name="BCP" value="14"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC8017">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <seriesInfo name="DOI" value="10.17487/RFC8017"/>
            <seriesInfo name="RFC" value="8017"/>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty">
              <organization/>
            </author>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson">
              <organization/>
            </author>
            <author fullname="A. Rusch" initials="A." surname="Rusch">
              <organization/>
            </author>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t>
              <t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series.  By publishing this RFC, change control is transferred to the IETF.</t>
              <t>This document also obsoletes RFC 3447.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7748">
          <front>
            <title>Elliptic Curves for Security</title>
            <seriesInfo name="DOI" value="10.17487/RFC7748"/>
            <seriesInfo name="RFC" value="7748"/>
            <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>
        </reference>
        <reference anchor="I-D.irtf-cfrg-pairing-friendly-curves">
          <front>
            <title>Pairing-Friendly Curves</title>
            <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-pairing-friendly-curves-10"/>
            <author fullname="Yumi Sakemi">
              <organization>Infours</organization>
            </author>
            <author fullname="Tetsutaro Kobayashi">
              <organization>NTT</organization>
            </author>
            <author fullname="Tsunekazu Saito">
              <organization>NTT</organization>
            </author>
            <author fullname="Riad S. Wahby">
              <organization>Stanford University</organization>
            </author>
            <date day="30" month="July" year="2021"/>
            <abstract>
              <t>   Pairing-based cryptography, a subfield of elliptic curve
   cryptography, has received attention due to its flexible and
   practical functionality.  Pairings are special maps defined using
   elliptic curves and it can be applied to construct several
   cryptographic protocols such as identity-based encryption, attribute-
   based encryption, and so on.  At CRYPTO 2016, Kim and Barbulescu
   proposed an efficient number field sieve algorithm named exTNFS for
   the discrete logarithm problem in a finite field.  Several types of
   pairing-friendly curves such as Barreto-Naehrig curves are affected
   by the attack.  In particular, a Barreto-Naehrig curve with a 254-bit
   characteristic was adopted by a lot of cryptographic libraries as a
   parameter of 128-bit security, however, it ensures no more than the
   100-bit security level due to the effect of the attack.  In this
   memo, we list the security levels of certain pairing-friendly curves,
   and motivate our choices of curves.  First, we summarize the adoption
   status of pairing-friendly curves in standards, libraries and
   applications, and classify them in the 128-bit, 192-bit, and 256-bit
   security levels.  Then, from the viewpoints of "security" and "widely
   used", we select the recommended pairing-friendly curves considering
   exTNFS.

              </t>
            </abstract>
          </front>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="BLS12-381" target="https://electriccoin.co/blog/new-snark-curve/">
          <front>
            <title>BLS12-381: New zk-SNARK Elliptic Curve Construction</title>
            <author initials="S." surname="Bowe" fullname="Sean Bowe">
              <organization>Electric Coin Company</organization>
            </author>
            <date year="2017" month="March"/>
          </front>
        </reference>
        <reference anchor="BR93" target="https://doi.org/10.1145/168588.168596">
          <front>
            <title>Random oracles are practical: a paradigm for designing efficient protocols</title>
            <seriesInfo name="DOI" value="10.1145/168588.168596"/>
            <seriesInfo name="pages" value="62-73"/>
            <seriesInfo name="In" value="Proceedings of the 1993 ACM Conference on Computer and Communications Security"/>
            <author initials="M." surname="Bellare" fullname="Mihir Bellare">
              <organization>UC San Diego</organization>
            </author>
            <author initials="P." surname="Rogaway" fullname="Phillip Rogaway">
              <organization>UC Davis</organization>
            </author>
            <date year="1993" month="December"/>
          </front>
        </reference>
        <reference anchor="SEC1" target="http://www.secg.org/sec1-v2.pdf">
          <front>
            <title>SEC 1: Elliptic Curve Cryptography</title>
            <author>
              <organization>Standards for Efficient Cryptography Group (SECG)</organization>
            </author>
            <date year="2009" month="May"/>
          </front>
        </reference>
        <reference anchor="SEC2" target="http://www.secg.org/sec2-v2.pdf">
          <front>
            <title>SEC 2: Recommended Elliptic Curve Domain Parameters</title>
            <author>
              <organization>Standards for Efficient Cryptography Group (SECG)</organization>
            </author>
            <date year="2010" month="January"/>
          </front>
        </reference>
        <reference anchor="FIPS180-4" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.180-4.pdf">
          <front>
            <title>Secure Hash Standard (SHS)</title>
            <author>
              <organization>National Institute of Standards and Technology (NIST)</organization>
            </author>
            <date year="2015" month="August"/>
          </front>
        </reference>
        <reference anchor="FIPS186-4" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf">
          <front>
            <title>FIPS Publication 186-4: Digital Signature Standard</title>
            <author>
              <organization>National Institute of Standards and Technology (NIST)</organization>
            </author>
            <date year="2013" month="July"/>
          </front>
        </reference>
        <reference anchor="FIPS202" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.202.pdf">
          <front>
            <title>SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions</title>
            <author>
              <organization>National Institute of Standards and Technology (NIST)</organization>
            </author>
            <date year="2015" month="August"/>
          </front>
        </reference>
        <reference anchor="BDPV08" target="https://doi.org/10.1007/978-3-540-78967-3_11">
          <front>
            <title>On the Indifferentiability of the Sponge Construction</title>
            <seriesInfo name="DOI" value="10.1007/978-3-540-78967-3_11"/>
            <seriesInfo name="pages" value="181-197"/>
            <seriesInfo name="In" value="Advances in Cryptology - EUROCRYPT 2008"/>
            <author initials="G." surname="Bertoni," fullname="Guido Bertoni">
              <organization>STMicroelectronics</organization>
            </author>
            <author initials="J." surname="Daemen" fullname="Joan Daemen">
              <organization>STMicroelectronics</organization>
            </author>
            <author initials="M." surname="Peeters" fullname="Michael Peeters">
              <organization>NXP Semiconductors</organization>
            </author>
            <author initials="G." surname="Van Assche" fullname="Gilles Van Assche">
              <organization>STMicroelectronics</organization>
            </author>
            <date year="2008"/>
          </front>
        </reference>
        <reference anchor="CDMP05" target="https://doi.org/10.1007/11535218_26">
          <front>
            <title>Merkle-Damgaard Revisited: How to Construct a Hash Function</title>
            <seriesInfo name="DOI" value="10.1007/11535218_26"/>
            <seriesInfo name="pages" value="430-448"/>
            <seriesInfo name="In" value="Advances in Cryptology - CRYPTO 2005"/>
            <author initials="J-S." surname="Coron" fullname="Jean-Sebastien Coron">
              <organization>University of Luxembourg</organization>
            </author>
            <author initials="Y." surname="Dodis" fullname="Yevgeniy Dodis">
              <organization>New York University</organization>
            </author>
            <author initials="C." surname="Malinaud" fullname="Cecile Malinaud">
              <organization>University of Luxembourg</organization>
            </author>
            <author initials="P." surname="Puniya" fullname="Prashant Puniya">
              <organization>New York University</organization>
            </author>
            <date year="2005"/>
          </front>
        </reference>
        <reference anchor="BLAKE2X" target="https://blake2.net/blake2x.pdf">
          <front>
            <title>BLAKE2X</title>
            <author initials="J-P." surname="Aumasson" fullname="Jean-Philippe Aumasson">
              <organization/>
            </author>
            <author initials="S." surname="Neves" fullname="Samuel Neves">
              <organization/>
            </author>
            <author initials="Z." surname="Wilcox-O'Hearn" fullname="Zooko Wilcox-O'Hearn">
              <organization/>
            </author>
            <author initials="C." surname="Winnerlein" fullname="Christian Winnerlein">
              <organization/>
            </author>
            <date year="2016" month="December"/>
          </front>
        </reference>
        <reference anchor="Icart09" target="https://doi.org/10.1007/978-3-642-03356-8_18">
          <front>
            <title>How to Hash into Elliptic Curves</title>
            <seriesInfo name="DOI" value="10.1007/978-3-642-03356-8_18"/>
            <seriesInfo name="pages" value="303-316"/>
            <seriesInfo name="In" value="Advances in Cryptology - CRYPTO 2009"/>
            <author initials="T." surname="Icart" fullname="Thomas Icart">
              <organization>Sagem Securite and Universite du Luxembourg</organization>
            </author>
            <date year="2009"/>
          </front>
        </reference>
        <reference anchor="BBJLP08" target="https://doi.org/10.1007/978-3-540-68164-9_26">
          <front>
            <title>Twisted Edwards curves</title>
            <seriesInfo name="DOI" value="10.1007/978-3-540-68164-9_26"/>
            <seriesInfo name="pages" value="389-405"/>
            <seriesInfo name="In" value="AFRICACRYPT 2008"/>
            <author initials="D.J." surname="Bernstein" fullname="Daniel J. Bernstein">
              <organization>Department of Computer Science, University of Illinois at Chicago, USA</organization>
            </author>
            <author initials="P." surname="Birkner" fullname="Peter Birkner">
              <organization>Department of Mathematics and Computer Science, Technische Universiteit Eindhoven, The Netherlands</organization>
            </author>
            <author initials="M." surname="Joye" fullname="Marc Joye">
              <organization>Thomson R&amp;D France</organization>
            </author>
            <author initials="T." surname="Lange" fullname="Tanja Lange">
              <organization>Department of Mathematics and Computer Science, Technische Universiteit Eindhoven, The Netherlands</organization>
            </author>
            <author initials="C." surname="Peters" fullname="Christiane Peters">
              <organization>Department of Mathematics and Computer Science, Technische Universiteit Eindhoven, The Netherlands</organization>
            </author>
            <date year="2008"/>
          </front>
        </reference>
        <reference anchor="CK11" target="https://doi.org/10.1016/j.jsc.2011.11.003">
          <front>
            <title>The geometry of flex tangents to a cubic curve and its parameterizations</title>
            <seriesInfo name="DOI" value="10.1016/j.jsc.2011.11.003"/>
            <seriesInfo name="pages" value="266-281"/>
            <seriesInfo name="In" value="Journal of Symbolic Computation, vol 47 issue 3"/>
            <author initials="J." surname="Couveignes" fullname="Jean-Marc Couveignes">
              <organization>Universite Bordeaux</organization>
            </author>
            <author initials="J." surname="Kammerer" fullname="Jean-Gabriel Kammerer">
              <organization>Universite de Rennes</organization>
            </author>
            <date year="2012"/>
          </front>
        </reference>
        <reference anchor="VR20" target="https://eprint.iacr.org/2019/383">
          <front>
            <title>Dragonblood: Analyzing the Dragonfly Handshake of WPA3 and EAP-pwd</title>
            <seriesInfo name="In" value="IEEE Symposium on Security &amp; Privacy (SP)"/>
            <author initials="M." surname="Vanhoef" fullname="Mathy Vanhoef">
              <organization>New York University Abu Dhabi</organization>
            </author>
            <author initials="E." surname="Ronen" fullname="Eyal Ronen">
              <organization>Tel Aviv University and KU Leuven</organization>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="F11" target="https://doi.org/10.1007/978-3-642-21969-6_17">
          <front>
            <title>Hashing into Hessian curves</title>
            <seriesInfo name="DOI" value="10.1007/978-3-642-21969-6_17"/>
            <seriesInfo name="pages" value="278-289"/>
            <seriesInfo name="In" value="AFRICACRYPT 2011"/>
            <author initials="R.R." surname="Farashahi" fullname="Reza R. Farashahi">
              <organization>Macquarie Universit</organization>
            </author>
            <date year="2011"/>
          </front>
        </reference>
        <reference anchor="FSV09" target="https://doi.org/10.1515/JMC.2009.022">
          <front>
            <title>On hashing into elliptic curves</title>
            <seriesInfo name="DOI" value="10.1515/JMC.2009.022"/>
            <seriesInfo name="pages" value="353-360"/>
            <seriesInfo name="In" value="Journal of Mathematical Cryptology, vol 3 no 4"/>
            <author initials="R.R." surname="Farashahi" fullname="Reza R. Farashahi">
              <organization>Macquarie Universit</organization>
            </author>
            <author initials="I.E." surname="Shparlinski" fullname="Igor E. Shparlinski">
              <organization>Macquarie Universit</organization>
            </author>
            <author initials="J.F." surname="Voloch" fullname="J. Felipe Voloch">
              <organization>University of Texas</organization>
            </author>
            <date year="2009"/>
          </front>
        </reference>
        <reference anchor="FT10" target="https://doi.org/10.1007/978-3-642-14712-8_5">
          <front>
            <title>Estimating the size of the image of deterministic hash functions to elliptic curves.</title>
            <seriesInfo name="DOI" value="10.1007/978-3-642-14712-8_5"/>
            <seriesInfo name="pages" value="81-91"/>
            <seriesInfo name="In" value="Progress in Cryptology - LATINCRYPT 2010"/>
            <author initials="P-A." surname="Fouque" fullname="Pierre-Alain Fouque">
              <organization>Ecole Normale Superieure and INRIA Rennes</organization>
            </author>
            <author initials="M." surname="Tibouchi" fullname="Mehdi Tibouchi">
              <organization>NTT Secure Platform Laboratories</organization>
            </author>
            <date year="2010"/>
          </front>
        </reference>
        <reference anchor="FT12" target="https://doi.org/10.1007/978-3-642-33481-8_1">
          <front>
            <title>Indifferentiable Hashing to Barreto-Naehrig Curves</title>
            <seriesInfo name="DOI" value="10.1007/978-3-642-33481-8_1"/>
            <seriesInfo name="pages" value="1-7"/>
            <seriesInfo name="In" value="Progress in Cryptology - LATINCRYPT 2012"/>
            <author initials="P-A." surname="Fouque" fullname="Pierre-Alain Fouque">
              <organization>Ecole Normale Superieure and INRIA Rennes</organization>
            </author>
            <author initials="M." surname="Tibouchi" fullname="Mehdi Tibouchi">
              <organization>NTT Secure Platform Laboratories</organization>
            </author>
            <date year="2012"/>
          </front>
        </reference>
        <reference anchor="FJT13" target="https://doi.org/10.1007/978-3-642-39059-3_14">
          <front>
            <title>Injective encodings to elliptic curves</title>
            <seriesInfo name="DOI" value="10.1007/978-3-642-39059-3_14"/>
            <seriesInfo name="pages" value="203-218"/>
            <seriesInfo name="In" value="ACISP 2013"/>
            <author initials="P-A." surname="Fouque" fullname="Pierre-Alain Fouque">
              <organization>Ecole Normale Superieure and INRIA Rennes</organization>
            </author>
            <author initials="A." surname="Joux" fullname="Antoine Joux">
              <organization>Sorbonne Universite</organization>
            </author>
            <author initials="M." surname="Tibouchi" fullname="Mehdi Tibouchi">
              <organization>NTT Secure Platform Laboratories</organization>
            </author>
            <date year="2013"/>
          </front>
        </reference>
        <reference anchor="KLR10" target="https://doi.org/10.1007/978-3-642-17455-1_18">
          <front>
            <title>Encoding points on hyperelliptic curves over finite fields in deterministic polynomial time</title>
            <seriesInfo name="DOI" value="10.1007/978-3-642-17455-1_18"/>
            <seriesInfo name="pages" value="278-297"/>
            <seriesInfo name="In" value="PAIRING 2010"/>
            <author initials="J." surname="Kammerer" fullname="Jean-Gabriel Kammerer">
              <organization>Universite de Rennes</organization>
            </author>
            <author initials="R." surname="Lercier" fullname="Reynald Lercier">
              <organization>Universite de Rennes</organization>
            </author>
            <author initials="G." surname="Renault" fullname="Guenael Renault">
              <organization>Universite Pierre et Marie Curie</organization>
            </author>
            <date year="2010"/>
          </front>
        </reference>
        <reference anchor="AR13" target="https://doi.org/10.1109/TC.2013.145">
          <front>
            <title>Square Root Computation over Even Extension Fields</title>
            <seriesInfo name="DOI" value="10.1109/TC.2013.145"/>
            <seriesInfo name="pages" value="2829-2841"/>
            <seriesInfo name="In" value="IEEE Transactions on Computers. vol 63 issue 11"/>
            <author initials="G." surname="Adj" fullname="Gora Adj">
              <organization>ISFA, Universite Claude Bernard Lyon 1, Villeurbanne, France</organization>
            </author>
            <author initials="F." surname="Rodriguez-Henriquez" fullname="Francisco Rodriguez-Henriquez">
              <organization>CINVESTAV-IPN, San Pedro Zacatenco, Mexico City, Mexico.</organization>
            </author>
            <date year="2014" month="November"/>
          </front>
        </reference>
        <reference anchor="BN05" target="https://doi.org/10.1007/11693383_22">
          <front>
            <title>Pairing-Friendly Elliptic Curves of Prime Order</title>
            <seriesInfo name="DOI" value="10.1007/11693383_22"/>
            <seriesInfo name="pages" value="319-331"/>
            <seriesInfo name="In" value="Selected Areas in Cryptography 2005"/>
            <author initials="P." surname="Barreto" fullname="Paulo S. L. M. Barreto">
              <organization>Escola Politecnica, Universidade de Sao Paulo, Sao Paulo, Brazil</organization>
            </author>
            <author initials="M." surname="Naehrig" fullname="Michael Naehrig">
              <organization>Lehrstuhl fur Theoretische Informationstechnik, Rheinisch-Westfalische Technische Hochschule Aachen, Aachen, Germany</organization>
            </author>
            <date year="2006"/>
          </front>
        </reference>
        <reference anchor="AFQTZ14" target="https://doi.org/10.1007/978-3-319-13051-4_2">
          <front>
            <title>Binary Elligator squared</title>
            <seriesInfo name="DOI" value="10.1007/978-3-319-13051-4_2"/>
            <seriesInfo name="pages" value="20-37"/>
            <seriesInfo name="In" value="Selected Areas in Cryptography - SAC 2014"/>
            <author initials="D.F." surname="Aranha" fullname="Diego F. Aranha">
              <organization>Institute of Computing, University of Campinas</organization>
            </author>
            <author initials="P.A." surname="Fouque" fullname="Pierre-Alain Fouque">
              <organization>Universite de Rennes 1 and Institut Universitaire de France</organization>
            </author>
            <author initials="C." surname="Qian" fullname="Chen Qian">
              <organization>ENS Rennes</organization>
            </author>
            <author initials="M." surname="Tibouchi" fullname="Mehdi Tibouchi">
              <organization>NTT Secure Platform Laboratories</organization>
            </author>
            <author initials="J.C." surname="Zapalowicz" fullname="Jean-Christophe Zapalowicz">
              <organization>INRIA</organization>
            </author>
            <date year="2014"/>
          </front>
        </reference>
        <reference anchor="T14" target="https://doi.org/10.1007/978-3-662-45472-5_10">
          <front>
            <title>Elligator squared: Uniform points on elliptic curves of prime order as uniform random strings</title>
            <seriesInfo name="DOI" value="10.1007/978-3-662-45472-5_10"/>
            <seriesInfo name="pages" value="139-156"/>
            <seriesInfo name="In" value="Financial Cryptography and Data Security - FC 2014"/>
            <author initials="M." surname="Tibouchi" fullname="Mehdi Tibouchi">
              <organization>NTT Secure Platform Laboratories</organization>
            </author>
            <date year="2014"/>
          </front>
        </reference>
        <reference anchor="TK17" target="https://doi.org/10.1007/s10623-016-0288-2">
          <front>
            <title>Improved elliptic curve hashing and point representation</title>
            <seriesInfo name="DOI" value="10.1007/s10623-016-0288-2"/>
            <seriesInfo name="pages" value="161-177"/>
            <seriesInfo name="In" value="Designs, Codes, and Cryptography, vol 82"/>
            <author initials="M." surname="Tibouchi" fullname="Mehdi Tibouchi">
              <organization>NTT Secure Platform Laboratories</organization>
            </author>
            <author initials="T." surname="Kim" fullname="Taechan Kim">
              <organization>NTT Secure Platform Laboratories</organization>
            </author>
            <date year="2017"/>
          </front>
        </reference>
        <reference anchor="BF01" target="https://doi.org/10.1007/3-540-44647-8_13">
          <front>
            <title>Identity-based encryption from the Weil pairing</title>
            <seriesInfo name="DOI" value="10.1007/3-540-44647-8_13"/>
            <seriesInfo name="pages" value="213-229"/>
            <seriesInfo name="In" value="Advances in Cryptology - CRYPTO 2001"/>
            <author initials="D." surname="Boneh" fullname="Dan Boneh">
              <organization>Stanford University</organization>
            </author>
            <author initials="M." surname="Franklin" fullname="Matthew Franklin">
              <organization>UC Davis</organization>
            </author>
            <date year="2001" month="August"/>
          </front>
        </reference>
        <reference anchor="BLS01" target="https://doi.org/10.1007/s00145-004-0314-9">
          <front>
            <title>Short signatures from the Weil pairing</title>
            <seriesInfo name="DOI" value="10.1007/s00145-004-0314-9"/>
            <seriesInfo name="pages" value="297-319"/>
            <seriesInfo name="In" value="Journal of Cryptology, vol 17"/>
            <author initials="D." surname="Boneh" fullname="Dan Boneh">
              <organization>Stanford University</organization>
            </author>
            <author initials="B." surname="Lynn" fullname="Ben Lynn">
              <organization>Stanford University</organization>
            </author>
            <author initials="H." surname="Shacham" fullname="Hovav Shacham">
              <organization>Stanford University</organization>
            </author>
            <date year="2004" month="July"/>
          </front>
        </reference>
        <reference anchor="BLS03" target="https://doi.org/10.1007/3-540-36413-7_19">
          <front>
            <title>Constructing Elliptic Curves with Prescribed Embedding Degrees</title>
            <seriesInfo name="DOI" value="10.1007/3-540-36413-7_19"/>
            <seriesInfo name="pages" value="257-267"/>
            <seriesInfo name="In" value="Security in Communication Networks"/>
            <author initials="P." surname="Barreto" fullname="Paulo S. L. M. Barreto">
              <organization>Universidade de Sao Paulo, Brazil</organization>
            </author>
            <author initials="B." surname="Lynn" fullname="Ben Lynn">
              <organization>Stanford University</organization>
            </author>
            <author initials="M." surname="Scott" fullname="Michael Scott">
              <organization>Dublin City University, Ireland</organization>
            </author>
            <date year="2003"/>
          </front>
        </reference>
        <reference anchor="BM92" target="https://doi.org/10.1109/RISP.1992.213269">
          <front>
            <title>Encrypted key exchange: Password-based protocols secure against dictionary attacks</title>
            <seriesInfo name="DOI" value="10.1109/RISP.1992.213269"/>
            <seriesInfo name="pages" value="72-84"/>
            <seriesInfo name="In" value="IEEE Symposium on Security and Privacy - Oakland 1992"/>
            <author initials="S.M." surname="Bellovin" fullname="Steven M. Bellovin">
              <organization>AT&amp;T Bell Laboratories</organization>
            </author>
            <author initials="M." surname="Merritt" fullname="Michael Merritt">
              <organization>AT&amp;T Bell Laboratories</organization>
            </author>
            <date year="1992"/>
          </front>
        </reference>
        <reference anchor="BMP00" target="https://doi.org/10.1007/3-540-45539-6_12">
          <front>
            <title>Provably secure password-authenticated key exchange using Diffie-Hellman</title>
            <seriesInfo name="DOI" value="10.1007/3-540-45539-6_12"/>
            <seriesInfo name="pages" value="156-171"/>
            <seriesInfo name="In" value="Advances in Cryptology - EUROCRYPT 2000"/>
            <author initials="V." surname="Boyko" fullname="Victor Boyko">
              <organization>MIT Laboratory for Computer Science</organization>
            </author>
            <author initials="P.D." surname="MacKenzie" fullname="Philip D. MacKenzie">
              <organization>Bell Laboratories, Lucent Technologies</organization>
            </author>
            <author initials="S." surname="Patel" fullname="Sarvar Patel">
              <organization>Bell Laboratories, Lucent Technologies</organization>
            </author>
            <date year="2000" month="May"/>
          </front>
        </reference>
        <reference anchor="J96" target="https://doi.org/10.1145/242896.242897">
          <front>
            <title>Strong password-only authenticated key exchange</title>
            <seriesInfo name="DOI" value="10.1145/242896.242897"/>
            <seriesInfo name="pages" value="5-26"/>
            <seriesInfo name="In" value="SIGCOMM Computer Communication Review, vol 26 issue 5"/>
            <author initials="D.P." surname="Jablon" fullname="David P. Jablon">
              <organization>Integrity Sciences, Inc. Westboro, MA.</organization>
            </author>
            <date year="1996"/>
          </front>
        </reference>
        <reference anchor="hash2curve-repo" target="https://github.com/cfrg/draft-irtf-cfrg-hash-to-curve">
          <front>
            <title>Hashing to Elliptic Curves - GitHub repository</title>
            <author>
              <organization/>
            </author>
            <date year="2019"/>
          </front>
        </reference>
        <reference anchor="jubjub-fq" target="https://github.com/zkcrypto/jubjub/blob/master/src/fq.rs">
          <front>
            <title>zkcrypto/jubjub - fq.rs</title>
            <author>
              <organization/>
            </author>
            <date year="2019"/>
          </front>
        </reference>
        <reference anchor="L13" target="https://www.imperialviolet.org/2013/12/25/elligator.html">
          <front>
            <title>Implementing Elligator for Curve25519</title>
            <author initials="A." surname="Langley" fullname="Adam Langley">
              <organization/>
            </author>
            <date year="2013"/>
          </front>
        </reference>
        <reference anchor="SBCDK09" target="https://doi.org/10.1007/978-3-642-03298-1_8">
          <front>
            <title>Fast Hashing to G2 on Pairing-Friendly Curves</title>
            <seriesInfo name="DOI" value="10.1007/978-3-642-03298-1_8"/>
            <seriesInfo name="pages" value="102-113"/>
            <seriesInfo name="In" value="Pairing-Based Cryptography - Pairing 2009"/>
            <author initials="M." surname="Scott" fullname="Michael Scott">
              <organization>School of Computing Dublin City University, Ballymun. Dublin, Ireland.</organization>
            </author>
            <author initials="N." surname="Benger" fullname="Naomi Benger">
              <organization>School of Computing Dublin City University, Ballymun. Dublin, Ireland.</organization>
            </author>
            <author initials="M." surname="Charlemagne" fullname="Manuel Charlemagne">
              <organization>School of Computing Dublin City University, Ballymun. Dublin, Ireland.</organization>
            </author>
            <author initials="L.J." surname="Dominguez Perez" fullname="Luis J. Dominguez Perez">
              <organization>School of Computing Dublin City University, Ballymun. Dublin, Ireland.</organization>
            </author>
            <author initials="E.J." surname="Kachisa" fullname="Ezekiel J. Kachisa">
              <organization>School of Computing Dublin City University, Ballymun. Dublin, Ireland.</organization>
            </author>
            <date year="2009"/>
          </front>
        </reference>
        <reference anchor="FKR11" target="https://doi.org/10.1007/978-3-642-28496-0_25">
          <front>
            <title>Fast Hashing to G2 on Pairing-Friendly Curves</title>
            <seriesInfo name="DOI" value="10.1007/978-3-642-28496-0_25"/>
            <seriesInfo name="pages" value="412-430"/>
            <seriesInfo name="In" value="Selected Areas in Cryptography"/>
            <author initials="L." surname="Fuentes-Castaneda" fullname="Laura Fuentes-Castaneda">
              <organization>Computer Science Department, CINVESTAV-IPN. Mexico</organization>
            </author>
            <author initials="E." surname="Knapp" fullname="Edward Knapp">
              <organization>Dept. Combinatorics &amp; Optimization, University of Waterloo, Canada</organization>
            </author>
            <author initials="F." surname="Rodriguez-Henriquez" fullname="Francisco Rodriguez-Henriquez">
              <organization>Computer Science Department, CINVESTAV-IPN. Mexico</organization>
            </author>
            <date year="2011"/>
          </front>
        </reference>
        <reference anchor="BP17" target="https://eprint.iacr.org/2017/419">
          <front>
            <title>Efficient hash maps to G2 on BLS curves</title>
            <seriesInfo name="ePrint" value="2017/419"/>
            <author initials="A." surname="Budroni" fullname="Alessandro Budroni">
              <organization>University of Bergen, Norway and MIRACL Labs, London, England</organization>
            </author>
            <author initials="F." surname="Pintore" fullname="Federico Pintore">
              <organization>University of Trento, Italy</organization>
            </author>
            <date year="2017" month="May"/>
          </front>
        </reference>
        <reference anchor="BHKL13" target="https://doi.org/10.1145/2508859.2516734">
          <front>
            <title>Elligator: elliptic-curve points indistinguishable from uniform random strings</title>
            <seriesInfo name="DOI" value="10.1145/2508859.2516734"/>
            <seriesInfo name="pages" value="967-980"/>
            <seriesInfo name="In" value="Proceedings of the 2013 ACM SIGSAC Conference on Computer and Communications Security"/>
            <author initials="D.J." surname="Bernstein" fullname="Daniel J. Bernstein">
              <organization>Department of Computer Science, University of Illinois at Chicago, USA</organization>
            </author>
            <author initials="M." surname="Hamburg" fullname="Mike Hamburg">
              <organization>Cryptography Research, a division of Rambus, USA</organization>
            </author>
            <author initials="A." surname="Krasnova" fullname="Anna Krasnova">
              <organization>Privacy &amp; Identity lab, Institute for Computing and Information Sciences, Radboud University Nijmegen, The Netherlands</organization>
            </author>
            <author initials="T." surname="Lange" fullname="Tanja Lange">
              <organization>Department of Mathematics and Computer Science, Technische Universiteit Eindhoven, The Netherlands</organization>
            </author>
            <date year="2013" month="November"/>
          </front>
        </reference>
        <reference anchor="BLMP19" target="https://doi.org/10.1007/978-3-030-17656-3">
          <front>
            <title>Quantum circuits for the CSIDH: optimizing quantum evaluation of isogenies</title>
            <seriesInfo name="DOI" value="10.1007/978-3-030-17656-3"/>
            <seriesInfo name="In" value="Advances in Cryptology - EUROCRYPT 2019"/>
            <author initials="D.J." surname="Bernstein" fullname="Daniel J. Bernstein">
              <organization>Department of Computer Science, University of Illinois at Chicago, USA</organization>
            </author>
            <author initials="T." surname="Lange" fullname="Tanja Lange">
              <organization>Department of Mathematics and Computer Science, Technische Universiteit Eindhoven, The Netherlands</organization>
            </author>
            <author initials="C." surname="Martindale" fullname="Chloe Martindale">
              <organization>Department of Mathematics and Computer Science, Technische Universiteit Eindhoven, The Netherlands</organization>
            </author>
            <author initials="L." surname="Panny" fullname="Lorenz Panny">
              <organization>Department of Mathematics and Computer Science, Technische Universiteit Eindhoven, The Netherlands</organization>
            </author>
            <date year="2019"/>
          </front>
        </reference>
        <reference anchor="SS04" target="https://doi.org/10.4064/ba52-3-1">
          <front>
            <title>On equations y^2 = x^n + k in a finite field.</title>
            <seriesInfo name="DOI" value="10.4064/ba52-3-1"/>
            <seriesInfo name="pages" value="223-226"/>
            <seriesInfo name="In" value="Bulletin Polish Acad. Sci. Math. vol 52, no 3"/>
            <author initials="A." surname="Schinzel" fullname="Andrzej Schinzel">
              <organization>Department of Mathemetics, University of Warsaw</organization>
            </author>
            <author initials="M." surname="Skalba" fullname="Mariusz Skalba">
              <organization>Department of Mathematics, University of Warsaw</organization>
            </author>
            <date year="2004"/>
          </front>
        </reference>
        <reference anchor="S05" target="https://doi.org/10.4064/aa117-3-7">
          <front>
            <title>Points on elliptic curves over finite fields</title>
            <seriesInfo name="DOI" value="10.4064/aa117-3-7"/>
            <seriesInfo name="pages" value="293-301"/>
            <seriesInfo name="In" value="Acta Arithmetica, vol 117 no 3"/>
            <author initials="M." surname="Skalba" fullname="Mariusz Skalba">
              <organization>Department of Mathematics, University of Warsaw</organization>
            </author>
            <date year="2005"/>
          </front>
        </reference>
        <reference anchor="SW06" target="https://doi.org/10.1007/11792086_36">
          <front>
            <title>Construction of rational points on elliptic curves over finite fields</title>
            <seriesInfo name="DOI" value="10.1007/11792086_36"/>
            <seriesInfo name="pages" value="510-524"/>
            <seriesInfo name="In" value="Algorithmic Number Theory. ANTS 2006."/>
            <author initials="A." surname="Shallue" fullname="Andrew Shallue">
              <organization>Mathematics Department, University of Wisconsin-Madison. Madison, USA.</organization>
            </author>
            <author initials="C." surname="van de Woestijne" fullname="Christiaan van de Woestijne">
              <organization>Mathematisch Instituut, Universiteit Leiden. Leiden, The Netherlands.</organization>
            </author>
            <date year="2006"/>
          </front>
        </reference>
        <reference anchor="U07" target="https://doi.org/10.4064/ba55-2-1">
          <front>
            <title>Rational points on certain hyperelliptic curves over finite fields</title>
            <seriesInfo name="DOI" value="10.4064/ba55-2-1"/>
            <seriesInfo name="pages" value="97-104"/>
            <seriesInfo name="In" value="Bulletin Polish Acad. Sci. Math. vol 55, no 2"/>
            <author initials="M." surname="Ulas" fullname="Maciej Ulas">
              <organization>Institute of Mathematics, Jagiellonian University. Poland</organization>
            </author>
            <date year="2007"/>
          </front>
        </reference>
        <reference anchor="BCIMRT10" target="https://doi.org/10.1007/978-3-642-14623-7_13">
          <front>
            <title>Efficient Indifferentiable Hashing into Ordinary Elliptic Curves</title>
            <seriesInfo name="DOI" value="10.1007/978-3-642-14623-7_13"/>
            <seriesInfo name="pages" value="237-254"/>
            <seriesInfo name="In" value="Advances in Cryptology - CRYPTO 2010"/>
            <author initials="E." surname="Brier" fullname="Eric Brier">
              <organization>Ingenico</organization>
            </author>
            <author initials="J-S." surname="Coron" fullname="Jean-Sebastien Coron">
              <organization>Universite du Luxembourg</organization>
            </author>
            <author initials="T." surname="Icart" fullname="Thomas Icart">
              <organization>Universite du Luxembourg</organization>
            </author>
            <author initials="D." surname="Madore" fullname="David Madore">
              <organization>TELECOM-ParisTech</organization>
            </author>
            <author initials="H." surname="Randriam" fullname="Hugues Randriam">
              <organization>TELECOM-ParisTech</organization>
            </author>
            <author initials="M." surname="Tibouchi" fullname="Mehdi Tibouchi">
              <organization>Universite du Luxembourg, Ecole normale superieure</organization>
            </author>
            <date year="2010"/>
          </front>
        </reference>
        <reference anchor="W08" target="https://www.crcpress.com/9781420071467">
          <front>
            <title>Elliptic curves: Number theory and cryptography</title>
            <seriesInfo name="ISBN" value="9781420071467"/>
            <seriesInfo name="publisher" value="Chapman and Hall / CRC"/>
            <seriesInfo name="edition" value="2nd"/>
            <author initials="L.C." surname="Washington" fullname="Lawrence C. Washington">
              <organization/>
            </author>
            <date year="2008"/>
          </front>
        </reference>
        <reference anchor="C93" target="https://doi.org/10.1007/978-3-662-02945-9">
          <front>
            <title>A Course in Computational Algebraic Number Theory</title>
            <seriesInfo name="ISBN" value="9783642081422"/>
            <seriesInfo name="publisher" value="Springer-Verlag"/>
            <author initials="H." surname="Cohen" fullname="Henri Cohen">
              <organization/>
            </author>
            <date year="1993"/>
          </front>
        </reference>
        <reference anchor="CFADLNV05" target="https://www.crcpress.com/9781584885184">
          <front>
            <title>Handbook of Elliptic and Hyperelliptic Curve Cryptography</title>
            <seriesInfo name="ISBN" value="9781584885184"/>
            <seriesInfo name="publisher" value="Chapman and Hall / CRC"/>
            <author initials="H." surname="Cohen" fullname="Henri Cohen">
              <organization/>
            </author>
            <author initials="G." surname="Frey" fullname="Gerhard Frey">
              <organization/>
            </author>
            <author initials="R." surname="Avanzi" fullname="Roberto Avanzi">
              <organization/>
            </author>
            <author initials="C." surname="Doche" fullname="Christophe Doche">
              <organization/>
            </author>
            <author initials="T." surname="Lange" fullname="Tanja Lange">
              <organization/>
            </author>
            <author initials="K." surname="Nguyen" fullname="Kim Nguyen">
              <organization/>
            </author>
            <author initials="F." surname="Vercauteren" fullname="Frederik Vercauteren">
              <organization/>
            </author>
            <date year="2005"/>
          </front>
        </reference>
        <reference anchor="MOV96" target="http://cacr.uwaterloo.ca/hac/">
          <front>
            <title>Handbook of Applied Cryptography</title>
            <seriesInfo name="ISBN" value="9780849385230"/>
            <seriesInfo name="publisher" value="CRC Press"/>
            <author initials="A.J." surname="Menezes" fullname="Alfred J. Menezes">
              <organization/>
            </author>
            <author initials="P.C." surname="van Oorschot" fullname="Paul C. van Oorschot">
              <organization/>
            </author>
            <author initials="S.A." surname="Vanstone" fullname="Scott A. Vanstone">
              <organization/>
            </author>
            <date year="1996"/>
          </front>
        </reference>
        <reference anchor="WB19" target="https://eprint.iacr.org/2019/403">
          <front>
            <title>Fast and simple constant-time hashing to the BLS12-381 elliptic curve</title>
            <seriesInfo name="ePrint" value="2019/403"/>
            <seriesInfo name="DOI" value="10.13154/tches.v2019.i4.154-179"/>
            <seriesInfo name="issue" value="4"/>
            <seriesInfo name="volume" value="2019"/>
            <seriesInfo name="In" value="IACR Trans. CHES"/>
            <author initials="R.S." surname="Wahby" fullname="Riad S. Wahby">
              <organization>Stanford University</organization>
            </author>
            <author initials="D." surname="Boneh" fullname="Dan Boneh">
              <organization>Stanford University</organization>
            </author>
            <date year="2019" month="August"/>
          </front>
        </reference>
        <reference anchor="FFSTV13" target="https://doi.org/10.1090/S0025-5718-2012-02606-8">
          <front>
            <title>Indifferentiable deterministic hashing to elliptic and hyperelliptic curves</title>
            <seriesInfo name="DOI" value="10.1090/S0025-5718-2012-02606-8"/>
            <seriesInfo name="pages" value="491-512"/>
            <seriesInfo name="In" value="Math. Comp. vol 82"/>
            <author initials="R.R." surname="Farashahi" fullname="Reza R. Farashahi">
              <organization>Macquarie Universit</organization>
            </author>
            <author initials="P.A." surname="Fouque" fullname="Pierre-Alain Fouque">
              <organization>Ecole normale superieure</organization>
            </author>
            <author initials="I.E." surname="Shparlinski" fullname="Igor E. Shparlinski">
              <organization>Macquarie Universit</organization>
            </author>
            <author initials="M." surname="Tibouchi" fullname="Mehdi Tibouchi">
              <organization>Ecole normale superieure</organization>
            </author>
            <author initials="J.F." surname="Voloch" fullname="J. Felipe Voloch">
              <organization>University of Texas</organization>
            </author>
            <date year="2013"/>
          </front>
        </reference>
        <reference anchor="MRH04" target="https://doi.org/10.1007/978-3-540-24638-1_2">
          <front>
            <title>Indifferentiability, impossibility results on reductions, and applications to the random oracle methodology</title>
            <seriesInfo name="DOI" value="10.1007/978-3-540-24638-1_2"/>
            <seriesInfo name="pages" value="21-39"/>
            <seriesInfo name="In" value="TCC 2004: Theory of Cryptography"/>
            <author initials="U." surname="Maurer" fullname="Ueli Maurer">
              <organization>ETH Zurich</organization>
            </author>
            <author initials="R." surname="Renner" fullname="Renato Renner">
              <organization>ETH Zurich</organization>
            </author>
            <author initials="C." surname="Holenstein" fullname="Clemens Holenstein">
              <organization>ETH Zurich</organization>
            </author>
            <date year="2004" month="February"/>
          </front>
        </reference>
        <reference anchor="MRV99" target="https://doi.org/10.1109/SFFCS.1999.814584">
          <front>
            <title>Verifiable Random Functions</title>
            <seriesInfo name="DOI" value="10.1109/SFFCS.1999.814584"/>
            <seriesInfo name="In" value="Symposium on the Foundations of Computer Science"/>
            <author initials="S." surname="Micali" fullname="Silvio Micali">
              <organization>MIT Laboratory for Computer Science</organization>
            </author>
            <author initials="M." surname="Rabin" fullname="Michael Rabin">
              <organization>Harvard University Department of Applied Science</organization>
            </author>
            <author initials="S." surname="Vadhan" fullname="Salil Vadhan">
              <organization>MIT Laboratory for Computer Science</organization>
            </author>
            <date year="1999" month="October"/>
          </front>
        </reference>
        <reference anchor="NR97" target="https://doi.org/10.1109/SFCS.1997.646134">
          <front>
            <title>Number-theoretic constructions of efficient pseudo-random functions</title>
            <seriesInfo name="DOI" value="10.1109/SFCS.1997.646134"/>
            <seriesInfo name="In" value="Symposium on the Foundations of Computer Science"/>
            <author initials="M." surname="Naor" fullname="Moni Naor">
              <organization>Weizmann Institute</organization>
            </author>
            <author initials="O." surname="Reingold" fullname="Omer Reingold">
              <organization>Weizmann Institute</organization>
            </author>
            <date year="1997" month="October"/>
          </front>
        </reference>
        <reference anchor="S85" target="https://doi.org/10.1090/S0025-5718-1985-0777280-6">
          <front>
            <title>Elliptic Curves Over Finite Fields and the Computation of Square Roots mod p</title>
            <seriesInfo name="DOI" value="10.1090/S0025-5718-1985-0777280-6"/>
            <seriesInfo name="pages" value="483-494"/>
            <seriesInfo name="In" value="Mathematics of Computation vol 44 issue 170"/>
            <author initials="R." surname="Schoof" fullname="Rene Schoof">
              <organization/>
            </author>
            <date year="1985" month="April"/>
          </front>
        </reference>
        <reference anchor="SAGE" target="https://www.sagemath.org">
          <front>
            <title>SageMath, the Sage Mathematics Software System</title>
            <author>
              <organization>The Sage Developers</organization>
            </author>
            <date year="2019"/>
          </front>
        </reference>
        <reference anchor="LBB19" target="https://hal.inria.fr/hal-02100345/">
          <front>
            <title>A Mechanised Proof of the WireGuard Virtual Private Network Protocol</title>
            <seriesInfo name="In" value="INRIA Research Report No. 9269"/>
            <author initials="B." surname="Lipp" fullname="Benjamin Lipp">
              <organization>INRIA Paris</organization>
            </author>
            <author initials="B." surname="Blanchet" fullname="Bruno Blanchet">
              <organization>INRIA Paris</organization>
            </author>
            <author initials="K." surname="Bhargavan" fullname="Karthikeyan Bhargavan">
              <organization>INRIA Paris</organization>
            </author>
            <date year="2019" month="April"/>
          </front>
        </reference>
        <reference anchor="RCB16" target="https://doi.org/10.1007/978-3-662-49890-3_16">
          <front>
            <title>Complete addition formulas for prime order elliptic curves</title>
            <seriesInfo name="DOI" value="10.1007/978-3-662-49890-3_16"/>
            <seriesInfo name="pages" value="403-428"/>
            <seriesInfo name="In" value="Advances in Cryptology - EUROCRYPT 2016"/>
            <author initials="J." surname="Renes" fullname="Joost Renes">
              <organization>Radboud University</organization>
            </author>
            <author initials="C." surname="Costello" fullname="Craig Costello">
              <organization>Microsoft Research</organization>
            </author>
            <author initials="L." surname="Batina" fullname="Lejla Batina">
              <organization>Radboud University</organization>
            </author>
            <date year="2016" month="May"/>
          </front>
        </reference>
        <reference anchor="RSS11" target="https://doi.org/10.1007/978-3-642-20465-4_27">
          <front>
            <title>Careful with Composition: Limitations of the Indifferentiability Framework</title>
            <seriesInfo name="DOI" value="10.1007/978-3-642-20465-4_27"/>
            <seriesInfo name="pages" value="487-506"/>
            <seriesInfo name="In" value="Advances in Cryptology - EUROCRYPT 2011"/>
            <author initials="T." surname="Ristenpart" fullname="Thomas Ristenpart">
              <organization>University of Wisconsin-Madison</organization>
            </author>
            <author initials="H." surname="Shacham" fullname="Hovav Shacham">
              <organization>UC San Diego</organization>
            </author>
            <author initials="T." surname="Shrimpton" fullname="Thomas Shrimpton">
              <organization>Portland State University</organization>
            </author>
            <date year="2011" month="May"/>
          </front>
        </reference>
        <reference anchor="W19" target="https://github.com/cfrg/draft-irtf-cfrg-hash-to-curve/raw/master/doc/svdw_params.pdf">
          <front>
            <title>An explicit, generic parameterization for the Shallue--van de Woestijne map</title>
            <author initials="R.S." surname="Wahby" fullname="Riad S. Wahby">
              <organization>Stanford University</organization>
            </author>
            <date year="2019"/>
          </front>
        </reference>
        <reference anchor="p1363.2" target="https://standards.ieee.org/standard/1363_2-2008.html">
          <front>
            <title>IEEE Standard Specification for Password-Based Public-Key Cryptography Techniques</title>
            <author>
              <organization>IEEE Computer Society</organization>
            </author>
            <date year="2008" month="September"/>
          </front>
        </reference>
        <reference anchor="p1363a" target="https://standards.ieee.org/standard/1363a-2004.html">
          <front>
            <title>IEEE Standard Specifications for Public-Key Cryptography---Amendment 1: Additional Techniques</title>
            <author>
              <organization>IEEE Computer Society</organization>
            </author>
            <date year="2004" month="March"/>
          </front>
        </reference>
        <reference anchor="MT98" target="https://doi.org/10.1145/272991.272995">
          <front>
            <title>Mersenne twister: A 623-dimensionally equidistributed uniform pseudo-random number generator</title>
            <seriesInfo name="DOI" value="10.1145/272991.272995"/>
            <seriesInfo name="pages" value="3-30"/>
            <seriesInfo name="In" value="ACM Transactions on Modeling and Computer Simulation (TOMACS), Volume 8, Issue 1"/>
            <author initials="M." surname="Matsumoto">
              <organization/>
            </author>
            <author initials="T." surname="Nishimura">
              <organization/>
            </author>
            <date year="1998" month="January"/>
          </front>
        </reference>
        <reference anchor="P20" target="https://eprint.iacr.org/2020/009">
          <front>
            <title>Efficient Elliptic Curve Operations On Microcontrollers With Finite Field Extensions</title>
            <author initials="T." surname="Pornin" fullname="Thomas Pornin">
              <organization>NCC Group</organization>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="H20" target="https://eprint.iacr.org/2020/1513">
          <front>
            <title>Indifferentiable hashing from Elligator 2</title>
            <author initials="M." surname="Hamburg" fullname="Mike Hamburg">
              <organization>Rambus Inc</organization>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="I-D.irtf-cfrg-bls-signature">
          <front>
            <title>BLS Signatures</title>
            <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-bls-signature-04"/>
            <author fullname="Dan Boneh">
              <organization>Stanford University</organization>
            </author>
            <author fullname="Sergey Gorbunov">
              <organization>University of Waterloo</organization>
            </author>
            <author fullname="Riad S. Wahby">
              <organization>Stanford University</organization>
            </author>
            <author fullname="Hoeteck Wee">
              <organization>NTT Research and ENS</organization>
            </author>
            <author fullname="Zhenfei Zhang">
              <organization>Algorand</organization>
            </author>
            <date day="10" month="September" year="2020"/>
            <abstract>
              <t>   BLS is a digital signature scheme with aggregation properties.  Given
   set of signatures (signature_1, ..., signature_n) anyone can produce
   an aggregated signature.  Aggregation can also be done on secret keys
   and public keys.  Furthermore, the BLS signature scheme is
   deterministic, non-malleable, and efficient.  Its simplicity and
   cryptographic properties allows it to be useful in a variety of use-
   cases, specifically when minimal storage space or bandwidth are
   required.

              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.irtf-cfrg-vrf">
          <front>
            <title>Verifiable Random Functions (VRFs)</title>
            <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-vrf-12"/>
            <author fullname="Sharon Goldberg">
              <organization>Boston University</organization>
            </author>
            <author fullname="Leonid Reyzin">
              <organization>Boston University and Algorand</organization>
            </author>
            <author fullname="Dimitrios Papadopoulos">
              <organization>Hong Kong University of Science and Technology</organization>
            </author>
            <author fullname="Jan Vcelak">
              <organization>NS1</organization>
            </author>
            <date day="26" month="May" year="2022"/>
            <abstract>
              <t>   A Verifiable Random Function (VRF) is the public-key version of a
   keyed cryptographic hash.  Only the holder of the private key can
   compute the hash, but anyone with the public key can verify the
   correctness of the hash.  VRFs are useful for preventing enumeration
   of hash-based data structures.  This document specifies several VRF
   constructions based on RSA and Elliptic Curves that are secure in the
   cryptographic random oracle model.

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

              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.irtf-cfrg-voprf">
          <front>
            <title>Oblivious Pseudorandom Functions (OPRFs) using Prime-Order Groups</title>
            <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-voprf-09"/>
            <author fullname="Alex Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Armando Faz-Hernandez">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Nick Sullivan">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Christopher A. Wood">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <date day="8" month="February" year="2022"/>
            <abstract>
              <t>   An Oblivious Pseudorandom Function (OPRF) is a two-party protocol
   between client and server for computing the output of a Pseudorandom
   Function (PRF).  The server provides the PRF secret key, and the
   client provides the PRF input.  At the end of the protocol, the
   client learns the PRF output without learning anything about the PRF
   secret key, and the server learns neither the PRF input nor output.
   An OPRF can also satisfy a notion of 'verifiability', called a VOPRF.
   A VOPRF ensures clients can verify that the server used a specific
   private key during the execution of the protocol.  A VOPRF can also
   be partially-oblivious, called a POPRF.  A POPRF allows clients and
   servers to provide public input to the PRF computation.  This
   document specifies an OPRF, VOPRF, and POPRF instantiated within
   standard prime-order groups, including elliptic curves.

              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7693">
          <front>
            <title>The BLAKE2 Cryptographic Hash and Message Authentication Code (MAC)</title>
            <seriesInfo name="DOI" value="10.17487/RFC7693"/>
            <seriesInfo name="RFC" value="7693"/>
            <author fullname="M-J. Saarinen" initials="M-J." role="editor" surname="Saarinen">
              <organization/>
            </author>
            <author fullname="J-P. Aumasson" initials="J-P." surname="Aumasson">
              <organization/>
            </author>
            <date month="November" year="2015"/>
            <abstract>
              <t>This document describes the cryptographic hash function BLAKE2 and makes the algorithm specification and C source code conveniently available to the Internet community.  BLAKE2 comes in two main flavors: BLAKE2b is optimized for 64-bit platforms and BLAKE2s for smaller architectures.  BLAKE2 can be directly keyed, making it functionally equivalent to a Message Authentication Code (MAC).</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.irtf-cfrg-ristretto255-decaf448">
          <front>
            <title>The ristretto255 and decaf448 Groups</title>
            <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-ristretto255-decaf448-03"/>
            <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>
        </reference>
        <reference anchor="RFC2898">
          <front>
            <title>PKCS #5: Password-Based Cryptography Specification Version 2.0</title>
            <seriesInfo name="DOI" value="10.17487/RFC2898"/>
            <seriesInfo name="RFC" value="2898"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski">
              <organization/>
            </author>
            <date month="September" year="2000"/>
            <abstract>
              <t>This document provides recommendations for the implementation of password-based cryptography, covering key derivation functions, encryption schemes, message-authentication schemes, and ASN.1 syntax identifying the techniques.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC7914">
          <front>
            <title>The scrypt Password-Based Key Derivation Function</title>
            <seriesInfo name="DOI" value="10.17487/RFC7914"/>
            <seriesInfo name="RFC" value="7914"/>
            <author fullname="C. Percival" initials="C." surname="Percival">
              <organization/>
            </author>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <date month="August" year="2016"/>
            <abstract>
              <t>This document specifies the password-based key derivation function scrypt.  The function derives one or more secret keys from a secret string.  It is based on memory-hard functions, which offer added protection against attacks using custom hardware.  The document also provides an ASN.1 schema.</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="I-D.irtf-cfrg-argon2">
          <front>
            <title>Argon2 Memory-Hard Function for Password Hashing and Proof-of-Work Applications</title>
            <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-argon2-13"/>
            <author fullname="Alex Biryukov">
              <organization>University of Luxembourg</organization>
            </author>
            <author fullname="Daniel Dinu">
              <organization>University of Luxembourg</organization>
            </author>
            <author fullname="Dmitry Khovratovich">
              <organization>ABDK Consulting</organization>
            </author>
            <author fullname="Simon Josefsson">
              <organization>SJD AB</organization>
            </author>
            <date day="11" month="March" year="2021"/>
            <abstract>
              <t>This document describes the Argon2 memory-hard function for password hashing and proof-of-work applications.  We provide an implementer-oriented description with test vectors.  The purpose is to simplify adoption of Argon2 for Internet protocols.  This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.
              </t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <seriesInfo name="DOI" value="10.17487/RFC2104"/>
            <seriesInfo name="RFC" value="2104"/>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="M. Bellare" initials="M." surname="Bellare">
              <organization/>
            </author>
            <author fullname="R. Canetti" initials="R." surname="Canetti">
              <organization/>
            </author>
            <date month="February" year="1997"/>
            <abstract>
              <t>This document describes HMAC, a mechanism for message authentication using cryptographic hash functions. HMAC can be used with any iterative cryptographic hash function, e.g., MD5, SHA-1, in combination with a secret shared key.  The cryptographic strength of HMAC depends on the properties of the underlying hash function.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind</t>
            </abstract>
          </front>
        </reference>
        <reference anchor="RFC5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <seriesInfo name="DOI" value="10.17487/RFC5869"/>
            <seriesInfo name="RFC" value="5869"/>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications.  The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions.  This document is not an Internet  Standards Track specification; it is published for informational  purposes.</t>
            </abstract>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="related" numbered="true" toc="default">
      <name>Related work</name>
      <t>The problem of mapping arbitrary bit strings to elliptic curve points
has been the subject of both practical and theoretical research.
This section briefly describes the background and research results
that underly the recommendations in this document.
This section is provided for informational purposes only.</t>
      <t>A naive but generally insecure method of mapping a string msg to
a point on an elliptic curve E having n points is to first fix a point P that
generates the elliptic curve group, and a hash function Hn from bit strings
to integers less than n; then compute Hn(msg) * P, where the * operator
represents scalar multiplication. The reason this approach is insecure is
that the resulting point has a known discrete log relationship to P.
Thus, except in cases where this method is specified by the protocol,
it must not be used; doing so risks catastrophic security failures.</t>
      <t>Boneh et al. <xref target="BLS01" format="default"/> describe an encoding method they call MapToGroup,
which works roughly as follows: first, use the input string to initialize a
pseudorandom number generator, then use the generator to produce a
value x in F.
If x is the x-coordinate of a point on the elliptic curve, output that
point. Otherwise, generate a new value x in F and try again.
Since a random value x in F has probability about 1/2 of corresponding to
a point on the curve, the expected number of tries is just two.
However, the running time of this method depends on the input string,
which means that it is not safe to use in protocols sensitive to timing
side channels.</t>
      <t>Schinzel and Skalba <xref target="SS04" format="default"/> introduce a method of constructing
elliptic curve points deterministically, for a restricted class of curves
and a very small number of points.
Skalba <xref target="S05" format="default"/> generalizes this construction to more curves and more points
on those curves.
Shallue and van de Woestijne <xref target="SW06" format="default"/> further generalize and simplify
Skalba's construction, yielding concretely efficient maps to a constant
fraction of the points on almost any curve.
Fouque and Tibouchi <xref target="FT12" format="default"/> give a parameterization of this mapping
for Barreto-Naehrig pairing-friendly curves <xref target="BN05" format="default"/>.</t>
      <t>Ulas <xref target="U07" format="default"/> describes a simpler version of the Shallue-van de Woestijne map,
and Brier et al. <xref target="BCIMRT10" format="default"/> give a further simplification, which the authors
call the "simplified SWU" map.
That simplified map applies only to fields of characteristic p = 3 (mod 4);
Wahby and Boneh <xref target="WB19" format="default"/> generalize to fields of any characteristic, and
give further optimizations.</t>
      <t>Boneh and Franklin give a deterministic algorithm mapping to certain
supersingular curves over fields of characteristic p = 2 (mod 3) <xref target="BF01" format="default"/>.
Icart gives another deterministic algorithm which maps to any curve
over a field of characteristic p = 2 (mod 3) <xref target="Icart09" format="default"/>.
Several extensions and generalizations follow this work, including
<xref target="FSV09" format="default"/>, <xref target="FT10" format="default"/>, <xref target="KLR10" format="default"/>, <xref target="F11" format="default"/>, and <xref target="CK11" format="default"/>.</t>
      <t>Following the work of Farashahi <xref target="F11" format="default"/>, Fouque et al. <xref target="FJT13" format="default"/> describe a
mapping to curves over fields of characteristic p = 3 (mod 4) having a number of points
divisible by 4.  Bernstein et al. <xref target="BHKL13" format="default"/> optimize this mapping and
describe a related mapping that they call "Elligator 2," which applies to
any curve over a field of odd characteristic having a point of order 2.
This includes Curve25519 and Curve448, both of which are CFRG-recommended
curves <xref target="RFC7748" format="default"/>. Bernstein et al. <xref target="BLMP19" format="default"/> extend the Elligator 2 map
to a class of supersingular curves over fields of characteristic p = 3 (mod 4).</t>
      <t>An important caveat regarding all of the above deterministic mapping
functions is that none of them map to the entire curve, but rather to some
fraction of the points. This means that they cannot be used directly to
construct a random oracle that outputs points on the curve.</t>
      <t>Brier et al. <xref target="BCIMRT10" format="default"/> give two solutions to this problem.
The first, which Brier et al. prove applies to Icart's method,
computes f(H0(msg)) + f(H1(msg)) for two distinct hash functions
H0 and H1 from bit strings to F and a mapping f from F to the elliptic curve E.
The second, which applies to essentially all deterministic mappings but
is more costly, computes f(H0(msg)) + H2(msg) * P, for P a generator of the
elliptic curve group and H2 a hash from bit strings to integers modulo r,
the order of the elliptic curve group.
Farashahi et al. <xref target="FFSTV13" format="default"/> improve the analysis of the first method,
showing that it applies to essentially all deterministic mappings.
Tibouchi and Kim <xref target="TK17" format="default"/> further refine the analysis and describe additional
optimizations.</t>
      <t>Complementary to the problem of mapping from bit strings to elliptic curve
points, Bernstein et al. <xref target="BHKL13" format="default"/> study the problem of mapping from elliptic
curve points to uniformly random bit strings, giving solutions for a class of
curves including Montgomery and twisted Edwards curves.
Tibouchi <xref target="T14" format="default"/> and Aranha et al. <xref target="AFQTZ14" format="default"/> generalize these results.
This document does not deal with this complementary problem.</t>
    </section>
    <section anchor="appx-ristretto255" numbered="true" toc="default">
      <name>Hashing to ristretto255</name>
      <t>ristretto255 <xref target="I-D.irtf-cfrg-ristretto255-decaf448" format="default"/> provides a prime-order
group based on Curve25519 <xref target="RFC7748" format="default"/>.
This section describes hash_to_ristretto255, which implements a random-oracle
encoding to this group that has a uniform output distribution (<xref target="term-rom" format="default"/>)
and the same security properties and interface as the hash_to_curve function
(<xref target="roadmap" format="default"/>).</t>
      <t>The ristretto255 API defines a one-way map (<xref target="I-D.irtf-cfrg-ristretto255-decaf448" format="default"/>,
Section 4.3.4); this section refers to that map as ristretto255_map.</t>
      <t>The hash_to_ristretto255 function MUST be instantiated with an expand_message
function that conforms to the requirements given in <xref target="hashtofield-expand" format="default"/>.
In addition, it MUST use a domain separation tag constructed as described
in <xref target="domain-separation" format="default"/>, and all domain separation recommendations given
in <xref target="security-considerations-domain-separation" format="default"/> apply when implementing
protocols that use hash_to_ristretto255.</t>
      <sourcecode type="pseudocode">
hash_to_ristretto255(msg)

Parameters:
- DST, a domain separation tag (see discussion above).
- expand_message, a function that expands a byte string and
  domain separation tag into a uniformly random byte string
  (see discussion above).
- ristretto255_map, the one-way map from the ristretto255 API.

Input: msg, an arbitrary-length byte string.
Output: P, an element of the ristretto255 group.

Steps:
1. uniform_bytes = expand_message(msg, DST, 64)
2. P = ristretto255_map(uniform_bytes)
3. return P
</sourcecode>
      <t>Since hash_to_ristretto255 is not a hash-to-curve suite, it does not
have a Suite ID.
If a similar identifier is needed, it MUST be constructed following
the guidelines in <xref target="suiteIDformat" format="default"/>, with the following parameters:</t>
      <ul spacing="normal">
        <li>CURVE_ID: "ristretto255"</li>
        <li>HASH_ID: as described in <xref target="suiteIDformat" format="default"/></li>
        <li>MAP_ID: "R255MAP"</li>
        <li>ENC_VAR: "RO"</li>
      </ul>
      <t>For example, if expand_message is expand_message_xmd using SHA-512, the
REQUIRED identifier is:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
ristretto255_XMD:SHA-512_R255MAP_RO_
]]></artwork>
    </section>
    <section anchor="appx-decaf448" numbered="true" toc="default">
      <name>Hashing to decaf448</name>
      <t>Similar to ristretto255, decaf448 <xref target="I-D.irtf-cfrg-ristretto255-decaf448" format="default"/> provides
a prime-order group based on Curve448 <xref target="RFC7748" format="default"/>.
This section describes hash_to_decaf448, which implements a random-oracle
encoding to this group that has a uniform output distribution (<xref target="term-rom" format="default"/>)
and the same security properties and interface as the hash_to_curve function
(<xref target="roadmap" format="default"/>).</t>
      <t>The decaf448 API defines a one-way map (<xref target="I-D.irtf-cfrg-ristretto255-decaf448" format="default"/>,
Section 5.3.4); this section refers to that map as decaf448_map.</t>
      <t>The hash_to_decaf448 function MUST be instantiated with an expand_message
function that conforms to the requirements given in <xref target="hashtofield-expand" format="default"/>.
In addition, it MUST use a domain separation tag constructed as described
in <xref target="domain-separation" format="default"/>, and all domain separation recommendations given
in <xref target="security-considerations-domain-separation" format="default"/> apply when implementing
protocols that use hash_to_decaf448.</t>
      <sourcecode type="pseudocode">
hash_to_decaf448(msg)

Parameters:
- DST, a domain separation tag (see discussion above).
- expand_message, a function that expands a byte string and
  domain separation tag into a uniformly random byte string
  (see discussion above).
- decaf448_map, the one-way map from the decaf448 API.

Input: msg, an arbitrary-length byte string.
Output: P, an element of the decaf448 group.

Steps:
1. uniform_bytes = expand_message(msg, DST, 112)
2. P = decaf448_map(uniform_bytes)
3. return P
</sourcecode>
      <t>Since hash_to_decaf448 is not a hash-to-curve suite, it does not
have a Suite ID. If a similar identifier is needed, it MUST be constructed
following the guidelines in <xref target="suiteIDformat" format="default"/>, with the following parameters:</t>
      <ul spacing="normal">
        <li>CURVE_ID: "decaf448"</li>
        <li>HASH_ID: as described in <xref target="suiteIDformat" format="default"/></li>
        <li>MAP_ID: "D448MAP"</li>
        <li>ENC_VAR: "RO"</li>
      </ul>
      <t>For example, if expand_message is expand_message_xof using SHAKE256, the
REQUIRED identifier is:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
decaf448_XOF:SHAKE256_D448MAP_RO_
]]></artwork>
    </section>
    <section anchor="appx-rational-map" numbered="true" toc="default">
      <name>Rational maps</name>
      <t>This section gives rational maps that can be used when hashing to
twisted Edwards or Montgomery curves.</t>
      <t>Given a twisted Edwards curve, <xref target="appx-rational-map-edw" format="default"/>
shows how to derive a corresponding Montgomery
curve and how to map from that curve to the twisted Edwards curve.
This mapping may be used when hashing to twisted Edwards curves
as described in <xref target="twisted-edwards" format="default"/>.</t>
      <t>Given a Montgomery curve, <xref target="appx-rational-map-mont" format="default"/> shows
how to derive a corresponding Weierstrass curve and how to map from that
curve to the Montgomery curve.
This mapping can be used to hash to Montgomery or twisted Edwards curves
via the Shallue-van de Woestijne (<xref target="svdw" format="default"/>) or Simplified SWU (<xref target="simple-swu" format="default"/>)
method, as follows:</t>
      <ul spacing="normal">
        <li>For Montgomery curves, first map to the Weierstrass curve, then convert
to Montgomery coordinates via the mapping.</li>
        <li>For twisted Edwards curves, compose the Weierstrass to Montgomery mapping
with the Montgomery to twisted Edwards mapping
(<xref target="appx-rational-map-edw" format="default"/>) to obtain a Weierstrass curve and a mapping
to the target twisted Edwards curve.
Map to this Weierstrass curve, then convert to Edwards coordinates
via the mapping.</li>
      </ul>
      <section anchor="appx-rational-map-edw" numbered="true" toc="default">
        <name>Generic Montgomery to twisted Edwards map</name>
        <t>This section gives a generic birational map between twisted Edwards
and Montgomery curves.</t>
        <t>The map in this section is a simplified version of the map given in
<xref target="BBJLP08" format="default"/>, Theorem 3.2.
Specifically, this section's map handles exceptional cases in a
simplified way that is geared towards hashing to a twisted Edwards
curve's prime-order subgroup.</t>
        <t>The twisted Edwards curve</t>
        <sourcecode type="pseudocode">
    a * v^2 + w^2 = 1 + d * v^2 * w^2
</sourcecode>
        <t>is birationally equivalent to the Montgomery curve</t>
        <sourcecode type="pseudocode">
    K * t^2 = s^3 + J * s^2 + s
</sourcecode>
        <t>which has the form required by the Elligator 2 mapping of <xref target="elligator2" format="default"/>.
The coefficients of the Montgomery curve are</t>
        <ul spacing="normal">
          <li>J = 2 * (a + d) / (a - d)</li>
          <li>K = 4 / (a - d)</li>
        </ul>
        <t>The rational map from the point (s, t) on the above Montgomery curve
to the point (v, w) on the twisted Edwards curve is given by</t>
        <ul spacing="normal">
          <li>v = s / t</li>
          <li>w = (s - 1) / (s + 1)</li>
        </ul>
        <t>This mapping is undefined when t == 0 or s == -1, i.e., when
the denominator of either of the above rational functions is zero.
Implementations MUST detect exceptional cases and return the value
(v, w) = (0, 1), which is the identity point on all twisted Edwards curves.</t>
        <t>The following straight-line implementation of the above rational map
handles the exceptional cases.</t>
        <sourcecode type="pseudocode">
edw_to_monty_generic(s, t)

Input: (s, t), a point on the curve K * t^2 = s^3 + J * s^2 + s.
Output: (v, w), a point on an equivalent twisted Edwards curve.

1. tv1 = s + 1
2. tv2 = tv1 * t        # (s + 1) * t
3. tv2 = inv0(tv2)      # 1 / ((s + 1) * t)
4.   v = tv2 * tv1      # 1 / t
5.   v = v * s          # s / t
6.   w = tv2 * t        # 1 / (s + 1)
7. tv1 = s - 1
8.   w = w * tv1        # (s - 1) / (s + 1)
9.   e = tv2 == 0
10.  w = CMOV(w, 1, e)  # handle exceptional case
11. return (v, w)
</sourcecode>
        <t>For completeness, we also give the inverse relations.
(Note that this map is not required when hashing to twisted Edwards curves.)
The coefficients of the twisted Edwards curve corresponding to
the above Montgomery curve are</t>
        <ul spacing="normal">
          <li>a = (J + 2) / K</li>
          <li>d = (J - 2) / K</li>
        </ul>
        <t>The rational map from the point (v, w) on the twisted Edwards
curve to the point (s, t) on the Montgomery curve is given by</t>
        <ul spacing="normal">
          <li>s = (1 + w) / (1 - w)</li>
          <li>t = (1 + w) / (v * (1 - w))</li>
        </ul>
        <t>The mapping is undefined when v == 0 or w == 1.
When the goal is to map into the prime-order subgroup of the Montgomery
curve, it suffices to return the identity point on the Montgomery curve
in the exceptional cases.</t>
      </section>
      <section anchor="appx-rational-map-mont" numbered="true" toc="default">
        <name>Weierstrass to Montgomery map</name>
        <t>The rational map from the point (s, t) on the Montgomery curve</t>
        <sourcecode type="pseudocode">
    K * t^2 = s^3 + J * s^2 + s
</sourcecode>
        <t>to the point (x, y) on the equivalent Weierstrass curve</t>
        <sourcecode type="pseudocode">
    y^2 = x^3 + A * x + B
</sourcecode>
        <t>is given by:</t>
        <ul spacing="normal">
          <li>A = (3 - J^2) / (3 * K^2)</li>
          <li>B = (2 * J^3 - 9 * J) / (27 * K^3)</li>
          <li>x = (3 * s + J) / (3 * K)</li>
          <li>y = t / K</li>
        </ul>
        <t>The inverse map, from the point (x, y) to the point (s, t), is given by</t>
        <ul spacing="normal">
          <li>s = (3 * K * x - J) / 3</li>
          <li>t = y * K</li>
        </ul>
        <t>This mapping can be used to apply the Shallue-van de Woestijne
(<xref target="svdw" format="default"/>) or Simplified SWU (<xref target="simple-swu" format="default"/>) method to
Montgomery curves.</t>
      </section>
    </section>
    <section anchor="appx-iso" numbered="true" toc="default">
      <name>Isogeny maps for suites</name>
      <t>This section specifies the isogeny maps for the secp256k1 and BLS12-381
suites listed in <xref target="suites" format="default"/>.</t>
      <t>These maps are given in terms of affine coordinates.
Wahby and Boneh (<xref target="WB19" format="default"/>, Section 4.3) show how to evaluate these maps
in a projective coordinate system (<xref target="projective-coords" format="default"/>), which avoids
modular inversions.</t>
      <t>Refer to the draft repository <xref target="hash2curve-repo" format="default"/> for a Sage <xref target="SAGE" format="default"/> script
that constructs these isogenies.</t>
      <section anchor="appx-iso-secp256k1" numbered="true" toc="default">
        <name>3-isogeny map for secp256k1</name>
        <t>This section specifies the isogeny map for the secp256k1 suite listed in <xref target="suites-secp256k1" format="default"/>.</t>
        <t>The 3-isogeny map from (x', y') on E' to (x, y) on E is given by the following rational functions:</t>
        <ul spacing="normal">
          <li>
            <t>x = x_num / x_den, where
            </t>
            <ul spacing="normal">
              <li>x_num = k_(1,3) * x'^3 + k_(1,2) * x'^2 + k_(1,1) * x' + k_(1,0)</li>
              <li>x_den = x'^2 + k_(2,1) * x' + k_(2,0)</li>
            </ul>
          </li>
          <li>
            <t>y = y' * y_num / y_den, where
            </t>
            <ul spacing="normal">
              <li>y_num = k_(3,3) * x'^3 + k_(3,2) * x'^2 + k_(3,1) * x' + k_(3,0)</li>
              <li>y_den = x'^3 + k_(4,2) * x'^2 + k_(4,1) * x' + k_(4,0)</li>
            </ul>
          </li>
        </ul>
        <t>The constants used to compute x_num are as follows:</t>
        <ul spacing="normal">
          <li>k_(1,0) = 0x8e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38daaaaa8c7</li>
          <li>k_(1,1) = 0x7d3d4c80bc321d5b9f315cea7fd44c5d595d2fc0bf63b92dfff1044f17c6581</li>
          <li>k_(1,2) = 0x534c328d23f234e6e2a413deca25caece4506144037c40314ecbd0b53d9dd262</li>
          <li>k_(1,3) = 0x8e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38e38daaaaa88c</li>
        </ul>
        <t>The constants used to compute x_den are as follows:</t>
        <ul spacing="normal">
          <li>k_(2,0) = 0xd35771193d94918a9ca34ccbb7b640dd86cd409542f8487d9fe6b745781eb49b</li>
          <li>k_(2,1) = 0xedadc6f64383dc1df7c4b2d51b54225406d36b641f5e41bbc52a56612a8c6d14</li>
        </ul>
        <t>The constants used to compute y_num are as follows:</t>
        <ul spacing="normal">
          <li>k_(3,0) = 0x4bda12f684bda12f684bda12f684bda12f684bda12f684bda12f684b8e38e23c</li>
          <li>k_(3,1) = 0xc75e0c32d5cb7c0fa9d0a54b12a0a6d5647ab046d686da6fdffc90fc201d71a3</li>
          <li>k_(3,2) = 0x29a6194691f91a73715209ef6512e576722830a201be2018a765e85a9ecee931</li>
          <li>k_(3,3) = 0x2f684bda12f684bda12f684bda12f684bda12f684bda12f684bda12f38e38d84</li>
        </ul>
        <t>The constants used to compute y_den are as follows:</t>
        <ul spacing="normal">
          <li>k_(4,0) = 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffff93b</li>
          <li>k_(4,1) = 0x7a06534bb8bdb49fd5e9e6632722c2989467c1bfc8e8d978dfb425d2685c2573</li>
          <li>k_(4,2) = 0x6484aa716545ca2cf3a70c3fa8fe337e0a3d21162f0d6299a7bf8192bfd2a76f</li>
        </ul>
      </section>
      <section anchor="appx-iso-bls12381-g1" numbered="true" toc="default">
        <name>11-isogeny map for BLS12-381 G1</name>
        <t>The 11-isogeny map from (x', y') on E' to (x, y) on E is given by the following rational functions:</t>
        <ul spacing="normal">
          <li>
            <t>x = x_num / x_den, where
            </t>
            <ul spacing="normal">
              <li>x_num = k_(1,11) * x'^11 + k_(1,10) * x'^10 + k_(1,9) * x'^9 + ... + k_(1,0)</li>
              <li>x_den = x'^10 + k_(2,9) * x'^9 + k_(2,8) * x'^8 + ... + k_(2,0)</li>
            </ul>
          </li>
          <li>
            <t>y = y' * y_num / y_den, where
            </t>
            <ul spacing="normal">
              <li>y_num = k_(3,15) * x'^15 + k_(3,14) * x'^14 + k_(3,13) * x'^13 + ... + k_(3,0)</li>
              <li>y_den = x'^15 + k_(4,14) * x'^14 + k_(4,13) * x'^13 + ... + k_(4,0)</li>
            </ul>
          </li>
        </ul>
        <t>The constants used to compute x_num are as follows:</t>
        <ul spacing="normal">
          <li>k_(1,0) = 0x11a05f2b1e833340b809101dd99815856b303e88a2d7005ff2627b56cdb4e2c85610c2d5f2e62d6eaeac1662734649b7</li>
          <li>k_(1,1) = 0x17294ed3e943ab2f0588bab22147a81c7c17e75b2f6a8417f565e33c70d1e86b4838f2a6f318c356e834eef1b3cb83bb</li>
          <li>k_(1,2) = 0xd54005db97678ec1d1048c5d10a9a1bce032473295983e56878e501ec68e25c958c3e3d2a09729fe0179f9dac9edcb0</li>
          <li>k_(1,3) = 0x1778e7166fcc6db74e0609d307e55412d7f5e4656a8dbf25f1b33289f1b330835336e25ce3107193c5b388641d9b6861</li>
          <li>k_(1,4) = 0xe99726a3199f4436642b4b3e4118e5499db995a1257fb3f086eeb65982fac18985a286f301e77c451154ce9ac8895d9</li>
          <li>k_(1,5) = 0x1630c3250d7313ff01d1201bf7a74ab5db3cb17dd952799b9ed3ab9097e68f90a0870d2dcae73d19cd13c1c66f652983</li>
          <li>k_(1,6) = 0xd6ed6553fe44d296a3726c38ae652bfb11586264f0f8ce19008e218f9c86b2a8da25128c1052ecaddd7f225a139ed84</li>
          <li>k_(1,7) = 0x17b81e7701abdbe2e8743884d1117e53356de5ab275b4db1a682c62ef0f2753339b7c8f8c8f475af9ccb5618e3f0c88e</li>
          <li>k_(1,8) = 0x80d3cf1f9a78fc47b90b33563be990dc43b756ce79f5574a2c596c928c5d1de4fa295f296b74e956d71986a8497e317</li>
          <li>k_(1,9) = 0x169b1f8e1bcfa7c42e0c37515d138f22dd2ecb803a0c5c99676314baf4bb1b7fa3190b2edc0327797f241067be390c9e</li>
          <li>k_(1,10) = 0x10321da079ce07e272d8ec09d2565b0dfa7dccdde6787f96d50af36003b14866f69b771f8c285decca67df3f1605fb7b</li>
          <li>k_(1,11) = 0x6e08c248e260e70bd1e962381edee3d31d79d7e22c837bc23c0bf1bc24c6b68c24b1b80b64d391fa9c8ba2e8ba2d229</li>
        </ul>
        <t>The constants used to compute x_den are as follows:</t>
        <ul spacing="normal">
          <li>k_(2,0) = 0x8ca8d548cff19ae18b2e62f4bd3fa6f01d5ef4ba35b48ba9c9588617fc8ac62b558d681be343df8993cf9fa40d21b1c</li>
          <li>k_(2,1) = 0x12561a5deb559c4348b4711298e536367041e8ca0cf0800c0126c2588c48bf5713daa8846cb026e9e5c8276ec82b3bff</li>
          <li>k_(2,2) = 0xb2962fe57a3225e8137e629bff2991f6f89416f5a718cd1fca64e00b11aceacd6a3d0967c94fedcfcc239ba5cb83e19</li>
          <li>k_(2,3) = 0x3425581a58ae2fec83aafef7c40eb545b08243f16b1655154cca8abc28d6fd04976d5243eecf5c4130de8938dc62cd8</li>
          <li>k_(2,4) = 0x13a8e162022914a80a6f1d5f43e7a07dffdfc759a12062bb8d6b44e833b306da9bd29ba81f35781d539d395b3532a21e</li>
          <li>k_(2,5) = 0xe7355f8e4e667b955390f7f0506c6e9395735e9ce9cad4d0a43bcef24b8982f7400d24bc4228f11c02df9a29f6304a5</li>
          <li>k_(2,6) = 0x772caacf16936190f3e0c63e0596721570f5799af53a1894e2e073062aede9cea73b3538f0de06cec2574496ee84a3a</li>
          <li>k_(2,7) = 0x14a7ac2a9d64a8b230b3f5b074cf01996e7f63c21bca68a81996e1cdf9822c580fa5b9489d11e2d311f7d99bbdcc5a5e</li>
          <li>k_(2,8) = 0xa10ecf6ada54f825e920b3dafc7a3cce07f8d1d7161366b74100da67f39883503826692abba43704776ec3a79a1d641</li>
          <li>k_(2,9) = 0x95fc13ab9e92ad4476d6e3eb3a56680f682b4ee96f7d03776df533978f31c1593174e4b4b7865002d6384d168ecdd0a</li>
        </ul>
        <t>The constants used to compute y_num are as follows:</t>
        <ul spacing="normal">
          <li>k_(3,0) = 0x90d97c81ba24ee0259d1f094980dcfa11ad138e48a869522b52af6c956543d3cd0c7aee9b3ba3c2be9845719707bb33</li>
          <li>k_(3,1) = 0x134996a104ee5811d51036d776fb46831223e96c254f383d0f906343eb67ad34d6c56711962fa8bfe097e75a2e41c696</li>
          <li>k_(3,2) = 0xcc786baa966e66f4a384c86a3b49942552e2d658a31ce2c344be4b91400da7d26d521628b00523b8dfe240c72de1f6</li>
          <li>k_(3,3) = 0x1f86376e8981c217898751ad8746757d42aa7b90eeb791c09e4a3ec03251cf9de405aba9ec61deca6355c77b0e5f4cb</li>
          <li>k_(3,4) = 0x8cc03fdefe0ff135caf4fe2a21529c4195536fbe3ce50b879833fd221351adc2ee7f8dc099040a841b6daecf2e8fedb</li>
          <li>k_(3,5) = 0x16603fca40634b6a2211e11db8f0a6a074a7d0d4afadb7bd76505c3d3ad5544e203f6326c95a807299b23ab13633a5f0</li>
          <li>k_(3,6) = 0x4ab0b9bcfac1bbcb2c977d027796b3ce75bb8ca2be184cb5231413c4d634f3747a87ac2460f415ec961f8855fe9d6f2</li>
          <li>k_(3,7) = 0x987c8d5333ab86fde9926bd2ca6c674170a05bfe3bdd81ffd038da6c26c842642f64550fedfe935a15e4ca31870fb29</li>
          <li>k_(3,8) = 0x9fc4018bd96684be88c9e221e4da1bb8f3abd16679dc26c1e8b6e6a1f20cabe69d65201c78607a360370e577bdba587</li>
          <li>k_(3,9) = 0xe1bba7a1186bdb5223abde7ada14a23c42a0ca7915af6fe06985e7ed1e4d43b9b3f7055dd4eba6f2bafaaebca731c30</li>
          <li>k_(3,10) = 0x19713e47937cd1be0dfd0b8f1d43fb93cd2fcbcb6caf493fd1183e416389e61031bf3a5cce3fbafce813711ad011c132</li>
          <li>k_(3,11) = 0x18b46a908f36f6deb918c143fed2edcc523559b8aaf0c2462e6bfe7f911f643249d9cdf41b44d606ce07c8a4d0074d8e</li>
          <li>k_(3,12) = 0xb182cac101b9399d155096004f53f447aa7b12a3426b08ec02710e807b4633f06c851c1919211f20d4c04f00b971ef8</li>
          <li>k_(3,13) = 0x245a394ad1eca9b72fc00ae7be315dc757b3b080d4c158013e6632d3c40659cc6cf90ad1c232a6442d9d3f5db980133</li>
          <li>k_(3,14) = 0x5c129645e44cf1102a159f748c4a3fc5e673d81d7e86568d9ab0f5d396a7ce46ba1049b6579afb7866b1e715475224b</li>
          <li>k_(3,15) = 0x15e6be4e990f03ce4ea50b3b42df2eb5cb181d8f84965a3957add4fa95af01b2b665027efec01c7704b456be69c8b604</li>
        </ul>
        <t>The constants used to compute y_den are as follows:</t>
        <ul spacing="normal">
          <li>k_(4,0) = 0x16112c4c3a9c98b252181140fad0eae9601a6de578980be6eec3232b5be72e7a07f3688ef60c206d01479253b03663c1</li>
          <li>k_(4,1) = 0x1962d75c2381201e1a0cbd6c43c348b885c84ff731c4d59ca4a10356f453e01f78a4260763529e3532f6102c2e49a03d</li>
          <li>k_(4,2) = 0x58df3306640da276faaae7d6e8eb15778c4855551ae7f310c35a5dd279cd2eca6757cd636f96f891e2538b53dbf67f2</li>
          <li>k_(4,3) = 0x16b7d288798e5395f20d23bf89edb4d1d115c5dbddbcd30e123da489e726af41727364f2c28297ada8d26d98445f5416</li>
          <li>k_(4,4) = 0xbe0e079545f43e4b00cc912f8228ddcc6d19c9f0f69bbb0542eda0fc9dec916a20b15dc0fd2ededda39142311a5001d</li>
          <li>k_(4,5) = 0x8d9e5297186db2d9fb266eaac783182b70152c65550d881c5ecd87b6f0f5a6449f38db9dfa9cce202c6477faaf9b7ac</li>
          <li>k_(4,6) = 0x166007c08a99db2fc3ba8734ace9824b5eecfdfa8d0cf8ef5dd365bc400a0051d5fa9c01a58b1fb93d1a1399126a775c</li>
          <li>k_(4,7) = 0x16a3ef08be3ea7ea03bcddfabba6ff6ee5a4375efa1f4fd7feb34fd206357132b920f5b00801dee460ee415a15812ed9</li>
          <li>k_(4,8) = 0x1866c8ed336c61231a1be54fd1d74cc4f9fb0ce4c6af5920abc5750c4bf39b4852cfe2f7bb9248836b233d9d55535d4a</li>
          <li>k_(4,9) = 0x167a55cda70a6e1cea820597d94a84903216f763e13d87bb5308592e7ea7d4fbc7385ea3d529b35e346ef48bb8913f55</li>
          <li>k_(4,10) = 0x4d2f259eea405bd48f010a01ad2911d9c6dd039bb61a6290e591b36e636a5c871a5c29f4f83060400f8b49cba8f6aa8</li>
          <li>k_(4,11) = 0xaccbb67481d033ff5852c1e48c50c477f94ff8aefce42d28c0f9a88cea7913516f968986f7ebbea9684b529e2561092</li>
          <li>k_(4,12) = 0xad6b9514c767fe3c3613144b45f1496543346d98adf02267d5ceef9a00d9b8693000763e3b90ac11e99b138573345cc</li>
          <li>k_(4,13) = 0x2660400eb2e4f3b628bdd0d53cd76f2bf565b94e72927c1cb748df27942480e420517bd8714cc80d1fadc1326ed06f7</li>
          <li>k_(4,14) = 0xe0fa1d816ddc03e6b24255e0d7819c171c40f65e273b853324efcd6356caa205ca2f570f13497804415473a1d634b8f</li>
        </ul>
      </section>
      <section anchor="appx-iso-bls12381-g2" numbered="true" toc="default">
        <name>3-isogeny map for BLS12-381 G2</name>
        <t>The 3-isogeny map from (x', y') on E' to (x, y) on E is given by the following rational functions:</t>
        <ul spacing="normal">
          <li>
            <t>x = x_num / x_den, where
            </t>
            <ul spacing="normal">
              <li>x_num = k_(1,3) * x'^3 + k_(1,2) * x'^2 + k_(1,1) * x' + k_(1,0)</li>
              <li>x_den = x'^2 + k_(2,1) * x' + k_(2,0)</li>
            </ul>
          </li>
          <li>
            <t>y = y' * y_num / y_den, where
            </t>
            <ul spacing="normal">
              <li>y_num = k_(3,3) * x'^3 + k_(3,2) * x'^2 + k_(3,1) * x' + k_(3,0)</li>
              <li>y_den = x'^3 + k_(4,2) * x'^2 + k_(4,1) * x' + k_(4,0)</li>
            </ul>
          </li>
        </ul>
        <t>The constants used to compute x_num are as follows:</t>
        <ul spacing="normal">
          <li>k_(1,0) = 0x5c759507e8e333ebb5b7a9a47d7ed8532c52d39fd3a042a88b58423c50ae15d5c2638e343d9c71c6238aaaaaaaa97d6 + 0x5c759507e8e333ebb5b7a9a47d7ed8532c52d39fd3a042a88b58423c50ae15d5c2638e343d9c71c6238aaaaaaaa97d6 * I</li>
          <li>k_(1,1) = 0x11560bf17baa99bc32126fced787c88f984f87adf7ae0c7f9a208c6b4f20a4181472aaa9cb8d555526a9ffffffffc71a * I</li>
          <li>k_(1,2) = 0x11560bf17baa99bc32126fced787c88f984f87adf7ae0c7f9a208c6b4f20a4181472aaa9cb8d555526a9ffffffffc71e + 0x8ab05f8bdd54cde190937e76bc3e447cc27c3d6fbd7063fcd104635a790520c0a395554e5c6aaaa9354ffffffffe38d * I</li>
          <li>k_(1,3) = 0x171d6541fa38ccfaed6dea691f5fb614cb14b4e7f4e810aa22d6108f142b85757098e38d0f671c7188e2aaaaaaaa5ed1</li>
        </ul>
        <t>The constants used to compute x_den are as follows:</t>
        <ul spacing="normal">
          <li>k_(2,0) = 0x1a0111ea397fe69a4b1ba7b6434bacd764774b84f38512bf6730d2a0f6b0f6241eabfffeb153ffffb9feffffffffaa63 * I</li>
          <li>k_(2,1) = 0xc + 0x1a0111ea397fe69a4b1ba7b6434bacd764774b84f38512bf6730d2a0f6b0f6241eabfffeb153ffffb9feffffffffaa9f * I</li>
        </ul>
        <t>The constants used to compute y_num are as follows:</t>
        <ul spacing="normal">
          <li>k_(3,0) = 0x1530477c7ab4113b59a4c18b076d11930f7da5d4a07f649bf54439d87d27e500fc8c25ebf8c92f6812cfc71c71c6d706 + 0x1530477c7ab4113b59a4c18b076d11930f7da5d4a07f649bf54439d87d27e500fc8c25ebf8c92f6812cfc71c71c6d706 * I</li>
          <li>k_(3,1) = 0x5c759507e8e333ebb5b7a9a47d7ed8532c52d39fd3a042a88b58423c50ae15d5c2638e343d9c71c6238aaaaaaaa97be * I</li>
          <li>k_(3,2) = 0x11560bf17baa99bc32126fced787c88f984f87adf7ae0c7f9a208c6b4f20a4181472aaa9cb8d555526a9ffffffffc71c + 0x8ab05f8bdd54cde190937e76bc3e447cc27c3d6fbd7063fcd104635a790520c0a395554e5c6aaaa9354ffffffffe38f * I</li>
          <li>k_(3,3) = 0x124c9ad43b6cf79bfbf7043de3811ad0761b0f37a1e26286b0e977c69aa274524e79097a56dc4bd9e1b371c71c718b10</li>
        </ul>
        <t>The constants used to compute y_den are as follows:</t>
        <ul spacing="normal">
          <li>k_(4,0) = 0x1a0111ea397fe69a4b1ba7b6434bacd764774b84f38512bf6730d2a0f6b0f6241eabfffeb153ffffb9feffffffffa8fb + 0x1a0111ea397fe69a4b1ba7b6434bacd764774b84f38512bf6730d2a0f6b0f6241eabfffeb153ffffb9feffffffffa8fb * I</li>
          <li>k_(4,1) = 0x1a0111ea397fe69a4b1ba7b6434bacd764774b84f38512bf6730d2a0f6b0f6241eabfffeb153ffffb9feffffffffa9d3 * I</li>
          <li>k_(4,2) = 0x12 + 0x1a0111ea397fe69a4b1ba7b6434bacd764774b84f38512bf6730d2a0f6b0f6241eabfffeb153ffffb9feffffffffaa99 * I</li>
        </ul>
      </section>
    </section>
    <section anchor="straightline" numbered="true" toc="default">
      <name>Straight-line implementations of deterministic mappings</name>
      <t>This section gives straight-line implementations of the mappings of <xref target="mappings" format="default"/>.
These implementations are generic, i.e., they are defined for any curve and field.
<xref target="samplecode" format="default"/> gives further implementations that are optimized for specific
classes of curves and fields.</t>
      <section anchor="straightline-svdw" numbered="true" toc="default">
        <name>Shallue-van de Woestijne method</name>
        <t>This section gives a straight-line implementation of the Shallue and van
de Woestijne method for any Weierstrass curve of the form given in
<xref target="weierstrass" format="default"/>.
See <xref target="svdw" format="default"/> for information on the constants used in this mapping.</t>
        <t>Note that the constant c3 below MUST be chosen such that sgn0(c3) = 0.
In other words, if the square-root computation returns a value cx such that
sgn0(cx) = 1, set c3 = -cx; otherwise, set c3 = cx.</t>
        <sourcecode type="pseudocode">
map_to_curve_svdw(u)

Input: u, an element of F.
Output: (x, y), a point on E.

Constants:
1. c1 = g(Z)
2. c2 = -Z / 2
3. c3 = sqrt(-g(Z) * (3 * Z^2 + 4 * A))     # sgn0(c3) MUST equal 0
4. c4 = -4 * g(Z) / (3 * Z^2 + 4 * A)

Steps:
1.  tv1 = u^2
2.  tv1 = tv1 * c1
3.  tv2 = 1 + tv1
4.  tv1 = 1 - tv1
5.  tv3 = tv1 * tv2
6.  tv3 = inv0(tv3)
7.  tv4 = u * tv1
8.  tv4 = tv4 * tv3
9.  tv4 = tv4 * c3
10.  x1 = c2 - tv4
11. gx1 = x1^2
12. gx1 = gx1 + A
13. gx1 = gx1 * x1
14. gx1 = gx1 + B
15.  e1 = is_square(gx1)
16.  x2 = c2 + tv4
17. gx2 = x2^2
18. gx2 = gx2 + A
19. gx2 = gx2 * x2
20. gx2 = gx2 + B
21.  e2 = is_square(gx2) AND NOT e1   # Avoid short-circuit logic ops
22.  x3 = tv2^2
23.  x3 = x3 * tv3
24.  x3 = x3^2
25.  x3 = x3 * c4
26.  x3 = x3 + Z
27.   x = CMOV(x3, x1, e1)   # x = x1 if gx1 is square, else x = x3
28.   x = CMOV(x, x2, e2)    # x = x2 if gx2 is square and gx1 is not
29.  gx = x^2
30.  gx = gx + A
31.  gx = gx * x
32.  gx = gx + B
33.   y = sqrt(gx)
34.  e3 = sgn0(u) == sgn0(y)
35.   y = CMOV(-y, y, e3)       # Select correct sign of y
36. return (x, y)
</sourcecode>
      </section>
      <section anchor="straightline-sswu" numbered="true" toc="default">
        <name>Simplified SWU method</name>
        <t>This section gives a straight-line implementation of the simplified
SWU method for any Weierstrass curve of the form given in <xref target="weierstrass" format="default"/>.
See <xref target="simple-swu" format="default"/> for information on the constants used in this mapping.</t>
        <t>This optimized, straight-line procedure applies to any base field.
The sqrt_ratio subroutine is defined in <xref target="straightline-sswu-sqrt-ratio" format="default"/>.</t>
        <sourcecode type="pseudocode">
map_to_curve_simple_swu(u)

Input: u, an element of F.
Output: (x, y), a point on E.

Steps:
1.  tv1 = u^2
2.  tv1 = Z * tv1
3.  tv2 = tv1^2
4.  tv2 = tv2 + tv1
5.  tv3 = tv2 + 1
6.  tv3 = B * tv3
7.  tv4 = CMOV(Z, -tv2, tv2 != 0)
8.  tv4 = A * tv4
9.  tv2 = tv3^2
10. tv6 = tv4^2
11. tv5 = A * tv6
12. tv2 = tv2 + tv5
13. tv2 = tv2 * tv3
14. tv6 = tv6 * tv4
15. tv5 = B * tv6
16. tv2 = tv2 + tv5
17.   x = tv1 * tv3
18. (is_gx1_square, y1) = sqrt_ratio(tv2, tv6)
19.   y = tv1 * u
20.   y = y * y1
21.   x = CMOV(x, tv3, is_gx1_square)
22.   y = CMOV(y, y1, is_gx1_square)
23.  e1 = sgn0(u) == sgn0(y)
24.   y = CMOV(-y, y, e1)
25.   x = x / tv4
26. return (x, y)
</sourcecode>
        <section anchor="straightline-sswu-sqrt-ratio" numbered="true" toc="default">
          <name>sqrt_ratio subroutines</name>
          <t>This section defines three variants of the sqrt_ratio subroutine used by the
above procedure.
The first variant can be used with any field; the others are optimized versions
for specific fields.</t>
          <t>The routines given in this section depend on the constant Z from the simplified SWU map.
For correctness, sqrt_ratio and map_to_curve_simple_swu MUST use the same value for Z.</t>
          <section anchor="sqrtratio-for-any-field" numbered="true" toc="default">
            <name>sqrt_ratio for any field</name>
            <sourcecode type="pseudocode">
sqrt_ratio(u, v)

Parameters:
- F, a finite field of characteristic p and order q = p^m.
- Z, the constant from the simplified SWU map.

Input: u and v, elements of F, where v != 0.
Output: (b, y), where
  b = True and y = sqrt(u / v) if (u / v) is square in F, and
  b = False and y = sqrt(Z * (u / v)) otherwise.

Constants:
1. c1, the largest integer such that 2^c1 divides q - 1.
2. c2 = (q - 1) / (2^c1)        # Integer arithmetic
3. c3 = (c2 - 1) / 2            # Integer arithmetic
4. c4 = 2^c1 - 1                # Integer arithmetic
5. c5 = 2^(c1 - 1)              # Integer arithmetic
6. c6 = Z^c2
7. c7 = Z^((c2 + 1) / 2)

Procedure:
1. tv1 = c6
2. tv2 = v^c4
3. tv3 = tv2^2
4. tv3 = tv3 * v
5. tv5 = u * tv3
6. tv5 = tv5^c3
7. tv5 = tv5 * tv2
8. tv2 = tv5 * v
9. tv3 = tv5 * u
10. tv4 = tv3 * tv2
11. tv5 = tv4^c5
12. isQR = tv5 == 1
13. tv2 = tv3 * c7
14. tv5 = tv4 * tv1
15. tv3 = CMOV(tv2, tv3, isQR)
16. tv4 = CMOV(tv5, tv4, isQR)
17. for i in (c1, c1 - 1, ..., 2):
18.    tv5 = i - 2
19.    tv5 = 2^tv5
20.    tv5 = tv4^tv5
21.    e1 = tv5 == 1
22.    tv2 = tv3 * tv1
23.    tv1 = tv1 * tv1
24.    tv5 = tv4 * tv1
25.    tv3 = CMOV(tv2, tv3, e1)
26.    tv4 = CMOV(tv5, tv4, e1)
27. return (isQR, tv3)
</sourcecode>
          </section>
          <section anchor="optimized-sqrtratio-for-q-3-mod-4" numbered="true" toc="default">
            <name>optimized sqrt_ratio for q = 3 mod 4</name>
            <sourcecode type="pseudocode">
sqrt_ratio_3mod4(u, v)

Parameters:
- F, a finite field of characteristic p and order q = p^m,
  where q = 3 mod 4.
- Z, the constant from the simplified SWU map.

Input: u and v, elements of F, where v != 0.
Output: (b, y), where
  b = True and y = sqrt(u / v) if (u / v) is square in F, and
  b = False and y = sqrt(Z * (u / v)) otherwise.

Constants:
1. c1 = (q - 3) / 4     # Integer arithmetic
2. c2 = sqrt(-Z)

Procedure:
1. tv1 = v^2
2. tv2 = u * v
3. tv1 = tv1 * tv2
4. y1 = tv1^c1
5. y1 = y1 * tv2
6. y2 = y1 * c2
7. tv3 = y1^2
8. tv3 = tv3 * v
9. isQR = tv3 == u
10. y = CMOV(y2, y1, isQR)
11. return (isQR, y)
</sourcecode>
          </section>
          <section anchor="optimized-sqrtratio-for-q-5-mod-8" numbered="true" toc="default">
            <name>optimized sqrt_ratio for q = 5 mod 8</name>
            <sourcecode type="pseudocode">
sqrt_ratio_5mod8(u, v)

Parameters:
- F, a finite field of characteristic p and order q = p^m,
  where q = 5 mod 8.
- Z, the constant from the simplified SWU map.

Input: u and v, elements of F, where v != 0.
Output: (b, y), where
  b = True and y = sqrt(u / v) if (u / v) is square in F, and
  b = False and y = sqrt(Z * (u / v)) otherwise.

Constants:
1. c1 = (q - 5) / 8
2. c2 = sqrt(-1)
3. c3 = sqrt(Z / c2)

Steps:
1. tv1 = v^2
2. tv2 = tv1 * v
3. tv1 = tv1^2
4. tv2 = tv2 * u
5. tv1 = tv1 * tv2
6. y1 = tv1^c1
7. y1 = y1 * tv2
8. tv1 = y1 * c2
9. tv2 = tv1^2
10. tv2 = tv2 * v
11. e1 = tv2 == u
12. y1 = CMOV(y1, tv1, e1)
13. tv2 = y1^2
14. tv2 = tv2 * v
15. isQR = tv2 == u
16. y2 = y1 * c3
17. tv1 = y2 * c2
18. tv2 = tv1^2
19. tv2 = tv2 * v
20. tv3 = Z * u
21. e2 = tv2 == tv3
22. y2 = CMOV(y2, tv1, e2)
23. y = CMOV(y2, y1, isQR)
24. return (isQR, y)
</sourcecode>
          </section>
        </section>
      </section>
      <section anchor="straightline-ell2" numbered="true" toc="default">
        <name>Elligator 2 method</name>
        <t>This section gives a straight-line implementation of the Elligator 2
method for any Montgomery curve of the form given in <xref target="montgomery" format="default"/>.
See <xref target="elligator2" format="default"/> for information on the constants used in this mapping.</t>
        <t><xref target="ell2-opt" format="default"/> gives optimized straight-line procedures that apply to specific
classes of curves and base fields, including curve25519 and curve448 <xref target="RFC7748" format="default"/>.</t>
        <sourcecode type="pseudocode">
map_to_curve_elligator2(u)

Input: u, an element of F.
Output: (s, t), a point on M.

Constants:
1.   c1 = J / K
2.   c2 = 1 / K^2

Steps:
1.  tv1 = u^2
2.  tv1 = Z * tv1            # Z * u^2
3.   e1 = tv1 == -1          # exceptional case: Z * u^2 == -1
4.  tv1 = CMOV(tv1, 0, e1)   # if tv1 == -1, set tv1 = 0
5.   x1 = tv1 + 1
6.   x1 = inv0(x1)
7.   x1 = -c1 * x1           # x1 = -(J / K) / (1 + Z * u^2)
8.  gx1 = x1 + c1
9.  gx1 = gx1 * x1
10. gx1 = gx1 + c2
11. gx1 = gx1 * x1           # gx1 = x1^3 + (J / K) * x1^2 + x1 / K^2
12.  x2 = -x1 - c1
13. gx2 = tv1 * gx1
14.  e2 = is_square(gx1)     # If is_square(gx1)
15.   x = CMOV(x2, x1, e2)   #   then  x = x1,  else  x = x2
16.  y2 = CMOV(gx2, gx1, e2) #   then y2 = gx1, else y2 = gx2
17.   y = sqrt(y2)
18.  e3 = sgn0(y) == 1
19.   y = CMOV(y, -y, e2 XOR e3)    # fix sign of y
20.   s = x * K
21.   t = y * K
22. return (s, t)
</sourcecode>
      </section>
    </section>
    <section anchor="samplecode" numbered="true" toc="default">
      <name>Curve-specific optimized sample code</name>
      <t>This section gives sample implementations optimized for some of the
elliptic curves listed in <xref target="suites" format="default"/>.
Sample Sage <xref target="SAGE" format="default"/> code for each algorithm can also be found in the
draft repository <xref target="hash2curve-repo" format="default"/>.</t>
      <section anchor="projective-coords" numbered="true" toc="default">
        <name>Interface and projective coordinate systems</name>
        <t>The sample code in this section uses a different interface than
the mappings of <xref target="mappings" format="default"/>.
Specifically, each mapping function in this section has the following
signature:</t>
        <sourcecode type="pseudocode">
    (xn, xd, yn, yd) = map_to_curve(u)
</sourcecode>
        <t>The resulting affine point (x, y) is given by (xn / xd, yn / yd).</t>
        <t>The reason for this modified interface is that it enables further
optimizations when working with points in a projective coordinate
system.
This is desirable, for example, when the resulting point will be
immediately multiplied by a scalar, since most scalar multiplication
algorithms operate on projective points.</t>
        <t>Projective coordinates are also useful when implementing random oracle
encodings (<xref target="roadmap" format="default"/>).
One reason is that, in general, point addition is faster using projective
coordinates.
Another reason is that, for Weierstrass curves, projective coordinates
allow using complete addition formulas <xref target="RCB16" format="default"/>.
This is especially convenient when implementing a constant-time encoding,
because it eliminates the need for a special case when Q0 == Q1, which
incomplete addition formulas usually do not handle.</t>
        <t>The following are two commonly used projective coordinate systems
and the corresponding conversions:</t>
        <ul spacing="normal">
          <li>A point (X, Y, Z) in homogeneous projective coordinates corresponds
to the affine point (x, y) = (X / Z, Y / Z);
the inverse conversion is given by (X, Y, Z) = (x, y, 1).
To convert (xn, xd, yn, yd) to homogeneous projective coordinates,
compute (X, Y, Z) = (xn * yd, yn * xd, xd * yd).</li>
          <li>A point (X', Y', Z') in Jacobian projective coordinates corresponds
to the affine point (x, y) = (X' / Z'^2, Y' / Z'^3);
the inverse conversion is given by (X', Y', Z') = (x, y, 1).
To convert (xn, xd, yn, yd) to Jacobian projective coordinates,
compute (X', Y', Z') = (xn * xd * yd^2, yn * yd^2 * xd^3, xd * yd).</li>
        </ul>
      </section>
      <section anchor="ell2-opt" numbered="true" toc="default">
        <name>Elligator 2</name>
        <section anchor="map-to-curve25519" numbered="true" toc="default">
          <name>curve25519 (q = 5 (mod 8), K = 1)</name>
          <t>The following is a straight-line implementation of Elligator 2
for curve25519 <xref target="RFC7748" format="default"/> as specified in <xref target="suites-25519" format="default"/>.</t>
          <t>This implementation can also be used for any Montgomery curve
with K = 1 over GF(q) where q = 5 (mod 8).</t>
          <sourcecode type="pseudocode">
map_to_curve_elligator2_curve25519(u)

Input: u, an element of F.
Output: (xn, xd, yn, yd) such that (xn / xd, yn / yd) is a
        point on curve25519.

Constants:
1. c1 = (q + 3) / 8       # Integer arithmetic
2. c2 = 2^c1
3. c3 = sqrt(-1)
4. c4 = (q - 5) / 8       # Integer arithmetic

Steps:
1.  tv1 = u^2
2.  tv1 = 2 * tv1
3.   xd = tv1 + 1         # Nonzero: -1 is square (mod p), tv1 is not
4.  x1n = -J              # x1 = x1n / xd = -J / (1 + 2 * u^2)
5.  tv2 = xd^2
6.  gxd = tv2 * xd        # gxd = xd^3
7.  gx1 = J * tv1         # x1n + J * xd
8.  gx1 = gx1 * x1n       # x1n^2 + J * x1n * xd
9.  gx1 = gx1 + tv2       # x1n^2 + J * x1n * xd + xd^2
10. gx1 = gx1 * x1n       # x1n^3 + J * x1n^2 * xd + x1n * xd^2
11. tv3 = gxd^2
12. tv2 = tv3^2           # gxd^4
13. tv3 = tv3 * gxd       # gxd^3
14. tv3 = tv3 * gx1       # gx1 * gxd^3
15. tv2 = tv2 * tv3       # gx1 * gxd^7
16. y11 = tv2^c4          # (gx1 * gxd^7)^((p - 5) / 8)
17. y11 = y11 * tv3       # gx1 * gxd^3 * (gx1 * gxd^7)^((p - 5) / 8)
18. y12 = y11 * c3
19. tv2 = y11^2
20. tv2 = tv2 * gxd
21.  e1 = tv2 == gx1
22.  y1 = CMOV(y12, y11, e1)  # If g(x1) is square, this is its sqrt
23. x2n = x1n * tv1           # x2 = x2n / xd = 2 * u^2 * x1n / xd
24. y21 = y11 * u
25. y21 = y21 * c2
26. y22 = y21 * c3
27. gx2 = gx1 * tv1           # g(x2) = gx2 / gxd = 2 * u^2 * g(x1)
28. tv2 = y21^2
29. tv2 = tv2 * gxd
30.  e2 = tv2 == gx2
31.  y2 = CMOV(y22, y21, e2)  # If g(x2) is square, this is its sqrt
32. tv2 = y1^2
33. tv2 = tv2 * gxd
34.  e3 = tv2 == gx1
35.  xn = CMOV(x2n, x1n, e3)  # If e3, x = x1, else x = x2
36.   y = CMOV(y2, y1, e3)    # If e3, y = y1, else y = y2
37.  e4 = sgn0(y) == 1        # Fix sign of y
38.   y = CMOV(y, -y, e3 XOR e4)
39. return (xn, xd, y, 1)
</sourcecode>
        </section>
        <section anchor="map-to-edwards25519" numbered="true" toc="default">
          <name>edwards25519</name>
          <t>The following is a straight-line implementation of Elligator 2
for edwards25519 <xref target="RFC7748" format="default"/> as specified in <xref target="suites-25519" format="default"/>.
The subroutine map_to_curve_elligator2_curve25519
is defined in <xref target="map-to-curve25519" format="default"/>.</t>
          <t>Note that the sign of the constant c1 below is chosen as specified
in <xref target="rational-map" format="default"/>, i.e., applying the rational map to the edwards25519
base point yields the curve25519 base point (see erratum <xref target="EID4730" format="default"/>).</t>
          <sourcecode type="pseudocode">
map_to_curve_elligator2_edwards25519(u)

Input: u, an element of F.
Output: (xn, xd, yn, yd) such that (xn / xd, yn / yd) is a
        point on edwards25519.

Constants:
1. c1 = sqrt(-486664) # sgn0(c1) MUST equal 0

Steps:
1.  (xMn, xMd, yMn, yMd) = map_to_curve_elligator2_curve25519(u)
2.  xn = xMn * yMd
3.  xn = xn * c1
4.  xd = xMd * yMn    # xn / xd = c1 * xM / yM
5.  yn = xMn - xMd
6.  yd = xMn + xMd    # (n / d - 1) / (n / d + 1) = (n - d) / (n + d)
7. tv1 = xd * yd
8.   e = tv1 == 0
9.  xn = CMOV(xn, 0, e)
10. xd = CMOV(xd, 1, e)
11. yn = CMOV(yn, 1, e)
12. yd = CMOV(yd, 1, e)
13. return (xn, xd, yn, yd)
</sourcecode>
        </section>
        <section anchor="map-to-curve448" numbered="true" toc="default">
          <name>curve448 (q = 3 (mod 4), K = 1)</name>
          <t>The following is a straight-line implementation of Elligator 2
for curve448 <xref target="RFC7748" format="default"/> as specified in <xref target="suites-448" format="default"/>.</t>
          <t>This implementation can also be used for any Montgomery curve
with K = 1 over GF(q) where q = 3 (mod 4).</t>
          <sourcecode type="pseudocode">
map_to_curve_elligator2_curve448(u)

Input: u, an element of F.
Output: (xn, xd, yn, yd) such that (xn / xd, yn / yd) is a
        point on curve448.

Constants:
1. c1 = (q - 3) / 4         # Integer arithmetic

Steps:
1.  tv1 = u^2
2.   e1 = tv1 == 1
3.  tv1 = CMOV(tv1, 0, e1)  # If Z * u^2 == -1, set tv1 = 0
4.   xd = 1 - tv1
5.  x1n = -J
6.  tv2 = xd^2
7.  gxd = tv2 * xd          # gxd = xd^3
8.  gx1 = -J * tv1          # x1n + J * xd
9.  gx1 = gx1 * x1n         # x1n^2 + J * x1n * xd
10. gx1 = gx1 + tv2         # x1n^2 + J * x1n * xd + xd^2
11. gx1 = gx1 * x1n         # x1n^3 + J * x1n^2 * xd + x1n * xd^2
12. tv3 = gxd^2
13. tv2 = gx1 * gxd         # gx1 * gxd
14. tv3 = tv3 * tv2         # gx1 * gxd^3
15.  y1 = tv3^c1            # (gx1 * gxd^3)^((p - 3) / 4)
16.  y1 = y1 * tv2          # gx1 * gxd * (gx1 * gxd^3)^((p - 3) / 4)
17. x2n = -tv1 * x1n        # x2 = x2n / xd = -1 * u^2 * x1n / xd
18.  y2 = y1 * u
19.  y2 = CMOV(y2, 0, e1)
20. tv2 = y1^2
21. tv2 = tv2 * gxd
22.  e2 = tv2 == gx1
23.  xn = CMOV(x2n, x1n, e2)  # If e2, x = x1, else x = x2
24.   y = CMOV(y2, y1, e2)    # If e2, y = y1, else y = y2
25.  e3 = sgn0(y) == 1        # Fix sign of y
26.   y = CMOV(y, -y, e2 XOR e3)
27. return (xn, xd, y, 1)
</sourcecode>
        </section>
        <section anchor="map-to-edwards448" numbered="true" toc="default">
          <name>edwards448</name>
          <t>The following is a straight-line implementation of Elligator 2
for edwards448 <xref target="RFC7748" format="default"/> as specified in <xref target="suites-448" format="default"/>.
The subroutine map_to_curve_elligator2_curve448
is defined in <xref target="map-to-curve448" format="default"/>.</t>
          <sourcecode type="pseudocode">
map_to_curve_elligator2_edwards448(u)

Input: u, an element of F.
Output: (xn, xd, yn, yd) such that (xn / xd, yn / yd) is a
        point on edwards448.

Steps:
1. (xn, xd, yn, yd) = map_to_curve_elligator2_curve448(u)
2.  xn2 = xn^2
3.  xd2 = xd^2
4.  xd4 = xd2^2
5.  yn2 = yn^2
6.  yd2 = yd^2
7.  xEn = xn2 - xd2
8.  tv2 = xEn - xd2
9.  xEn = xEn * xd2
10. xEn = xEn * yd
11. xEn = xEn * yn
12. xEn = xEn * 4
13. tv2 = tv2 * xn2
14. tv2 = tv2 * yd2
15. tv3 = 4 * yn2
16. tv1 = tv3 + yd2
17. tv1 = tv1 * xd4
18. xEd = tv1 + tv2
19. tv2 = tv2 * xn
20. tv4 = xn * xd4
21. yEn = tv3 - yd2
22. yEn = yEn * tv4
23. yEn = yEn - tv2
24. tv1 = xn2 + xd2
25. tv1 = tv1 * xd2
26. tv1 = tv1 * xd
27. tv1 = tv1 * yn2
28. tv1 = -2 * tv1
29. yEd = tv2 + tv1
30. tv4 = tv4 * yd2
31. yEd = yEd + tv4
32. tv1 = xEd * yEd
33.   e = tv1 == 0
34. xEn = CMOV(xEn, 0, e)
35. xEd = CMOV(xEd, 1, e)
36. yEn = CMOV(yEn, 1, e)
37. yEd = CMOV(yEd, 1, e)
38. return (xEn, xEd, yEn, yEd)
</sourcecode>
        </section>
        <section anchor="ell2-map-to-3mod4" numbered="true" toc="default">
          <name>Montgomery curves with q = 3 (mod 4)</name>
          <t>The following is a straight-line implementation of Elligator 2
that applies to any Montgomery curve defined over GF(q) where q = 3 (mod 4).</t>
          <t>For curves where K = 1, the implementation given in <xref target="map-to-curve448" format="default"/>
gives identical results with slightly reduced cost.</t>
          <sourcecode type="pseudocode">
map_to_curve_elligator2_3mod4(u)

Input: u, an element of F.
Output: (xn, xd, yn, yd) such that (xn / xd, yn / yd) is a
        point on the target curve.

Constants:
1. c1 = (q - 3) / 4        # Integer arithmetic
2. c2 = K^2

Steps:
1.  tv1 = u^2
2.   e1 = tv1 == 1
3.  tv1 = CMOV(tv1, 0, e1) # If Z * u^2 == -1, set tv1 = 0
4.   xd = 1 - tv1
5.   xd = xd * K
6.  x1n = -J          # x1 = x1n / xd = -J / (K * (1 + 2 * u^2))
7.  tv2 = xd^2
8.  gxd = tv2 * xd
9.  gxd = gxd * c2    # gxd = xd^3 * K^2
10. gx1 = x1n * K
11. tv3 = xd * J
12. tv3 = gx1 + tv3   # x1n * K + xd * J
13. gx1 = gx1 * tv3   # K^2 * x1n^2 + J * K * x1n * xd
14. gx1 = gx1 + tv2   # K^2 * x1n^2 + J * K * x1n * xd + xd^2
15. gx1 = gx1 * x1n   # K^2 * x1n^3 + J * K * x1n^2 * xd + x1n * xd^2
16. tv3 = gxd^2
17. tv2 = gx1 * gxd   # gx1 * gxd
18. tv3 = tv3 * tv2   # gx1 * gxd^3
19.  y1 = tv3^c1      # (gx1 * gxd^3)^((q - 3) / 4)
20.  y1 = y1 * tv2    # gx1 * gxd * (gx1 * gxd^3)^((q - 3) / 4)
21. x2n = -tv1 * x1n  # x2 = x2n / xd = -1 * u^2 * x1n / xd
22.  y2 = y1 * u
23.  y2 = CMOV(y2, 0, e1)
24. tv2 = y1^2
25. tv2 = tv2 * gxd
26.  e2 = tv2 == gx1
27.  xn = CMOV(x2n, x1n, e2)  # If e2, x = x1, else x = x2
28.  xn = xn * K
29.   y = CMOV(y2, y1, e2)    # If e2, y = y1, else y = y2
30.  e3 = sgn0(y) == 1        # Fix sign of y
31.   y = CMOV(y, -y, e2 XOR e3)
32.   y = y * K
33. return (xn, xd, y, 1)
</sourcecode>
        </section>
        <section anchor="ell2-map-to-5mod8" numbered="true" toc="default">
          <name>Montgomery curves with q = 5 (mod 8)</name>
          <t>The following is a straight-line implementation of Elligator 2
that applies to any Montgomery curve defined over GF(q) where q = 5 (mod 8).</t>
          <t>For curves where K = 1, the implementation given in <xref target="map-to-curve25519" format="default"/>
gives identical results with slightly reduced cost.</t>
          <sourcecode type="pseudocode">
map_to_curve_elligator2_5mod8(u)

Input: u, an element of F.
Output: (xn, xd, yn, yd) such that (xn / xd, yn / yd) is a
        point on the target curve.

Constants:
1. c1 = (q + 3) / 8           # Integer arithmetic
2. c2 = 2^c1
3. c3 = sqrt(-1)
4. c4 = (q - 5) / 8           # Integer arithmetic
5. c5 = K^2

Steps:
1.  tv1 = u^2
2.  tv1 = 2 * tv1
3.   xd = tv1 + 1     # Nonzero: -1 is square (mod p), tv1 is not
4.   xd = xd * K
5.  x1n = -J          # x1 = x1n / xd = -J / (K * (1 + 2 * u^2))
6.  tv2 = xd^2
7.  gxd = tv2 * xd
8.  gxd = gxd * c5    # gxd = xd^3 * K^2
9.  gx1 = x1n * K
10. tv3 = xd * J
11. tv3 = gx1 + tv3   # x1n * K + xd * J
12. gx1 = gx1 * tv3   # K^2 * x1n^2 + J * K * x1n * xd
13. gx1 = gx1 + tv2   # K^2 * x1n^2 + J * K * x1n * xd + xd^2
14. gx1 = gx1 * x1n   # K^2 * x1n^3 + J * K * x1n^2 * xd + x1n * xd^2
15. tv3 = gxd^2
16. tv2 = tv3^2       # gxd^4
17. tv3 = tv3 * gxd   # gxd^3
18. tv3 = tv3 * gx1   # gx1 * gxd^3
19. tv2 = tv2 * tv3   # gx1 * gxd^7
20. y11 = tv2^c4      # (gx1 * gxd^7)^((q - 5) / 8)
21. y11 = y11 * tv3   # gx1 * gxd^3 * (gx1 * gxd^7)^((q - 5) / 8)
22. y12 = y11 * c3
23. tv2 = y11^2
24. tv2 = tv2 * gxd
25.  e1 = tv2 == gx1
26.  y1 = CMOV(y12, y11, e1)  # If g(x1) is square, this is its sqrt
27. x2n = x1n * tv1           # x2 = x2n / xd = 2 * u^2 * x1n / xd
28. y21 = y11 * u
29. y21 = y21 * c2
30. y22 = y21 * c3
31. gx2 = gx1 * tv1           # g(x2) = gx2 / gxd = 2 * u^2 * g(x1)
32. tv2 = y21^2
33. tv2 = tv2 * gxd
34.  e2 = tv2 == gx2
35.  y2 = CMOV(y22, y21, e2)  # If g(x2) is square, this is its sqrt
36. tv2 = y1^2
37. tv2 = tv2 * gxd
38.  e3 = tv2 == gx1
39.  xn = CMOV(x2n, x1n, e3)  # If e3, x = x1, else x = x2
40.  xn = xn * K
41.   y = CMOV(y2, y1, e3)    # If e3, y = y1, else y = y2
42.  e4 = sgn0(y) == 1        # Fix sign of y
43.   y = CMOV(y, -y, e3 XOR e4)
44.   y = y * K
45. return (xn, xd, y, 1)
</sourcecode>
        </section>
      </section>
      <section anchor="clear-cofactor-bls12381-g2" numbered="true" toc="default">
        <name>Cofactor clearing for BLS12-381 G2</name>
        <t>The curve BLS12-381, whose parameters are defined in <xref target="suites-bls12381-g2" format="default"/>,
admits an efficiently-computable endomorphism psi that can be used to
speed up cofactor clearing for G2 <xref target="SBCDK09" format="default"/> <xref target="FKR11" format="default"/> <xref target="BP17" format="default"/> (see also
<xref target="cofactor-clearing" format="default"/>).
This section implements the endomorphism psi and a fast cofactor clearing
method described by Budroni and Pintore <xref target="BP17" format="default"/>.</t>
        <t>The functions in this section operate on points whose coordinates are
represented as ratios, i.e., (xn, xd, yn, yd) corresponds to the point
(xn / xd, yn / yd); see <xref target="projective-coords" format="default"/> for further discussion of
projective coordinates.
When points are represented in affine coordinates, one can simply ignore
the denominators (xd == 1 and yd == 1).</t>
        <t>The following function computes the Frobenius endomorphism for an element
of F = GF(p^2) with basis (1, I), where I^2 + 1 == 0 in F.
(This is the base field of the elliptic curve E defined in <xref target="suites-bls12381-g2" format="default"/>.)</t>
        <sourcecode type="pseudocode">
frobenius(x)

Input: x, an element of GF(p^2).
Output: a, an element of GF(p^2).

Notation: x = x0 + I * x1, where x0 and x1 are elements of GF(p).

Steps:
1. a = x0 - I * x1
2. return a
</sourcecode>
        <t>The following function computes the endomorphism psi for points on the
elliptic curve E defined in <xref target="suites-bls12381-g2" format="default"/>.</t>
        <sourcecode type="pseudocode">
psi(xn, xd, yn, yd)

Input: P, a point (xn / xd, yn / yd) on the curve E (see above).
Output: Q, a point on the same curve.

Constants:
1. c1 = 1 / (1 + I)^((p - 1) / 3)           # in GF(p^2)
2. c2 = 1 / (1 + I)^((p - 1) / 2)           # in GF(p^2)

Steps:
1. qxn = c1 * frobenius(xn)
2. qxd = frobenius(xd)
3. qyn = c2 * frobenius(yn)
4. qyd = frobenius(yd)
5. return (qxn, qxd, qyn, qyd)
</sourcecode>
        <t>The following function efficiently computes psi(psi(P)).</t>
        <sourcecode type="pseudocode">
psi2(xn, xd, yn, yd)

Input: P, a point (xn / xd, yn / yd) on the curve E (see above).
Output: Q, a point on the same curve.

Constants:
1. c1 = 1 / 2^((p - 1) / 3)                 # in GF(p^2)

Steps:
1. qxn = c1 * xn
2. qyn = -yn
3. return (qxn, xd, qyn, yd)
</sourcecode>
        <t>The following function maps any point on the elliptic curve E (<xref target="suites-bls12381-g2" format="default"/>)
into the prime-order subgroup G2.
This function returns a point equal to h_eff * P, where h_eff is the parameter
given in <xref target="suites-bls12381-g2" format="default"/>.</t>
        <sourcecode type="pseudocode">
clear_cofactor_bls12381_g2(P)

Input: P, a point (xn / xd, yn / yd) on the curve E (see above).
Output: Q, a point in the subgroup G2 of BLS12-381.

Constants:
1. c1 = -15132376222941642752       # the BLS parameter for BLS12-381
                                    # i.e., -0xd201000000010000

Notation: in this procedure, + and - represent elliptic curve point
addition and subtraction, respectively, and * represents scalar
multiplication.

Steps:
1.  t1 = c1 * P
2.  t2 = psi(P)
3.  t3 = 2 * P
4.  t3 = psi2(t3)
5.  t3 = t3 - t2
6.  t2 = t1 + t2
7.  t2 = c1 * t2
8.  t3 = t3 + t2
9.  t3 = t3 - t1
10.  Q = t3 - P
11. return Q
</sourcecode>
      </section>
    </section>
    <section anchor="paramgen" numbered="true" toc="default">
      <name>Scripts for parameter generation</name>
      <t>This section gives Sage <xref target="SAGE" format="default"/> scripts used to generate parameters for the mappings of <xref target="mappings" format="default"/>.</t>
      <section anchor="svdw-z-code" numbered="true" toc="default">
        <name>Finding Z for the Shallue-van de Woestijne map</name>
        <t>The below function outputs an appropriate Z for the Shallue and van de Woestijne map (<xref target="svdw" format="default"/>).</t>
        <sourcecode type="sage">
# Arguments:
# - F, a field object, e.g., F = GF(2^521 - 1)
# - A and B, the coefficients of the curve y^2 = x^3 + A * x + B
def find_z_svdw(F, A, B, init_ctr=1):
    g = lambda x: F(x)^3 + F(A) * F(x) + F(B)
    h = lambda Z: -(F(3) * Z^2 + F(4) * A) / (F(4) * g(Z))
    # NOTE: if init_ctr=1 fails to find Z, try setting it to F.gen()
    ctr = init_ctr
    while True:
        for Z_cand in (F(ctr), F(-ctr)):
            # Criterion 1:
            #   g(Z) != 0 in F.
            if g(Z_cand) == F(0):
                continue
            # Criterion 2:
            #   -(3 * Z^2 + 4 * A) / (4 * g(Z)) != 0 in F.
            if h(Z_cand) == F(0):
                continue
            # Criterion 3:
            #   -(3 * Z^2 + 4 * A) / (4 * g(Z)) is square in F.
            if not is_square(h(Z_cand)):
                continue
            # Criterion 4:
            #   At least one of g(Z) and g(-Z / 2) is square in F.
            if is_square(g(Z_cand)) or is_square(g(-Z_cand / F(2))):
                return Z_cand
        ctr += 1
</sourcecode>
      </section>
      <section anchor="sswu-z-code" numbered="true" toc="default">
        <name>Finding Z for Simplified SWU</name>
        <t>The below function outputs an appropriate Z for the Simplified SWU map (<xref target="simple-swu" format="default"/>).</t>
        <sourcecode type="sage">
# Arguments:
# - F, a field object, e.g., F = GF(2^521 - 1)
# - A and B, the coefficients of the curve y^2 = x^3 + A * x + B
def find_z_sswu(F, A, B):
    R.&lt;xx&gt; = F[]                       # Polynomial ring over F
    g = xx^3 + F(A) * xx + F(B)        # y^2 = g(x) = x^3 + A * x + B
    ctr = F.gen()
    while True:
        for Z_cand in (F(ctr), F(-ctr)):
            # Criterion 1: Z is non-square in F.
            if is_square(Z_cand):
                continue
            # Criterion 2: Z != -1 in F.
            if Z_cand == F(-1):
                continue
            # Criterion 3: g(x) - Z is irreducible over F.
            if not (g - Z_cand).is_irreducible():
                continue
            # Criterion 4: g(B / (Z * A)) is square in F.
            if is_square(g(B / (Z_cand * A))):
                return Z_cand
        ctr += 1
</sourcecode>
      </section>
      <section anchor="elligator-z-code" numbered="true" toc="default">
        <name>Finding Z for Elligator 2</name>
        <t>The below function outputs an appropriate Z for the Elligator 2 map (<xref target="elligator2" format="default"/>).</t>
        <sourcecode type="sage">
# Argument:
# - F, a field object, e.g., F = GF(2^255 - 19)
def find_z_ell2(F):
    ctr = F.gen()
    while True:
        for Z_cand in (F(ctr), F(-ctr)):
            # Z must be a non-square in F.
            if is_square(Z_cand):
                continue
            return Z_cand
        ctr += 1
</sourcecode>
      </section>
    </section>
    <section anchor="appx-sqrt" numbered="true" toc="default">
      <name>sqrt and is_square functions</name>
      <t>This section defines special-purpose sqrt functions for the three most common cases,
q = 3 (mod 4), q = 5 (mod 8), and q = 9 (mod 16),
plus a generic constant-time algorithm that works for any prime modulus.</t>
      <t>In addition, it gives an optimized is_square method for GF(p^2).</t>
      <section anchor="sqrt-3mod4" numbered="true" toc="default">
        <name>sqrt for q = 3 (mod 4)</name>
        <sourcecode type="pseudocode">
sqrt_3mod4(x)

Parameters:
- F, a finite field of characteristic p and order q = p^m.

Input: x, an element of F.
Output: z, an element of F such that (z^2) == x, if x is square in F.

Constants:
1. c1 = (q + 1) / 4     # Integer arithmetic

Procedure:
1. return x^c1
</sourcecode>
      </section>
      <section anchor="sqrt-5mod8" numbered="true" toc="default">
        <name>sqrt for q = 5 (mod 8)</name>
        <sourcecode type="pseudocode">
sqrt_5mod8(x)

Parameters:
- F, a finite field of characteristic p and order q = p^m.

Input: x, an element of F.
Output: z, an element of F such that (z^2) == x, if x is square in F.

Constants:
1. c1 = sqrt(-1) in F, i.e., (c1^2) == -1 in F
2. c2 = (q + 3) / 8     # Integer arithmetic

Procedure:
1. tv1 = x^c2
2. tv2 = tv1 * c1
3.   e = (tv1^2) == x
4.   z = CMOV(tv2, tv1, e)
5. return z
</sourcecode>
      </section>
      <section anchor="sqrt-9mod16" numbered="true" toc="default">
        <name>sqrt for q = 9 (mod 16)</name>
        <sourcecode type="pseudocode">
sqrt_9mod16(x)

Parameters:
- F, a finite field of characteristic p and order q = p^m.

Input: x, an element of F.
Output: z, an element of F such that (z^2) == x, if x is square in F.

Constants:
1. c1 = sqrt(-1) in F, i.e., (c1^2) == -1 in F
2. c2 = sqrt(c1) in F, i.e., (c2^2) == c1 in F
3. c3 = sqrt(-c1) in F, i.e., (c3^2) == -c1 in F
4. c4 = (q + 7) / 16         # Integer arithmetic

Procedure:
1. tv1 = x^c4
2. tv2 = c1 * tv1
3. tv3 = c2 * tv1
4. tv4 = c3 * tv1
5.  e1 = (tv2^2) == x
6.  e2 = (tv3^2) == x
7. tv1 = CMOV(tv1, tv2, e1)  # Select tv2 if (tv2^2) == x
8. tv2 = CMOV(tv4, tv3, e2)  # Select tv3 if (tv3^2) == x
9.  e3 = (tv2^2) == x
10.  z = CMOV(tv1, tv2, e3)  # Select the sqrt from tv1 and tv2
11. return z
</sourcecode>
      </section>
      <section anchor="sqrt-ts" numbered="true" toc="default">
        <name>Constant-time Tonelli-Shanks algorithm</name>
        <t>This algorithm is a constant-time version of the classic Tonelli-Shanks algorithm
(<xref target="C93" format="default"/>, Algorithm 1.5.1) due to Sean Bowe, Jack Grigg, and Eirik Ogilvie-Wigley <xref target="jubjub-fq" format="default"/>,
adapted and optimized by Michael Scott.</t>
        <t>This algorithm applies to GF(p) for any p.
Note, however, that the special-purpose algorithms given in the prior sections are
faster, when they apply.</t>
        <sourcecode type="pseudocode">
sqrt_ts_ct(x)

Parameters:
- F, a finite field of characteristic p and order q = p^m.

Input x, an element of F.
Output: z, an element of F such that z^2 == x, if x is square in F.

Constants:
1. c1, the largest integer such that 2^c1 divides q - 1.
2. c2 = (q - 1) / (2^c1)        # Integer arithmetic
3. c3 = (c2 - 1) / 2            # Integer arithmetic
4. c4, a non-square value in F
5. c5 = c4^c2 in F

Procedure:
1.  z = x^c3
2.  t = z * z
3.  t = t * x
4.  z = z * x
5.  b = t
6.  c = c5
7.  for i in (c1, c1 - 1, ..., 2):
8.    for j in (1, 2, ..., i - 2):
9.      b = b * b
10.   e = b == 1
11.   zt = z * c
12.   z = CMOV(zt, z, e)
13.   c = c * c
14.   tt = t * c
15.   t = CMOV(tt, t, e)
16.   b = t
17. return z
</sourcecode>
      </section>
      <section anchor="appx-sqrt-issq" numbered="true" toc="default">
        <name>is_square for F = GF(p^2)</name>
        <t>The following is_square method applies to any field F = GF(p^2)
with basis (1, I) represented as described in <xref target="bg-curves" format="default"/>, i.e.,
an element x = (x_1, x_2) = x_1 + x_2 * I.</t>
        <t>Other optimizations of this type are possible in other extension
fields; see, e.g., <xref target="AR13" format="default"/> for more information.</t>
        <sourcecode type="pseudocode">
is_square(x)

Parameters:
- F, an extension field of characteristic p and order q = p^2
  with basis (1, I).

Input: x, an element of F.
Output: True if x is square in F, and False otherwise.

Constants:
1. c1 = (p - 1) / 2         # Integer arithmetic

Procedure:
1. tv1 = x_1^2
2. tv2 = I * x_2
3. tv2 = tv2^2
4. tv1 = tv1 - tv2
5. tv1 = tv1^c1
6.  e1 = tv1 != -1          # Note: -1 in F
7. return e1
</sourcecode>
      </section>
    </section>
    <section anchor="testvectors" numbered="true" toc="default">
      <name>Suite test vectors</name>
      <t>This section gives test vectors for each suite defined in <xref target="suites" format="default"/>.
The test vectors in this section were generated using code that is
available from <xref target="hash2curve-repo" format="default"/>.</t>
      <t>Each test vector in this section lists values computed by the
appropriate encoding function, with variable names defined as
in <xref target="roadmap" format="default"/>.
For example, for a suite whose encoding type is random oracle,
the test vector gives the value for msg, u, Q0, Q1, and the
output point P.</t>
      <section anchor="nist-p-256" numbered="true" toc="default">
        <name>NIST P-256</name>
        <section anchor="p256xmdsha-256sswuro" numbered="true" toc="default">
          <name>P256_XMD:SHA-256_SSWU_RO_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = P256_XMD:SHA-256_SSWU_RO_
dst     = QUUX-V01-CS02-with-P256_XMD:SHA-256_SSWU_RO_

msg     =
P.x     = 2c15230b26dbc6fc9a37051158c95b79656e17a1a920b11394ca91
          c44247d3e4
P.y     = 8a7a74985cc5c776cdfe4b1f19884970453912e9d31528c060be9a
          b5c43e8415
u[0]    = ad5342c66a6dd0ff080df1da0ea1c04b96e0330dd89406465eeba1
          1582515009
u[1]    = 8c0f1d43204bd6f6ea70ae8013070a1518b43873bcd850aafa0a9e
          220e2eea5a
Q0.x    = ab640a12220d3ff283510ff3f4b1953d09fad35795140b1c5d64f3
          13967934d5
Q0.y    = dccb558863804a881d4fff3455716c836cef230e5209594ddd33d8
          5c565b19b1
Q1.x    = 51cce63c50d972a6e51c61334f0f4875c9ac1cd2d3238412f84e31
          da7d980ef5
Q1.y    = b45d1a36d00ad90e5ec7840a60a4de411917fbe7c82c3949a6e699
          e5a1b66aac

msg     = abc
P.x     = 0bb8b87485551aa43ed54f009230450b492fead5f1cc91658775da
          c4a3388a0f
P.y     = 5c41b3d0731a27a7b14bc0bf0ccded2d8751f83493404c84a88e71
          ffd424212e
u[0]    = afe47f2ea2b10465cc26ac403194dfb68b7f5ee865cda61e9f3e07
          a537220af1
u[1]    = 379a27833b0bfe6f7bdca08e1e83c760bf9a338ab335542704edcd
          69ce9e46e0
Q0.x    = 5219ad0ddef3cc49b714145e91b2f7de6ce0a7a7dc7406c7726c7e
          373c58cb48
Q0.y    = 7950144e52d30acbec7b624c203b1996c99617d0b61c2442354301
          b191d93ecf
Q1.x    = 019b7cb4efcfeaf39f738fe638e31d375ad6837f58a852d032ff60
          c69ee3875f
Q1.y    = 589a62d2b22357fed5449bc38065b760095ebe6aeac84b01156ee4
          252715446e

msg     = abcdef0123456789
P.x     = 65038ac8f2b1def042a5df0b33b1f4eca6bff7cb0f9c6c15268118
          64e544ed80
P.y     = cad44d40a656e7aff4002a8de287abc8ae0482b5ae825822bb870d
          6df9b56ca3
u[0]    = 0fad9d125a9477d55cf9357105b0eb3a5c4259809bf87180aa01d6
          51f53d312c
u[1]    = b68597377392cd3419d8fcc7d7660948c8403b19ea78bbca4b133c
          9d2196c0fb
Q0.x    = a17bdf2965eb88074bc01157e644ed409dac97cfcf0c61c998ed0f
          a45e79e4a2
Q0.y    = 4f1bc80c70d411a3cc1d67aeae6e726f0f311639fee560c7f5a664
          554e3c9c2e
Q1.x    = 7da48bb67225c1a17d452c983798113f47e438e4202219dd0715f8
          419b274d66
Q1.y    = b765696b2913e36db3016c47edb99e24b1da30e761a8a3215dc0ec
          4d8f96e6f9

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 4be61ee205094282ba8a2042bcb48d88dfbb609301c49aa8b07853
          3dc65a0b5d
P.y     = 98f8df449a072c4721d241a3b1236d3caccba603f916ca680f4539
          d2bfb3c29e
u[0]    = 3bbc30446f39a7befad080f4d5f32ed116b9534626993d2cc5033f
          6f8d805919
u[1]    = 76bb02db019ca9d3c1e02f0c17f8baf617bbdae5c393a81d9ce11e
          3be1bf1d33
Q0.x    = c76aaa823aeadeb3f356909cb08f97eee46ecb157c1f56699b5efe
          bddf0e6398
Q0.y    = 776a6f45f528a0e8d289a4be12c4fab80762386ec644abf2bffb9b
          627e4352b1
Q1.x    = 418ac3d85a5ccc4ea8dec14f750a3a9ec8b85176c95a7022f39182
          6794eb5a75
Q1.y    = fd6604f69e9d9d2b74b072d14ea13050db72c932815523305cb9e8
          07cc900aff

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 457ae2981f70ca85d8e24c308b14db22f3e3862c5ea0f652ca38b5
          e49cd64bc5
P.y     = ecb9f0eadc9aeed232dabc53235368c1394c78de05dd96893eefa6
          2b0f4757dc
u[0]    = 4ebc95a6e839b1ae3c63b847798e85cb3c12d3817ec6ebc10af6ee
          51adb29fec
u[1]    = 4e21af88e22ea80156aff790750121035b3eefaa96b425a8716e0d
          20b4e269ee
Q0.x    = d88b989ee9d1295df413d4456c5c850b8b2fb0f5402cc5c4c7e815
          412e926db8
Q0.y    = bb4a1edeff506cf16def96afff41b16fc74f6dbd55c2210e5b8f01
          1ba32f4f40
Q1.x    = a281e34e628f3a4d2a53fa87ff973537d68ad4fbc28d3be5e8d9f6
          a2571c5a4b
Q1.y    = f6ed88a7aab56a488100e6f1174fa9810b47db13e86be999644922
          961206e184
]]></artwork>
        </section>
        <section anchor="p256xmdsha-256sswunu" numbered="true" toc="default">
          <name>P256_XMD:SHA-256_SSWU_NU_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = P256_XMD:SHA-256_SSWU_NU_
dst     = QUUX-V01-CS02-with-P256_XMD:SHA-256_SSWU_NU_

msg     =
P.x     = f871caad25ea3b59c16cf87c1894902f7e7b2c822c3d3f73596c5a
          ce8ddd14d1
P.y     = 87b9ae23335bee057b99bac1e68588b18b5691af476234b8971bc4
          f011ddc99b
u[0]    = b22d487045f80e9edcb0ecc8d4bf77833e2bf1f3a54004d7df1d57
          f4802d311f
Q.x     = f871caad25ea3b59c16cf87c1894902f7e7b2c822c3d3f73596c5a
          ce8ddd14d1
Q.y     = 87b9ae23335bee057b99bac1e68588b18b5691af476234b8971bc4
          f011ddc99b

msg     = abc
P.x     = fc3f5d734e8dce41ddac49f47dd2b8a57257522a865c124ed02b92
          b5237befa4
P.y     = fe4d197ecf5a62645b9690599e1d80e82c500b22ac705a0b421fac
          7b47157866
u[0]    = c7f96eadac763e176629b09ed0c11992225b3a5ae99479760601cb
          d69c221e58
Q.x     = fc3f5d734e8dce41ddac49f47dd2b8a57257522a865c124ed02b92
          b5237befa4
Q.y     = fe4d197ecf5a62645b9690599e1d80e82c500b22ac705a0b421fac
          7b47157866

msg     = abcdef0123456789
P.x     = f164c6674a02207e414c257ce759d35eddc7f55be6d7f415e2cc17
          7e5d8faa84
P.y     = 3aa274881d30db70485368c0467e97da0e73c18c1d00f34775d012
          b6fcee7f97
u[0]    = 314e8585fa92068b3ea2c3bab452d4257b38be1c097d58a2189045
          6c2929614d
Q.x     = f164c6674a02207e414c257ce759d35eddc7f55be6d7f415e2cc17
          7e5d8faa84
Q.y     = 3aa274881d30db70485368c0467e97da0e73c18c1d00f34775d012
          b6fcee7f97

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 324532006312be4f162614076460315f7a54a6f85544da773dc659
          aca0311853
P.y     = 8d8197374bcd52de2acfefc8a54fe2c8d8bebd2a39f16be9b710e4
          b1af6ef883
u[0]    = 752d8eaa38cd785a799a31d63d99c2ae4261823b4a367b133b2c66
          27f48858ab
Q.x     = 324532006312be4f162614076460315f7a54a6f85544da773dc659
          aca0311853
Q.y     = 8d8197374bcd52de2acfefc8a54fe2c8d8bebd2a39f16be9b710e4
          b1af6ef883

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 5c4bad52f81f39c8e8de1260e9a06d72b8b00a0829a8ea004a610b
          0691bea5d9
P.y     = c801e7c0782af1f74f24fc385a8555da0582032a3ce038de637ccd
          cb16f7ef7b
u[0]    = 0e1527840b9df2dfbef966678ff167140f2b27c4dccd884c25014d
          ce0e41dfa3
Q.x     = 5c4bad52f81f39c8e8de1260e9a06d72b8b00a0829a8ea004a610b
          0691bea5d9
Q.y     = c801e7c0782af1f74f24fc385a8555da0582032a3ce038de637ccd
          cb16f7ef7b
]]></artwork>
        </section>
      </section>
      <section anchor="nist-p-384" numbered="true" toc="default">
        <name>NIST P-384</name>
        <section anchor="p384xmdsha-384sswuro" numbered="true" toc="default">
          <name>P384_XMD:SHA-384_SSWU_RO_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = P384_XMD:SHA-384_SSWU_RO_
dst     = QUUX-V01-CS02-with-P384_XMD:SHA-384_SSWU_RO_

msg     =
P.x     = eb9fe1b4f4e14e7140803c1d99d0a93cd823d2b024040f9c067a8e
          ca1f5a2eeac9ad604973527a356f3fa3aeff0e4d83
P.y     = 0c21708cff382b7f4643c07b105c2eaec2cead93a917d825601e63
          c8f21f6abd9abc22c93c2bed6f235954b25048bb1a
u[0]    = 25c8d7dc1acd4ee617766693f7f8829396065d1b447eedb155871f
          effd9c6653279ac7e5c46edb7010a0e4ff64c9f3b4
u[1]    = 59428be4ed69131df59a0c6a8e188d2d4ece3f1b2a3a02602962b4
          7efa4d7905945b1e2cc80b36aa35c99451073521ac
Q0.x    = e4717e29eef38d862bee4902a7d21b44efb58c464e3e1f0d03894d
          94de310f8ffc6de86786dd3e15a1541b18d4eb2846
Q0.y    = 6b95a6e639822312298a47526bb77d9cd7bcf76244c991c8cd7007
          5e2ee6e8b9a135c4a37e3c0768c7ca871c0ceb53d4
Q1.x    = 509527cfc0750eedc53147e6d5f78596c8a3b7360e0608e2fab056
          3a1670d58d8ae107c9f04bcf90e89489ace5650efd
Q1.y    = 33337b13cb35e173fdea4cb9e8cce915d836ff57803dbbeb7998aa
          49d17df2ff09b67031773039d09fbd9305a1566bc4

msg     = abc
P.x     = e02fc1a5f44a7519419dd314e29863f30df55a514da2d655775a81
          d413003c4d4e7fd59af0826dfaad4200ac6f60abe1
P.y     = 01f638d04d98677d65bef99aef1a12a70a4cbb9270ec55248c0453
          0d8bc1f8f90f8a6a859a7c1f1ddccedf8f96d675f6
u[0]    = 53350214cb6bef0b51abb791b1c4209a2b4c16a0c67e1ab1401017
          fad774cd3b3f9a8bcdf7f6229dd8dd5a075cb149a0
u[1]    = c0473083898f63e03f26f14877a2407bd60c75ad491e7d26cbc6cc
          5ce815654075ec6b6898c7a41d74ceaf720a10c02e
Q0.x    = fc853b69437aee9a19d5acf96a4ee4c5e04cf7b53406dfaa2afbdd
          7ad2351b7f554e4bbc6f5db4177d4d44f933a8f6ee
Q0.y    = 7e042547e01834c9043b10f3a8221c4a879cb156f04f72bfccab0c
          047a304e30f2aa8b2e260d34c4592c0c33dd0c6482
Q1.x    = 57912293709b3556b43a2dfb137a315d256d573b82ded120ef8c78
          2d607c05d930d958e50cb6dc1cc480b9afc38c45f1
Q1.y    = de9387dab0eef0bda219c6f168a92645a84665c4f2137c14270fb4
          24b7532ff84843c3da383ceea24c47fa343c227bb8

msg     = abcdef0123456789
P.x     = bdecc1c1d870624965f19505be50459d363c71a699a496ab672f9a
          5d6b78676400926fbceee6fcd1780fe86e62b2aa89
P.y     = 57cf1f99b5ee00f3c201139b3bfe4dd30a653193778d89a0accc5e
          0f47e46e4e4b85a0595da29c9494c1814acafe183c
u[0]    = aab7fb87238cf6b2ab56cdcca7e028959bb2ea599d34f68484139d
          de85ec6548a6e48771d17956421bdb7790598ea52e
u[1]    = 26e8d833552d7844d167833ca5a87c35bcfaa5a0d86023479fb28e
          5cd6075c18b168bf1f5d2a0ea146d057971336d8d1
Q0.x    = 0ceece45b73f89844671df962ad2932122e878ad2259e650626924
          e4e7f132589341dec1480ebcbbbe3509d11fb570b7
Q0.y    = fafd71a3115298f6be4ae5c6dfc96c400cfb55760f185b7b03f3fa
          45f3f91eb65d27628b3c705cafd0466fafa54883ce
Q1.x    = dea1be8d3f9be4cbf4fab9d71d549dde76875b5d9b876832313a08
          3ec81e528cbc2a0a1d0596b3bcb0ba77866b129776
Q1.y    = eb15fe71662214fb03b65541f40d3eb0f4cf5c3b559f647da138c9
          f9b7484c48a08760e02c16f1992762cb7298fa52cf

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 03c3a9f401b78c6c36a52f07eeee0ec1289f178adf78448f43a385
          0e0456f5dd7f7633dd31676d990eda32882ab486c0
P.y     = cc183d0d7bdfd0a3af05f50e16a3f2de4abbc523215bf57c848d5e
          a662482b8c1f43dc453a93b94a8026db58f3f5d878
u[0]    = 04c00051b0de6e726d228c85bf243bf5f4789efb512b22b498cde3
          821db9da667199b74bd5a09a79583c6d353a3bb41c
u[1]    = 97580f218255f899f9204db64cd15e6a312cb4d8182375d1e5157c
          8f80f41d6a1a4b77fb1ded9dce56c32058b8d5202b
Q0.x    = 051a22105e0817a35d66196338c8d85bd52690d79bba373ead8a86
          dd9899411513bb9f75273f6483395a7847fb21edb4
Q0.y    = f168295c1bbcff5f8b01248e9dbc885335d6d6a04aea960f7384f7
          46ba6502ce477e624151cc1d1392b00df0f5400c06
Q1.x    = 6ad7bc8ed8b841efd8ad0765c8a23d0b968ec9aa360a558ff33500
          f164faa02bee6c704f5f91507c4c5aad2b0dc5b943
Q1.y    = 47313cc0a873ade774048338fc34ca5313f96bbf6ae22ac6ef475d
          85f03d24792dc6afba8d0b4a70170c1b4f0f716629

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 7b18d210b1f090ac701f65f606f6ca18fb8d081e3bc6cbd937c560
          4325f1cdea4c15c10a54ef303aabf2ea58bd9947a4
P.y     = ea857285a33abb516732915c353c75c576bf82ccc96adb63c094dd
          e580021eddeafd91f8c0bfee6f636528f3d0c47fd2
u[0]    = 480cb3ac2c389db7f9dac9c396d2647ae946db844598971c26d1af
          d53912a1491199c0a5902811e4b809c26fcd37a014
u[1]    = d28435eb34680e148bf3908536e42231cba9e1f73ae2c6902a222a
          89db5c49c97db2f8fa4d4cd6e424b17ac60bdb9bb6
Q0.x    = 42e6666f505e854187186bad3011598d9278b9d6e3e4d2503c3d23
          6381a56748dec5d139c223129b324df53fa147c4df
Q0.y    = 8ee51dbda46413bf621838cc935d18d617881c6f33f3838a79c767
          a1e5618e34b22f79142df708d2432f75c7366c8512
Q1.x    = 4ff01ceeba60484fa1bc0d825fe1e5e383d8f79f1e5bb78e5fb26b
          7a7ef758153e31e78b9d60ce75c5e32e43869d4e12
Q1.y    = 0f84b978fac8ceda7304b47e229d6037d32062e597dc7a9b95bcd9
          af441f3c56c619a901d21635f9ec6ab4710b9fcd0e
]]></artwork>
        </section>
        <section anchor="p384xmdsha-384sswunu" numbered="true" toc="default">
          <name>P384_XMD:SHA-384_SSWU_NU_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = P384_XMD:SHA-384_SSWU_NU_
dst     = QUUX-V01-CS02-with-P384_XMD:SHA-384_SSWU_NU_

msg     =
P.x     = de5a893c83061b2d7ce6a0d8b049f0326f2ada4b966dc7e7292725
          6b033ef61058029a3bfb13c1c7ececd6641881ae20
P.y     = 63f46da6139785674da315c1947e06e9a0867f5608cf24724eb379
          3a1f5b3809ee28eb21a0c64be3be169afc6cdb38ca
u[0]    = bc7dc1b2cdc5d588a66de3276b0f24310d4aca4977efda7d6272e1
          be25187b001493d267dc53b56183c9e28282368e60
Q.x     = de5a893c83061b2d7ce6a0d8b049f0326f2ada4b966dc7e7292725
          6b033ef61058029a3bfb13c1c7ececd6641881ae20
Q.y     = 63f46da6139785674da315c1947e06e9a0867f5608cf24724eb379
          3a1f5b3809ee28eb21a0c64be3be169afc6cdb38ca

msg     = abc
P.x     = 1f08108b87e703c86c872ab3eb198a19f2b708237ac4be53d7929f
          b4bd5194583f40d052f32df66afe5249c9915d139b
P.y     = 1369dc8d5bf038032336b989994874a2270adadb67a7fcc32f0f88
          24bc5118613f0ac8de04a1041d90ff8a5ad555f96c
u[0]    = 9de6cf41e6e41c03e4a7784ac5c885b4d1e49d6de390b3cdd5a1ac
          5dd8c40afb3dfd7bb2686923bab644134483fc1926
Q.x     = 1f08108b87e703c86c872ab3eb198a19f2b708237ac4be53d7929f
          b4bd5194583f40d052f32df66afe5249c9915d139b
Q.y     = 1369dc8d5bf038032336b989994874a2270adadb67a7fcc32f0f88
          24bc5118613f0ac8de04a1041d90ff8a5ad555f96c

msg     = abcdef0123456789
P.x     = 4dac31ec8a82ee3c02ba2d7c9fa431f1e59ffe65bf977b948c59e1
          d813c2d7963c7be81aa6db39e78ff315a10115c0d0
P.y     = 845333cdb5702ad5c525e603f302904d6fc84879f0ef2ee2014a6b
          13edd39131bfd66f7bd7cdc2d9ccf778f0c8892c3f
u[0]    = 84e2d430a5e2543573e58e368af41821ca3ccc97baba7e9aab51a8
          4543d5a0298638a22ceee6090d9d642921112af5b7
Q.x     = 4dac31ec8a82ee3c02ba2d7c9fa431f1e59ffe65bf977b948c59e1
          d813c2d7963c7be81aa6db39e78ff315a10115c0d0
Q.y     = 845333cdb5702ad5c525e603f302904d6fc84879f0ef2ee2014a6b
          13edd39131bfd66f7bd7cdc2d9ccf778f0c8892c3f

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 13c1f8c52a492183f7c28e379b0475486718a7e3ac1dfef39283b9
          ce5fb02b73f70c6c1f3dfe0c286b03e2af1af12d1d
P.y     = 57e101887e73e40eab8963324ed16c177d55eb89f804ec9df06801
          579820420b5546b579008df2145fd770f584a1a54c
u[0]    = 504e4d5a529333b9205acaa283107bd1bffde753898f7744161f7d
          d19ba57fbb6a64214a2e00ddd2613d76cd508ddb30
Q.x     = 13c1f8c52a492183f7c28e379b0475486718a7e3ac1dfef39283b9
          ce5fb02b73f70c6c1f3dfe0c286b03e2af1af12d1d
Q.y     = 57e101887e73e40eab8963324ed16c177d55eb89f804ec9df06801
          579820420b5546b579008df2145fd770f584a1a54c

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = af129727a4207a8cb9e9dce656d88f79fce25edbcea350499d65e9
          bf1204537bdde73c7cefb752a6ed5ebcd44e183302
P.y     = ce68a3d5e161b2e6a968e4ddaa9e51504ad1516ec170c7eef3ca6b
          5327943eca95d90b23b009ba45f58b72906f2a99e2
u[0]    = 7b01ce9b8c5a60d9fbc202d6dde92822e46915d8c17e03fcb92ece
          1ed6074d01e149fc9236def40d673de903c1d4c166
Q.x     = af129727a4207a8cb9e9dce656d88f79fce25edbcea350499d65e9
          bf1204537bdde73c7cefb752a6ed5ebcd44e183302
Q.y     = ce68a3d5e161b2e6a968e4ddaa9e51504ad1516ec170c7eef3ca6b
          5327943eca95d90b23b009ba45f58b72906f2a99e2
]]></artwork>
        </section>
      </section>
      <section anchor="nist-p-521" numbered="true" toc="default">
        <name>NIST P-521</name>
        <section anchor="p521xmdsha-512sswuro" numbered="true" toc="default">
          <name>P521_XMD:SHA-512_SSWU_RO_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = P521_XMD:SHA-512_SSWU_RO_
dst     = QUUX-V01-CS02-with-P521_XMD:SHA-512_SSWU_RO_

msg     =
P.x     = 00fd767cebb2452030358d0e9cf907f525f50920c8f607889a6a35
          680727f64f4d66b161fafeb2654bea0d35086bec0a10b30b14adef
          3556ed9f7f1bc23cecc9c088
P.y     = 0169ba78d8d851e930680322596e39c78f4fe31b97e57629ef6460
          ddd68f8763fd7bd767a4e94a80d3d21a3c2ee98347e024fc73ee1c
          27166dc3fe5eeef782be411d
u[0]    = 01e5f09974e5724f25286763f00ce76238c7a6e03dc396600350ee
          2c4135fb17dc555be99a4a4bae0fd303d4f66d984ed7b6a3ba3860
          93752a855d26d559d69e7e9e
u[1]    = 00ae593b42ca2ef93ac488e9e09a5fe5a2f6fb330d18913734ff60
          2f2a761fcaaf5f596e790bcc572c9140ec03f6cccc38f767f1c197
          5a0b4d70b392d95a0c7278aa
Q0.x    = 00b70ae99b6339fffac19cb9bfde2098b84f75e50ac1e80d6acb95
          4e4534af5f0e9c4a5b8a9c10317b8e6421574bae2b133b4f2b8c6c
          e4b3063da1d91d34fa2b3a3c
Q0.y    = 007f368d98a4ddbf381fb354de40e44b19e43bb11a1278759f4ea7
          b485e1b6db33e750507c071250e3e443c1aaed61f2c28541bb54b1
          b456843eda1eb15ec2a9b36e
Q1.x    = 01143d0e9cddcdacd6a9aafe1bcf8d218c0afc45d4451239e821f5
          d2a56df92be942660b532b2aa59a9c635ae6b30e803c45a6ac8714
          32452e685d661cd41cf67214
Q1.y    = 00ff75515df265e996d702a5380defffab1a6d2bc232234c7bcffa
          433cd8aa791fbc8dcf667f08818bffa739ae25773b32073213cae9
          a0f2a917a0b1301a242dda0c

msg     = abc
P.x     = 002f89a1677b28054b50d15e1f81ed6669b5a2158211118ebdef8a
          6efc77f8ccaa528f698214e4340155abc1fa08f8f613ef14a04371
          7503d57e267d57155cf784a4
P.y     = 010e0be5dc8e753da8ce51091908b72396d3deed14ae166f66d8eb
          f0a4e7059ead169ea4bead0232e9b700dd380b316e9361cfdba55a
          08c73545563a80966ecbb86d
u[0]    = 003d00c37e95f19f358adeeaa47288ec39998039c3256e13c2a4c0
          0a7cb61a34c8969472960150a27276f2390eb5e53e47ab193351c2
          d2d9f164a85c6a5696d94fe8
u[1]    = 01f3cbd3df3893a45a2f1fecdac4d525eb16f345b03e2820d69bc5
          80f5cbe9cb89196fdf720ef933c4c0361fcfe29940fd0db0a5da6b
          afb0bee8876b589c41365f15
Q0.x    = 01b254e1c99c835836f0aceebba7d77750c48366ecb07fb658e4f5
          b76e229ae6ca5d271bb0006ffcc42324e15a6d3daae587f9049de2
          dbb0494378ffb60279406f56
Q0.y    = 01845f4af72fc2b1a5a2fe966f6a97298614288b456cfc385a425b
          686048b25c952fbb5674057e1eb055d04568c0679a8e2dda3158dc
          16ac598dbb1d006f5ad915b0
Q1.x    = 007f08e813c620e527c961b717ffc74aac7afccb9158cebc347d57
          15d5c2214f952c97e194f11d114d80d3481ed766ac0a3dba3eb73f
          6ff9ccb9304ad10bbd7b4a36
Q1.y    = 0022468f92041f9970a7cc025d71d5b647f822784d29ca7b3bc3b0
          829d6bb8581e745f8d0cc9dc6279d0450e779ac2275c4c3608064a
          d6779108a7828ebd9954caeb

msg     = abcdef0123456789
P.x     = 006e200e276a4a81760099677814d7f8794a4a5f3658442de63c18
          d2244dcc957c645e94cb0754f95fcf103b2aeaf94411847c24187b
          89fb7462ad3679066337cbc4
P.y     = 001dd8dfa9775b60b1614f6f169089d8140d4b3e4012949b52f98d
          b2deff3e1d97bf73a1fa4d437d1dcdf39b6360cc518d8ebcc0f899
          018206fded7617b654f6b168
u[0]    = 00183ee1a9bbdc37181b09ec336bcaa34095f91ef14b66b1485c16
          6720523dfb81d5c470d44afcb52a87b704dbc5c9bc9d0ef524dec2
          9884a4795f55c1359945baf3
u[1]    = 00504064fd137f06c81a7cf0f84aa7e92b6b3d56c2368f0a08f447
          76aa8930480da1582d01d7f52df31dca35ee0a7876500ece3d8fe0
          293cd285f790c9881c998d5e
Q0.x    = 0021482e8622aac14da60e656043f79a6a110cbae5012268a62dd6
          a152c41594549f373910ebed170ade892dd5a19f5d687fae7095a4
          61d583f8c4295f7aaf8cd7da
Q0.y    = 0177e2d8c6356b7de06e0b5712d8387d529b848748e54a8bc0ef5f
          1475aa569f8f492fa85c3ad1c5edc51faf7911f11359bfa2a12d2e
          f0bd73df9cb5abd1b101c8b1
Q1.x    = 00abeafb16fdbb5eb95095678d5a65c1f293291dfd20a3751dbe05
          d0a9bfe2d2eef19449fe59ec32cdd4a4adc3411177c0f2dffd0159
          438706159a1bbd0567d9b3d0
Q1.y    = 007cc657f847db9db651d91c801741060d63dab4056d0a1d3524e2
          eb0e819954d8f677aa353bd056244a88f00017e00c3ce8beeedb43
          82d83d74418bd48930c6c182

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 01b264a630bd6555be537b000b99a06761a9325c53322b65bdc41b
          f196711f9708d58d34b3b90faf12640c27b91c70a507998e559406
          48caa8e71098bf2bc8d24664
P.y     = 01ea9f445bee198b3ee4c812dcf7b0f91e0881f0251aab272a1220
          1fd89b1a95733fd2a699c162b639e9acdcc54fdc2f6536129b6beb
          0432be01aa8da02df5e59aaa
u[0]    = 0159871e222689aad7694dc4c3480a49807b1eedd9c8cb4ae1b219
          d5ba51655ea5b38e2e4f56b36bf3e3da44a7b139849d28f598c816
          fe1bc7ed15893b22f63363c3
u[1]    = 004ef0cffd475152f3858c0a8ccbdf7902d8261da92744e98df9b7
          fadb0a5502f29c5086e76e2cf498f47321434a40b1504911552ce4
          4ad7356a04e08729ad9411f5
Q0.x    = 0005eac7b0b81e38727efcab1e375f6779aea949c3e409b53a1d37
          aa2acbac87a7e6ad24aafbf3c52f82f7f0e21b872e88c55e17b7fa
          21ce08a94ea2121c42c2eb73
Q0.y    = 00a173b6a53a7420dbd61d4a21a7c0a52de7a5c6ce05f31403bef7
          47d16cc8604a039a73bdd6e114340e55dacd6bea8e217ffbadfb8c
          292afa3e1b2afc839a6ce7bb
Q1.x    = 01881e3c193a69e4d88d8180a6879b74782a0bc7e529233e9f84bf
          7f17d2f319c36920ffba26f9e57a1e045cc7822c834c239593b6e1
          42a694aa00c757b0db79e5e8
Q1.y    = 01558b16d396d866e476e001f2dd0758927655450b84e12f154032
          c7c2a6db837942cd9f44b814f79b4d729996ced61eec61d85c6751
          39cbffe3fbf071d2c21cfecb

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 00c12bc3e28db07b6b4d2a2b1167ab9e26fc2fa85c7b0498a17b03
          47edf52392856d7e28b8fa7a2dd004611159505835b687ecf1a764
          857e27e9745848c436ef3925
P.y     = 01cd287df9a50c22a9231beb452346720bb163344a41c5f5a24e83
          35b6ccc595fd436aea89737b1281aecb411eb835f0b939073fdd1d
          d4d5a2492e91ef4a3c55bcbd
u[0]    = 0033d06d17bc3b9a3efc081a05d65805a14a3050a0dd4dfb488461
          8eb5c73980a59c5a246b18f58ad022dd3630faa22889fbb8ba1593
          466515e6ab4aeb7381c26334
u[1]    = 0092290ab99c3fea1a5b8fb2ca49f859994a04faee3301cefab312
          d34227f6a2d0c3322cf76861c6a3683bdaa2dd2a6daa5d6906c663
          e065338b2344d20e313f1114
Q0.x    = 00041f6eb92af8777260718e4c22328a7d74203350c6c8f5794d99
          d5789766698f459b83d5068276716f01429934e40af3d1111a2278
          0b1e07e72238d2207e5386be
Q0.y    = 001c712f0182813942b87cab8e72337db017126f52ed797dd23458
          4ac9ae7e80dfe7abea11db02cf1855312eae1447dbaecc9d7e8c88
          0a5e76a39f6258074e1bc2e0
Q1.x    = 0125c0b69bcf55eab49280b14f707883405028e05c927cd7625d4e
          04115bd0e0e6323b12f5d43d0d6d2eff16dbcf244542f84ec05891
          1260dc3bb6512ab5db285fbd
Q1.y    = 008bddfb803b3f4c761458eb5f8a0aee3e1f7f68e9d7424405fa69
          172919899317fb6ac1d6903a432d967d14e0f80af63e7035aaae0c
          123e56862ce969456f99f102
]]></artwork>
        </section>
        <section anchor="p521xmdsha-512sswunu" numbered="true" toc="default">
          <name>P521_XMD:SHA-512_SSWU_NU_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = P521_XMD:SHA-512_SSWU_NU_
dst     = QUUX-V01-CS02-with-P521_XMD:SHA-512_SSWU_NU_

msg     =
P.x     = 01ec604b4e1e3e4c7449b7a41e366e876655538acf51fd40d08b97
          be066f7d020634e906b1b6942f9174b417027c953d75fb6ec64b8c
          ee2a3672d4f1987d13974705
P.y     = 00944fc439b4aad2463e5c9cfa0b0707af3c9a42e37c5a57bb4ecd
          12fef9fb21508568aedcdd8d2490472df4bbafd79081c81e99f4da
          3286eddf19be47e9c4cf0e91
u[0]    = 01e4947fe62a4e47792cee2798912f672fff820b2556282d9843b4
          b465940d7683a986f93ccb0e9a191fbc09a6e770a564490d2a4ae5
          1b287ca39f69c3d910ba6a4f
Q.x     = 01ec604b4e1e3e4c7449b7a41e366e876655538acf51fd40d08b97
          be066f7d020634e906b1b6942f9174b417027c953d75fb6ec64b8c
          ee2a3672d4f1987d13974705
Q.y     = 00944fc439b4aad2463e5c9cfa0b0707af3c9a42e37c5a57bb4ecd
          12fef9fb21508568aedcdd8d2490472df4bbafd79081c81e99f4da
          3286eddf19be47e9c4cf0e91

msg     = abc
P.x     = 00c720ab56aa5a7a4c07a7732a0a4e1b909e32d063ae1b58db5f0e
          b5e09f08a9884bff55a2bef4668f715788e692c18c1915cd034a6b
          998311fcf46924ce66a2be9a
P.y     = 003570e87f91a4f3c7a56be2cb2a078ffc153862a53d5e03e5dad5
          bccc6c529b8bab0b7dbb157499e1949e4edab21cf5d10b782bc1e9
          45e13d7421ad8121dbc72b1d
u[0]    = 0019b85ef78596efc84783d42799e80d787591fe7432dee1d9fa2b
          7651891321be732ddf653fa8fefa34d86fb728db569d36b5b6ed39
          83945854b2fc2dc6a75aa25b
Q.x     = 00c720ab56aa5a7a4c07a7732a0a4e1b909e32d063ae1b58db5f0e
          b5e09f08a9884bff55a2bef4668f715788e692c18c1915cd034a6b
          998311fcf46924ce66a2be9a
Q.y     = 003570e87f91a4f3c7a56be2cb2a078ffc153862a53d5e03e5dad5
          bccc6c529b8bab0b7dbb157499e1949e4edab21cf5d10b782bc1e9
          45e13d7421ad8121dbc72b1d

msg     = abcdef0123456789
P.x     = 00bcaf32a968ff7971b3bbd9ce8edfbee1309e2019d7ff373c3838
          7a782b005dce6ceffccfeda5c6511c8f7f312f343f3a891029c585
          8f45ee0bf370aba25fc990cc
P.y     = 00923517e767532d82cb8a0b59705eec2b7779ce05f9181c7d5d5e
          25694ef8ebd4696343f0bc27006834d2517215ecf79482a84111f5
          0c1bae25044fe1dd77744bbd
u[0]    = 01dba0d7fa26a562ee8a9014ebc2cca4d66fd9de036176aca8fc11
          ef254cd1bc208847ab7701dbca7af328b3f601b11a1737a899575a
          5c14f4dca5aaca45e9935e07
Q.x     = 00bcaf32a968ff7971b3bbd9ce8edfbee1309e2019d7ff373c3838
          7a782b005dce6ceffccfeda5c6511c8f7f312f343f3a891029c585
          8f45ee0bf370aba25fc990cc
Q.y     = 00923517e767532d82cb8a0b59705eec2b7779ce05f9181c7d5d5e
          25694ef8ebd4696343f0bc27006834d2517215ecf79482a84111f5
          0c1bae25044fe1dd77744bbd

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 001ac69014869b6c4ad7aa8c443c255439d36b0e48a0f57b03d6fe
          9c40a66b4e2eaed2a93390679a5cc44b3a91862b34b673f0e92c83
          187da02bf3db967d867ce748
P.y     = 00d5603d530e4d62b30fccfa1d90c2206654d74291c1db1c25b86a
          051ee3fffc294e5d56f2e776853406bd09206c63d40f37ad882952
          4cf89ad70b5d6e0b4a3b7341
u[0]    = 00844da980675e1244cb209dcf3ea0aabec23bd54b2cda69fff86e
          b3acc318bf3d01bae96e9cd6f4c5ceb5539df9a7ad7fcc5e9d5469
          6081ba9782f3a0f6d14987e3
Q.x     = 001ac69014869b6c4ad7aa8c443c255439d36b0e48a0f57b03d6fe
          9c40a66b4e2eaed2a93390679a5cc44b3a91862b34b673f0e92c83
          187da02bf3db967d867ce748
Q.y     = 00d5603d530e4d62b30fccfa1d90c2206654d74291c1db1c25b86a
          051ee3fffc294e5d56f2e776853406bd09206c63d40f37ad882952
          4cf89ad70b5d6e0b4a3b7341

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 01801de044c517a80443d2bd4f503a9e6866750d2f94a22970f62d
          721f96e4310e4a828206d9cdeaa8f2d476705cc3bbc490a6165c68
          7668f15ec178a17e3d27349b
P.y     = 0068889ea2e1442245fe42bfda9e58266828c0263119f35a61631a
          3358330f3bb84443fcb54fcd53a1d097fccbe310489b74ee143fc2
          938959a83a1f7dd4a6fd395b
u[0]    = 01aab1fb7e5cd44ba4d9f32353a383cb1bb9eb763ed40b32bdd5f6
          66988970205998c0e44af6e2b5f6f8e48e969b3f649cae3c6ab463
          e1b274d968d91c02f00cce91
Q.x     = 01801de044c517a80443d2bd4f503a9e6866750d2f94a22970f62d
          721f96e4310e4a828206d9cdeaa8f2d476705cc3bbc490a6165c68
          7668f15ec178a17e3d27349b
Q.y     = 0068889ea2e1442245fe42bfda9e58266828c0263119f35a61631a
          3358330f3bb84443fcb54fcd53a1d097fccbe310489b74ee143fc2
          938959a83a1f7dd4a6fd395b
]]></artwork>
        </section>
      </section>
      <section anchor="curve25519" numbered="true" toc="default">
        <name>curve25519</name>
        <section anchor="curve25519xmdsha-512ell2ro" numbered="true" toc="default">
          <name>curve25519_XMD:SHA-512_ELL2_RO_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = curve25519_XMD:SHA-512_ELL2_RO_
dst     = QUUX-V01-CS02-with-curve25519_XMD:SHA-512_ELL2_RO_

msg     =
P.x     = 2de3780abb67e861289f5749d16d3e217ffa722192d16bbd9d1bfb
          9d112b98c0
P.y     = 3b5dc2a498941a1033d176567d457845637554a2fe7a3507d21abd
          1c1bd6e878
u[0]    = 005fe8a7b8fef0a16c105e6cadf5a6740b3365e18692a9c05bfbb4
          d97f645a6a
u[1]    = 1347edbec6a2b5d8c02e058819819bee177077c9d10a4ce165aab0
          fd0252261a
Q0.x    = 36b4df0c864c64707cbf6cf36e9ee2c09a6cb93b28313c169be295
          61bb904f98
Q0.y    = 6cd59d664fb58c66c892883cd0eb792e52055284dac3907dd756b4
          5d15c3983d
Q1.x    = 3fa114783a505c0b2b2fbeef0102853c0b494e7757f2a089d0daae
          7ed9a0db2b
Q1.y    = 76c0fe7fec932aaafb8eefb42d9cbb32eb931158f469ff3050af15
          cfdbbeff94

msg     = abc
P.x     = 2b4419f1f2d48f5872de692b0aca72cc7b0a60915dd70bde432e82
          6b6abc526d
P.y     = 1b8235f255a268f0a6fa8763e97eb3d22d149343d495da1160eff9
          703f2d07dd
u[0]    = 49bed021c7a3748f09fa8cdfcac044089f7829d3531066ac9e74e0
          994e05bc7d
u[1]    = 5c36525b663e63389d886105cee7ed712325d5a97e60e140aba7e2
          ce5ae851b6
Q0.x    = 16b3d86e056b7970fa00165f6f48d90b619ad618791661b7b5e1ec
          78be10eac1
Q0.y    = 4ab256422d84c5120b278cbdfc4e1facc5baadffeccecf8ee9bf39
          46106d50ca
Q1.x    = 7ec29ddbf34539c40adfa98fcb39ec36368f47f30e8f888cc7e86f
          4d46e0c264
Q1.y    = 10d1abc1cae2d34c06e247f2141ba897657fb39f1080d54f09ce0a
          f128067c74

msg     = abcdef0123456789
P.x     = 68ca1ea5a6acf4e9956daa101709b1eee6c1bb0df1de3b90d46023
          82a104c036
P.y     = 2a375b656207123d10766e68b938b1812a4a6625ff83cb8d5e86f5
          8a4be08353
u[0]    = 6412b7485ba26d3d1b6c290a8e1435b2959f03721874939b21782d
          f17323d160
u[1]    = 24c7b46c1c6d9a21d32f5707be1380ab82db1054fde82865d5c9e3
          d968f287b2
Q0.x    = 71de3dadfe268872326c35ac512164850860567aea0e7325e6b91a
          98f86533ad
Q0.y    = 26a08b6e9a18084c56f2147bf515414b9b63f1522e1b6c5649f7d4
          b0324296ec
Q1.x    = 5704069021f61e41779e2ba6b932268316d6d2a6f064f997a22fef
          16d1eaeaca
Q1.y    = 50483c7540f64fb4497619c050f2c7fe55454ec0f0e79870bb4430
          2e34232210

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 096e9c8bae6c06b554c1ee69383bb0e82267e064236b3a30608d4e
          d20b73ac5a
P.y     = 1eb5a62612cafb32b16c3329794645b5b948d9f8ffe501d4e26b07
          3fef6de355
u[0]    = 5e123990f11bbb5586613ffabdb58d47f64bb5f2fa115f8ea8df01
          88e0c9e1b5
u[1]    = 5e8553eb00438a0bb1e7faa59dec6d8087f9c8011e5fb8ed9df31c
          b6c0d4ac19
Q0.x    = 7a94d45a198fb5daa381f45f2619ab279744efdd8bd8ed587fc5b6
          5d6cea1df0
Q0.y    = 67d44f85d376e64bb7d713585230cdbfafc8e2676f7568e0b6ee59
          361116a6e1
Q1.x    = 30506fb7a32136694abd61b6113770270debe593027a968a01f271
          e146e60c18
Q1.y    = 7eeee0e706b40c6b5174e551426a67f975ad5a977ee2f01e8e20a6
          d612458c3b

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 1bc61845a138e912f047b5e70ba9606ba2a447a4dade024c8ef3dd
          42b7bbc5fe
P.y     = 623d05e47b70e25f7f1d51dda6d7c23c9a18ce015fe3548df596ea
          9e38c69bf1
u[0]    = 20f481e85da7a3bf60ac0fb11ed1d0558fc6f941b3ac5469aa8b56
          ec883d6d7d
u[1]    = 017d57fd257e9a78913999a23b52ca988157a81b09c5442501d07f
          ed20869465
Q0.x    = 02d606e2699b918ee36f2818f2bc5013e437e673c9f9b9cdc15fd0
          c5ee913970
Q0.y    = 29e9dc92297231ef211245db9e31767996c5625dfbf92e1c8107ef
          887365de1e
Q1.x    = 38920e9b988d1ab7449c0fa9a6058192c0c797bb3d42ac34572434
          1a1aa98745
Q1.y    = 24dcc1be7c4d591d307e89049fd2ed30aae8911245a9d8554bf603
          2e5aa40d3d
]]></artwork>
        </section>
        <section anchor="curve25519xmdsha-512ell2nu" numbered="true" toc="default">
          <name>curve25519_XMD:SHA-512_ELL2_NU_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = curve25519_XMD:SHA-512_ELL2_NU_
dst     = QUUX-V01-CS02-with-curve25519_XMD:SHA-512_ELL2_NU_

msg     =
P.x     = 1bb913f0c9daefa0b3375378ffa534bda5526c97391952a7789eb9
          76edfe4d08
P.y     = 4548368f4f983243e747b62a600840ae7c1dab5c723991f85d3a97
          68479f3ec4
u[0]    = 608d892b641f0328523802a6603427c26e55e6f27e71a91a478148
          d45b5093cd
Q.x     = 51125222da5e763d97f3c10fcc92ea6860b9ccbbd2eb1285728f56
          6721c1e65b
Q.y     = 343d2204f812d3dfc5304a5808c6c0d81a903a5d228b342442aa3c
          9ba5520a3d

msg     = abc
P.x     = 7c22950b7d900fa866334262fcaea47a441a578df43b894b4625c9
          b450f9a026
P.y     = 5547bc00e4c09685dcbc6cb6765288b386d8bdcb595fa5a6e3969e
          08097f0541
u[0]    = 46f5b22494bfeaa7f232cc8d054be68561af50230234d7d1d63d1d
          9abeca8da5
Q.x     = 7d56d1e08cb0ccb92baf069c18c49bb5a0dcd927eff8dcf75ca921
          ef7f3e6eeb
Q.y     = 404d9a7dc25c9c05c44ab9a94590e7c3fe2dcec74533a0b24b188a
          5d5dacf429

msg     = abcdef0123456789
P.x     = 31ad08a8b0deeb2a4d8b0206ca25f567ab4e042746f792f4b7973f
          3ae2096c52
P.y     = 405070c28e78b4fa269427c82827261991b9718bd6c6e95d627d70
          1a53c30db1
u[0]    = 235fe40c443766ce7e18111c33862d66c3b33267efa50d50f9e8e5
          d252a40aaa
Q.x     = 3fbe66b9c9883d79e8407150e7c2a1c8680bee496c62fabe4619a7
          2b3cabe90f
Q.y     = 08ec476147c9a0a3ff312d303dbbd076abb7551e5fce82b48ab14b
          433f8d0a7b

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 027877759d155b1997d0d84683a313eb78bdb493271d935b622900
          459d52ceaa
P.y     = 54d691731a53baa30707f4a87121d5169fb5d587d70fb0292b5830
          dedbec4c18
u[0]    = 001e92a544463bda9bd04ddbe3d6eed248f82de32f522669efc5dd
          ce95f46f5b
Q.x     = 227e0bb89de700385d19ec40e857db6e6a3e634b1c32962f370d26
          f84ff19683
Q.y     = 5f86ff3851d262727326a32c1bf7655a03665830fa7f1b8b1e5a09
          d85bc66e4a

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 5fd892c0958d1a75f54c3182a18d286efab784e774d1e017ba2fb2
          52998b5dc1
P.y     = 750af3c66101737423a4519ac792fb93337bd74ee751f19da4cf1e
          94f4d6d0b8
u[0]    = 1a68a1af9f663592291af987203393f707305c7bac9c8d63d6a729
          bdc553dc19
Q.x     = 3bcd651ee54d5f7b6013898aab251ee8ecc0688166fce6e9548d38
          472f6bd196
Q.y     = 1bb36ad9197299f111b4ef21271c41f4b7ecf5543db8bb5931307e
          bdb2eaa465
]]></artwork>
        </section>
      </section>
      <section anchor="edwards25519" numbered="true" toc="default">
        <name>edwards25519</name>
        <section anchor="edwards25519xmdsha-512ell2ro" numbered="true" toc="default">
          <name>edwards25519_XMD:SHA-512_ELL2_RO_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = edwards25519_XMD:SHA-512_ELL2_RO_
dst     = QUUX-V01-CS02-with-edwards25519_XMD:SHA-512_ELL2_RO_

msg     =
P.x     = 3c3da6925a3c3c268448dcabb47ccde5439559d9599646a8260e47
          b1e4822fc6
P.y     = 09a6c8561a0b22bef63124c588ce4c62ea83a3c899763af26d7953
          02e115dc21
u[0]    = 03fef4813c8cb5f98c6eef88fae174e6e7d5380de2b007799ac7ee
          712d203f3a
u[1]    = 780bdddd137290c8f589dc687795aafae35f6b674668d92bf92ae7
          93e6a60c75
Q0.x    = 6549118f65bb617b9e8b438decedc73c496eaed496806d3b2eb9ee
          60b88e09a7
Q0.y    = 7315bcc8cf47ed68048d22bad602c6680b3382a08c7c5d3f439a97
          3fb4cf9feb
Q1.x    = 31dcfc5c58aa1bee6e760bf78cbe71c2bead8cebb2e397ece0f37a
          3da19c9ed2
Q1.y    = 7876d81474828d8a5928b50c82420b2bd0898d819e9550c5c82c39
          fc9bafa196

msg     = abc
P.x     = 608040b42285cc0d72cbb3985c6b04c935370c7361f4b7fbdb1ae7
          f8c1a8ecad
P.y     = 1a8395b88338f22e435bbd301183e7f20a5f9de643f11882fb237f
          88268a5531
u[0]    = 5081955c4141e4e7d02ec0e36becffaa1934df4d7a270f70679c78
          f9bd57c227
u[1]    = 005bdc17a9b378b6272573a31b04361f21c371b256252ae5463119
          aa0b925b76
Q0.x    = 5c1525bd5d4b4e034512949d187c39d48e8cd84242aa4758956e4a
          dc7d445573
Q0.y    = 2bf426cf7122d1a90abc7f2d108befc2ef415ce8c2d09695a74072
          40faa01f29
Q1.x    = 37b03bba828860c6b459ddad476c83e0f9285787a269df2156219b
          7e5c86210c
Q1.y    = 285ebf5412f84d0ad7bb4e136729a9ffd2195d5b8e73c0dc85110c
          e06958f432

msg     = abcdef0123456789
P.x     = 6d7fabf47a2dc03fe7d47f7dddd21082c5fb8f86743cd020f3fb14
          7d57161472
P.y     = 53060a3d140e7fbcda641ed3cf42c88a75411e648a1add71217f70
          ea8ec561a6
u[0]    = 285ebaa3be701b79871bcb6e225ecc9b0b32dff2d60424b4c50642
          636a78d5b3
u[1]    = 2e253e6a0ef658fedb8e4bd6a62d1544fd6547922acb3598ec6b36
          9760b81b31
Q0.x    = 3ac463dd7fddb773b069c5b2b01c0f6b340638f54ee3bd92d452fc
          ec3015b52d
Q0.y    = 7b03ba1e8db9ec0b390d5c90168a6a0b7107156c994c674b61fe69
          6cbeb46baf
Q1.x    = 0757e7e904f5e86d2d2f4acf7e01c63827fde2d363985aa7432106
          f1b3a444ec
Q1.y    = 50026c96930a24961e9d86aa91ea1465398ff8e42015e2ec1fa397
          d416f6a1c0

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 5fb0b92acedd16f3bcb0ef83f5c7b7a9466b5f1e0d8d217421878e
          a3686f8524
P.y     = 2eca15e355fcfa39d2982f67ddb0eea138e2994f5956ed37b7f72e
          ea5e89d2f7
u[0]    = 4fedd25431c41f2a606952e2945ef5e3ac905a42cf64b8b4d4a83c
          533bf321af
u[1]    = 02f20716a5801b843987097a8276b6d869295b2e11253751ca72c1
          09d37485a9
Q0.x    = 703e69787ea7524541933edf41f94010a201cc841c1cce60205ec3
          8513458872
Q0.y    = 32bb192c4f89106466f0874f5fd56a0d6b6f101cb714777983336c
          159a9bec75
Q1.x    = 0c9077c5c31720ed9413abe59bf49ce768506128d810cb882435aa
          90f713ef6b
Q1.y    = 7d5aec5210db638c53f050597964b74d6dda4be5b54fa73041bf90
          9ccb3826cb

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 0efcfde5898a839b00997fbe40d2ebe950bc81181afbd5cd6b9618
          aa336c1e8c
P.y     = 6dc2fc04f266c5c27f236a80b14f92ccd051ef1ff027f26a07f8c0
          f327d8f995
u[0]    = 6e34e04a5106e9bd59f64aba49601bf09d23b27f7b594e56d5de06
          df4a4ea33b
u[1]    = 1c1c2cb59fc053f44b86c5d5eb8c1954b64976d0302d3729ff66e8
          4068f5fd96
Q0.x    = 21091b2e3f9258c7dfa075e7ae513325a94a3d8a28e1b1cb3b5b6f
          5d65675592
Q0.y    = 41a33d324c89f570e0682cdf7bdb78852295daf8084c669f2cc969
          2896ab5026
Q1.x    = 4c07ec48c373e39a23bd7954f9e9b66eeab9e5ee1279b867b3d531
          5aa815454f
Q1.y    = 67ccac7c3cb8d1381242d8d6585c57eabaddbb5dca5243a68a8aeb
          5477d94b3a
]]></artwork>
        </section>
        <section anchor="edwards25519xmdsha-512ell2nu" numbered="true" toc="default">
          <name>edwards25519_XMD:SHA-512_ELL2_NU_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = edwards25519_XMD:SHA-512_ELL2_NU_
dst     = QUUX-V01-CS02-with-edwards25519_XMD:SHA-512_ELL2_NU_

msg     =
P.x     = 1ff2b70ecf862799e11b7ae744e3489aa058ce805dd323a936375a
          84695e76da
P.y     = 222e314d04a4d5725e9f2aff9fb2a6b69ef375a1214eb19021ceab
          2d687f0f9b
u[0]    = 7f3e7fb9428103ad7f52db32f9df32505d7b427d894c5093f7a0f0
          374a30641d
Q.x     = 42836f691d05211ebc65ef8fcf01e0fb6328ec9c4737c26050471e
          50803022eb
Q.y     = 22cb4aaa555e23bd460262d2130d6a3c9207aa8bbb85060928beb2
          63d6d42a95

msg     = abc
P.x     = 5f13cc69c891d86927eb37bd4afc6672360007c63f68a33ab423a3
          aa040fd2a8
P.y     = 67732d50f9a26f73111dd1ed5dba225614e538599db58ba30aaea1
          f5c827fa42
u[0]    = 09cfa30ad79bd59456594a0f5d3a76f6b71c6787b04de98be5cd20
          1a556e253b
Q.x     = 333e41b61c6dd43af220c1ac34a3663e1cf537f996bab50ab66e33
          c4bd8e4e19
Q.y     = 51b6f178eb08c4a782c820e306b82c6e273ab22e258d972cd0c511
          787b2a3443

msg     = abcdef0123456789
P.x     = 1dd2fefce934ecfd7aae6ec998de088d7dd03316aa1847198aecf6
          99ba6613f1
P.y     = 2f8a6c24dd1adde73909cada6a4a137577b0f179d336685c4a955a
          0a8e1a86fb
u[0]    = 475ccff99225ef90d78cc9338e9f6a6bb7b17607c0c4428937de75
          d33edba941
Q.x     = 55186c242c78e7d0ec5b6c9553f04c6aeef64e69ec2e824472394d
          a32647cfc6
Q.y     = 5b9ea3c265ee42256a8f724f616307ef38496ef7eba391c08f99f3
          bea6fa88f0

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 35fbdc5143e8a97afd3096f2b843e07df72e15bfca2eaf6879bf97
          c5d3362f73
P.y     = 2af6ff6ef5ebba128b0774f4296cb4c2279a074658b083b8dcca91
          f57a603450
u[0]    = 049a1c8bd51bcb2aec339f387d1ff51428b88d0763a91bcdf69298
          14ac95d03d
Q.x     = 024b6e1621606dca8071aa97b43dce4040ca78284f2a527dcf5d0f
          bfac2b07e7
Q.y     = 5102353883d739bdc9f8a3af650342b171217167dcce34f8db5720
          8ec1dfdbf2

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 6e5e1f37e99345887fc12111575fc1c3e36df4b289b8759d23af14
          d774b66bff
P.y     = 2c90c3d39eb18ff291d33441b35f3262cdd307162cc97c31bfcc7a
          4245891a37
u[0]    = 3cb0178a8137cefa5b79a3a57c858d7eeeaa787b2781be4a362a2f
          0750d24fa0
Q.x     = 3e6368cff6e88a58e250c54bd27d2c989ae9b3acb6067f2651ad28
          2ab8c21cd9
Q.y     = 38fb39f1566ca118ae6c7af42810c0bb9767ae5960abb5a8ca7925
          30bfb9447d
]]></artwork>
        </section>
      </section>
      <section anchor="curve448" numbered="true" toc="default">
        <name>curve448</name>
        <section anchor="curve448xofshake256ell2ro" numbered="true" toc="default">
          <name>curve448_XOF:SHAKE256_ELL2_RO_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = curve448_XOF:SHAKE256_ELL2_RO_
dst     = QUUX-V01-CS02-with-curve448_XOF:SHAKE256_ELL2_RO_

msg     =
P.x     = 5ea5ff623d27c75e73717514134e73e419f831a875ca9e82915fdf
          c7069d0a9f8b532cfb32b1d8dd04ddeedbe3fa1d0d681c01e825d6
          a9ea
P.y     = afadd8de789f8f8e3516efbbe313a7eba364c939ecba00dabf4ced
          5c563b18e70a284c17d8f46b564c4e6ce11784a3825d9411166221
          28c1
u[0]    = c704c7b3d3b36614cf3eedd0324fe6fe7d1402c50efd16cff89ff6
          3f50938506280d3843478c08e24f7842f4e3ef45f6e3c4897f9d97
          6148
u[1]    = c25427dc97fff7a5ad0a78654e2c6c27b1c1127b5b53c7950cd1fd
          6edd2703646b25f341e73deedfebf022d1d3cecd02b93b4d585ead
          3ed7
Q0.x    = 3ba318806f89c19cc019f51e33eb6b8c038dab892e858ce7c7f2c2
          ac58618d06146a5fef31e49af49588d4d3db1bcf02bd4e4a733e37
          065d
Q0.y    = b30b4cfc2fd14d9d4b70456c0f5c6f6070be551788893d570e7955
          675a20f6c286d01d6e90d2fb500d2efb8f4e18db7f8268bb9b7fbc
          5975
Q1.x    = f03a48cf003f63be61ca055fec87c750434da07a15f8aa6210389f
          f85943b5166484339c8bea1af9fc571313d35ed2fbb779408b760c
          4cbd
Q1.y    = 23943a33b2954dc54b76a8222faf5b7e18405a41f5ecc61bf1b8df
          1f9cbfad057307ed0c7b721f19c0390b8ee3a2dec223671f9ff905
          fda7

msg     = abc
P.x     = 9b2f7ce34878d7cebf34c582db14958308ea09366d1ec71f646411
          d3de0ae564d082b06f40cd30dfc08d9fb7cb21df390cf207806ad9
          d0e4
P.y     = 138a0eef0a4993ea696152ed7db61f7ddb4e8100573591e7466d61
          c0c568ecaec939e36a84d276f34c402526d8989a96e99760c4869e
          d633
u[0]    = 2dd95593dfee26fe0d218d3d9a0a23d9e1a262fd1d0b602483d084
          15213e75e2db3c69b0a5bc89e71bcefc8c723d2b6a0cf263f02ad2
          aa70
u[1]    = 272e4c79a1290cc6d2bc4f4f9d31bf7fbe956ca303c04518f117d7
          7c0e9d850796fc3e1e2bcb9c75e8eaaded5e150333cae993186804
          7c9d
Q0.x    = 26714783887ec444fbade9ae350dc13e8d5a64150679232560726a
          73d36e28bd56766d7d0b0899d79c8d1c889ae333f601c57532ff3c
          4f09
Q0.y    = 080e486f8f5740dbbe82305160cab9fac247b0b22a54d961de6750
          37c3036fa68464c8756478c322ae0aeb9ba386fe626cebb0bcca46
          840c
Q1.x    = 0d9741d10421691a8ebc7778b5f623260fdf8b28ae28d776efcb8e
          0d5fbb65139a2f828617835f527cb2ca24a8f5fc8e84378343c43d
          096d
Q1.y    = 54f4c499bf3d5b154511913f9615bd914969b65cfb74508d7ae5a1
          69e9595b7cbcab9a1485e07b2ce426e4fbed052f03842c4313b7db
          e39a

msg     = abcdef0123456789
P.x     = f54ecd14b85a50eeeee0618452df3a75be7bfba11da5118774ae4e
          a55ac204e153f77285d780c4acee6c96abe3577a0c0b00be6e790c
          f194
P.y     = 935247a64bf78c107069943c7e3ecc52acb27ce4a3230407c83573
          41685ea2152e8c3da93f8cd77da1bddb5bb759c6e7ae7d516dced4
          2850
u[0]    = 6aab71a38391639f27e49eae8b1cb6b7172a1f478190ece293957e
          7cdb2391e7cc1c4261970d9c1bbf9c3915438f74fbd7eb5cd4d4d1
          7ace
u[1]    = c80b8380ca47a3bcbf76caa75cef0e09f3d270d5ee8f676cde11ae
          df41aaca6741bd81a86232bd336ccb42efad39f06542bc06a67b65
          909e
Q0.x    = 946d91bd50c90ef70743e0dd194bddd68bb630f4e67e5b93e15a9b
          94e62cb85134467993501759525c1f4fdbf06f10ddaf817847d735
          e062
Q0.y    = 185cf511262ec1e9b3c3cbdc015ab93df4e71cbe87766917d81c9f
          3419d480407c1462385122c84982d4dae60c3ae4acce0089e37ad6
          5934
Q1.x    = 01778f4797b717cd6f83c193b2dfb92a1606a36ede941b0f6ab0ac
          71ad0eac756d17604bf054398887da907e41065d3595f178ae802f
          2087
Q1.y    = b4ca727d0bda895e0eee7eb3cbc28710fa2e90a73b568cae26bd7c
          2e73b70a9fa0affe1096f0810198890ed65d8935886b6e60dc4c56
          9dc6

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 5bd67c4f88adf6beb10f7e0d0054659776a55c97b809ec8b310172
          9e104fd0f684e103792f267fd87cc4afc25a073956ef4f268fb028
          24d5
P.y     = da1f5cb16a352719e4cb064cf47ba72aeba7752d03e8ca2c56229f
          419b4ef378785a5af1a53dd7ab4d467c1f92f7b139b3752faf29c9
          6432
u[0]    = cb5c27e51f9c18ee8ffdb6be230f4eb4f2c2481963b2293484f08d
          a2241c1ff59f80978e6defe9d70e34abba2fcbe12dc3a1eb2c5d3d
          2e4a
u[1]    = c895e8afecec5466e126fa70fc4aa784b8009063afb10e3ee06a9b
          22318256aa8693b0c85b955cf2d6540b8ed71e729af1b8d5ca3b11
          6cd7
Q0.x    = c2d275826d6ad55e41a22318f6b6240f1f862a2e231120ff41eadb
          ec319756032e8cef2a7ac6c10214fa0608c17fcaf61ec2694a8a2b
          358b
Q0.y    = 93d2e092762b135509840e609d413200df800d99da91d8b8284066
          6cac30e7a3520adbaa4b089bfdc86132e42729f651d022f4782502
          f12c
Q1.x    = 3c0880ece7244036e9a45944a85599f9809d772f770cc237ac41b2
          1aa71615e4f3bb08f64fca618896e4f6cf5bd92e16b89d2cf6e195
          6bfb
Q1.y    = 45cce4beb96505cac5976b3d2673641e9bcd18d3462bbb453d293e
          5282740a6389cfeae610adc7bd425c728541ceec83fcc999164af4
          3fb5

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = ea441c10b3636ecedd5c0dfcae96384cc40de8390a0ab648765b45
          08da12c586d55dc981275776507ebca0e4d1bcaa302bb69dcfa31b
          3451
P.y     = fee0192d49bcc0c28d954763c2cbe739b9265c4bebe3883803c649
          71220cfda60b9ac99ad986cd908c0534b260b5cfca46f6c2b0f3f2
          1bda
u[0]    = 8cba93a007bb2c801b1769e026b1fa1640b14a34cf3029db3c7fd6
          392745d6fec0f7870b5071d6da4402cedbbde28ae4e50ab30e1049
          a238
u[1]    = 4223746145069e4b8a981acc3404259d1a2c3ecfed5d864798a89d
          45f81a2c59e2d40eb1d5f0fe11478cbb2bb30246dd388cb932ad7b
          b330
Q0.x    = 4321ab02a9849128691e9b80a5c5576793a218de14885fddccb91f
          17ceb1646ea00a28b69ad211e1f14f17739612dbde3782319bdf00
          9689
Q0.y    = 1b8a7b539519eec0ea9f7a46a43822e16cba39a439733d6847ac44
          a806b8adb3e1a75ea48a1228b8937ba85c6cb6ee01046e10cad895
          3b1e
Q1.x    = 126d744da6a14fddec0f78a9cee4571c1320ac7645b600187812e4
          d7021f98fc4703732c54daec787206e1f34d9dbbf4b292c68160b8
          bfbd
Q1.y    = 136eebe6020f2389d448923899a1a38a4c8ad74254e0686e91c4f9
          3c1f8f8e1bd619ffb7c1281467882a9c957d22d50f65c5b72b2aee
          11af
]]></artwork>
        </section>
        <section anchor="curve448xofshake256ell2nu" numbered="true" toc="default">
          <name>curve448_XOF:SHAKE256_ELL2_NU_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = curve448_XOF:SHAKE256_ELL2_NU_
dst     = QUUX-V01-CS02-with-curve448_XOF:SHAKE256_ELL2_NU_

msg     =
P.x     = b65e8dbb279fd656f926f68d463b13ca7a982b32f5da9c7cc58afc
          f6199e4729863fb75ca9ae3c95c6887d95a5102637a1c5c40ff0aa
          fadc
P.y     = ea1ea211cf29eca11c057fe8248181591a19f6ac51d45843a65d4b
          b8b71bc83a64c771ed7686218a278ef1c5d620f3d26b5316218864
          5453
u[0]    = 242c70f74eac8184116c71630d284cf8a742fc463e710545847ff6
          4d8e9161cb9f599728a18a32dbd8b67c3bec5d64c9b1d2f2cde7b5
          888d
Q.x     = e6304424de5af3f556d3e645600530c53ad949891c3e60ba041dd5
          f68a93901beff8440164477d348c13d28e27bfcd360c44c80b4c7d
          4cea
Q.y     = 4160a8f2043a347185406a6a7e50973b98b82edbdfa3209b0e1c90
          118e10eeb45045b0990d4b2b0708a30eca17df40ad53c9100f20c1
          0b44

msg     = abc
P.x     = 51aceca4fa95854bbaba58d8a5e17a86c07acadef32e1188cafda2
          6232131800002cc2f27c7aec454e5e0c615bddffb7df6a5f7f0f14
          793f
P.y     = c590c9246eb28b08dee816d608ef233ea5d76e305dc458774a1e1b
          d880387e6734219e2018e4aa50a49486dce0ba8740065da37e6cf5
          212c
u[0]    = ef6dcb75b696d325fb36d66b104700df1480c4c17ea9190d447eee
          1e7e4c9b7f36bbfb8ba7ba7c4cb6b07fed16531c1ac7a26a3618b4
          0b34
Q.x     = de0dc93df9ce7953452f20e270699c1e7dacd5d571c226d77f53b7
          e3053d16f8a81b1601efb362054e973c8e733b663af93f00cb81ba
          f130
Q.y     = 8c5bdec6fa6690905f6eff966b0f98f5a8161493bd04976684d4ec
          1f4512fa8743d86860b2ff2c5d67e9c145fd906f2cb89ff812c6b9
          883f

msg     = abcdef0123456789
P.x     = c6d65987f146b8d0cb5d2c44e1872ac3af1f458f6a8bd8c232ffe8
          b9d09496229a5a27f350eb7d97305bcc4e0f38328718352e8e3129
          ed71
P.y     = 4d2f901bf333fdc4135b954f20d59207e9f6a4ecf88ce5af11c892
          b44f79766ec4ecc9f60d669b95ca8940f39b1b7044140ac2040c1b
          f659
u[0]    = 3012ba5d9b3bb648e4613833a26ecaeadb3e8c8bba07fc90ac3da0
          375769289c44d3dc87474b23df7f45f9a4030892cda689e343aeee
          a6ad
Q.x     = dc29532761f03c24d57f530da4c24acc4c676d185becaa89fcc083
          266541fb7f10ecec91dac64a34cd988274633ae25c4d784aee52de
          47a8
Q.y     = a5f6da11259c69f2e07fce6a7b6afec4c25bd2df83426765f9c070
          4111da24c6a0550d5c7aac7d648d55f7640d50be99c926195e852a
          daac

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 9b8d008863beb4a02fb9e4efefd2eba867307fb1c7ce01746115d3
          2e1db551bb254e8e3e4532d5c74a83949a69a60519ecc9178083cb
          e943
P.y     = 346a1fca454d1e67c628437c270ec0f0c4256bb774fe6c0e49de70
          04ff6d9199e2cd99d8f7575a96aafc4dc8db1811ba0a44317581f4
          1371
u[0]    = fe952ac0149f92436bba12ea2e542aa226f4fc074d79ff462c41b3
          27968a649a495a8a93b6c3044af2273456abb5e166ce4fb8c9b10c
          8c2e
Q.x     = 512803d89f59c57376e6570cd54c4e901643e089cd9456f549daa4
          372b8b52679860b68aa8bedfaa88970f15ab6098d5f252083ac98a
          58c9
Q.y     = 3d9b6593c7941a20d76161c9a171f1e507495a08f03dfcae33a2ac
          3602698e46a74d1039b583c984036f590eaa43d20ba5aada3ffb55
          2f77

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 8746dc34799112d1f20acda9d7f722c9abb29b1fb6b7e9e5669838
          43c20bd7c9bfad21b45c5166b808d2f5d44e188f1fdaf29cdee8a7
          2e4c
P.y     = 7c1293484c9287c298a1a0600c64347eee8530acf563cd8705e057
          28274d8cd8101835f8003b6f3b78b5beb28f5be188a3d7bce1ec5a
          36b1
u[0]    = afd3d7ad9d819be7561706e050d4f30b634b203387ab682739365f
          62cd7393ca2cf18cd07a3d3af8dd163f043ac7457c2eb145b4a561
          70a9
Q.x     = 08aed6480793218034fd3b3b0867943d7e0bd1b6f76b4929e0885b
          d082b84d4449341da6038bb08229ad9eb7d518dff2c7ea50148e70
          a4db
Q.y     = e00d32244561ebd4b5f4ef70fcac75a06416be0a1c1b304e7bd361
          a6a6586915bb902a323eaf73cf7738e70d34282f61485395ab2833
          d2c1
]]></artwork>
        </section>
      </section>
      <section anchor="edwards448" numbered="true" toc="default">
        <name>edwards448</name>
        <section anchor="edwards448xofshake256ell2ro" numbered="true" toc="default">
          <name>edwards448_XOF:SHAKE256_ELL2_RO_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = edwards448_XOF:SHAKE256_ELL2_RO_
dst     = QUUX-V01-CS02-with-edwards448_XOF:SHAKE256_ELL2_RO_

msg     =
P.x     = 73036d4a88949c032f01507005c133884e2f0d81f9a950826245dd
          a9e844fc78186c39daaa7147ead3e462cff60e9c6340b58134480b
          4d17
P.y     = 94c1d61b43728e5d784ef4fcb1f38e1075f3aef5e99866911de5a2
          34f1aafdc26b554344742e6ba0420b71b298671bbeb2b773661863
          4610
u[0]    = 0847c5ebf957d3370b1f98fde499fb3e659996d9fc9b5707176ade
          785ba72cd84b8a5597c12b1024be5f510fa5ba99642c4cec7f3f69
          d3e7
u[1]    = f8cbd8a7ae8c8deed071f3ac4b93e7cfcb8f1eac1645d699fd6d38
          81cb295a5d3006d9449ed7cad412a77a1fe61e84a9e41d59ef384d
          6f9a
Q0.x    = c08177330869db17fb81a5e6e53b36d29086d806269760f2e4caba
          a4015f5dbadb7ca2ba594d96a89d0ca4f0944489e1ef393d53db85
          096f
Q0.y    = 02e894598c050eeb7195f5791f1a5f65da3776b7534be37640bcbf
          95d4b915bd22333c50387583507169708fbd7bea0d7aa385dcc614
          be9c
Q1.x    = 770877fd3b6c5503398157b68a9d3609f585f40e1ebebdd69bb0e4
          d3d9aa811995ce75333fdadfa50db886a35959cc59cffd5c9710da
          ca25
Q1.y    = b27fef77aa6231fbbc27538fa90eaca8abd03eb1e62fdae4ec5e82
          8117c3b8b3ff8c34d0a6e6d79fff16d339b94ae8ede33331d5b464
          c792

msg     = abc
P.x     = 4e0158acacffa545adb818a6ed8e0b870e6abc24dfc1dc45cf9a05
          2e98469275d9ff0c168d6a5ac7ec05b742412ee090581f12aa398f
          9f8c
P.y     = 894d3fa437b2d2e28cdc3bfaade035430f350ec5239b6b406b5501
          da6f6d6210ff26719cad83b63e97ab26a12df6dec851d6bf38e294
          af9a
u[0]    = 04d975cd938ab49be3e81703d6a57cca84ed80d2ff6d4756d3f229
          47fb5b70ab0231f0087cbfb4b7cae73b41b0c9396b356a4831d9a1
          4322
u[1]    = 2547ca887ac3db7b5fad3a098aa476e90078afe1358af6c63d677d
          6edfd2100bc004e0f5db94dd2560fc5b308e223241d00488c9ca6b
          0ef2
Q0.x    = 7544612a97f4419c94ab0f621a1ee8ccf46c6657b8e0778ec9718b
          f4b41bc774487ad87d9b1e617aa49d3a4dd35a3cf57cd390ebf042
          9952
Q0.y    = d3ab703e60267d796b485bb58a28f934bd0133a6d1bbdfeda5277f
          a293310be262d7f653a5adffa608c37ed45c0e6008e54a16e1a342
          e4df
Q1.x    = 6262f18d064bc131ade1b8bbcf1cbdf984f4f88153fcc9f94c888a
          f35d5e41aae84c12f169a55d8abf06e6de6c5b23079e587a58cf73
          303e
Q1.y    = 6d57589e901abe7d947c93ab02c307ad9093ed9a83eb0b6e829fb7
          318d590381ca25f3cc628a36a924a9ddfcf3cbedf94edf3b338ea7
          7403

msg     = abcdef0123456789
P.x     = 2c25b4503fadc94b27391933b557abdecc601c13ed51c5de683894
          84f93dbd6c22e5f962d9babf7a39f39f994312f8ca23344847e1fb
          f176
P.y     = d5e6f5350f430e53a110f5ac7fcc82a96cb865aeca982029522d32
          601e41c042a9dfbdfbefa2b0bdcdc3bc58cca8a7cd546803083d3a
          8548
u[0]    = 10659ce25588db4e4be6f7c791a79eb21a7f24aaaca76a6ca3b83b
          80aaf95aa328fe7d569a1ac99f9cd216edf3915d72632f1a8b990e
          250c
u[1]    = 9243e5b6c480683fd533e81f4a778349a309ce00bd163a29eb9fa8
          dbc8f549242bef33e030db21cffacd408d2c4264b93e476c6a8590
          e7aa
Q0.x    = 1457b60c12e00e47ceb3ce64b57e7c3c61636475443d704a8e2b2a
          b0a5ac7e4b3909435416784e16e19929c653b1bdcd9478a8e5331c
          a9ae
Q0.y    = 935d9f75f7a0babbc39c0a1c3b412518ed8a24bc2c4886722fb4b7
          d4a747af98e4e2528c75221e2dffd3424abb436e10539a74caaafa
          3ea3
Q1.x    = b44d9e34211b4028f24117e856585ed81448f3c8b934987a1c5939
          c86048737a08d85934fec6b3c2ef9f09cbd365cf22744f2e4ce697
          62a4
Q1.y    = dc996c1736f4319868f897d9a27c45b02dd3bc6b7ca356a039606e
          5406e131a0bbe8238208b327b00853e8af84b58b13443e70542556
          3323

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = a1861a9464ae31249a0e60bf38791f3663049a3f5378998499a832
          92e159a2fecff838eb9bc6939e5c6ae76eb074ad4aae39b55b72ca
          0b9a
P.y     = 580a2798c5b904f8adfec5bd29fb49b4633cd9f8c2935eb4a0f12e
          5dfa0285680880296bb729c6405337525fb5ed3dff930c137314f6
          0401
u[0]    = c80390020e578f009ead417029eff6cd0926110922db63ab98395e
          3bdfdd5d8a65b1a2b8d495dc8c5e59b7f3518731f7dfc0f93ace5d
          ee4b
u[1]    = 1c4dc6653a445bbef2add81d8e90a6c8591a788deb91d0d3f1519a
          2e4a460313041b77c1b0817f2e80b388e5c3e49f37d787dc1f85e4
          324a
Q0.x    = 9d355251e245e4b13ed4ea3e5a3c55bf9b7211f1704771f2e1d8f1
          a65610c468b1cf70c6c2ce30dcaad54ad9e5439471ec554b862ec8
          875a
Q0.y    = 6689ba36a242af69ac2aadb955d15e982d9b04f5d77f7609ebf742
          9587feb7e5ce27490b9c72114509f89565122074e46a614d7fd7c8
          00bd
Q1.x    = c4b3d3ad4d2d62739a62989532992c1081e9474a201085b4616da5
          706cab824693b9fb428a201bcd1639a4588cc43b9eb841dbca7421
          9b1f
Q1.y    = 265286f5dee8f3d894b5649da8565b58e96b4cfd44b462a2883ea6
          4dbcda21a00706ea3fea53fc2d769084b0b74589e91d0384d71189
          09fb

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 987c5ac19dd4b47835466a50b2d9feba7c8491b8885a04edf577e1
          5a9f2c98b203ec2cd3e5390b3d20bba0fa6fc3eecefb5029a31723
          4401
P.y     = 5e273fcfff6b007bb6771e90509275a71ff1480c459ded26fc7b10
          664db0a68aaa98bc7ecb07e49cf05b80ae5ac653fbdd14276bbd35
          ccbc
u[0]    = 163c79ab0210a4b5e4f44fb19437ea965bf5431ab233ef16606f0b
          03c5f16a3feb7d46a5a675ce8f606e9c2bf74ee5336c54a1e54919
          f13f
u[1]    = f99666bde4995c4088333d6c2734687e815f80a99c6da02c47df4b
          51f6c9d9ed466b4fecf7d9884990a8e0d0be6907fa437e0b1a27f4
          9265
Q0.x    = d1a5eba4a332514b69760948af09ceaeddbbb9fd4cb1f19b78349c
          2ee4cf9ee86dbcf9064659a4a0566fe9c34d90aec86f0801edc131
          ad9b
Q0.y    = 5d0a75a3014c3269c33b1b5da80706a4f097893461df286353484d
          8031cd607c98edc2a846c77a841f057c7251eb45077853c7b20595
          7e52
Q1.x    = 69583b00dc6b2aced6ffa44630cc8c8cd0dd0649f57588dd0fb1da
          ad2ce132e281d01e3f25ccd3f405be759975c6484268bfe8f5e5f2
          3c30
Q1.y    = 8418484035f60bdccf48cb488634c2dfb40272123435f7e654fb6f
          254c6c42e7e38f1fa79a637a168a28de6c275232b704f9ded0ff76
          dd94
]]></artwork>
        </section>
        <section anchor="edwards448xofshake256ell2nu" numbered="true" toc="default">
          <name>edwards448_XOF:SHAKE256_ELL2_NU_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = edwards448_XOF:SHAKE256_ELL2_NU_
dst     = QUUX-V01-CS02-with-edwards448_XOF:SHAKE256_ELL2_NU_

msg     =
P.x     = eb5a1fc376fd73230af2de0f3374087cc7f279f0460114cf0a6c12
          d6d044c16de34ec2350c34b26bf110377655ab77936869d085406a
          f71e
P.y     = df5dcea6d42e8f494b279a500d09e895d26ac703d75ca6d118e8ca
          58bf6f608a2a383f292fce1563ff995dce75aede1fdc8e7c0c737a
          e9ad
u[0]    = 1368aefc0416867ea2cfc515416bcbeecc9ec81c4ecbd52ccdb91e
          06996b3f359bc930eef6743c7a2dd7adb785bc7093ed044efed950
          86d7
Q.x     = 4b2abf8c0fca49d027c2a81bf73bb5990e05f3e76c7ba137cc0b89
          415ccd55ce7f191cc0c11b0560c1cdc2a8085dd56996079e05a3cd
          8dde
Q.y     = 82532f5b0cb3bfb8542d3228d055bfe61129dbeae8bace80cf61f1
          7725e8ec8226a24f0e687f78f01da88e3b2715194a03dca7c0a96b
          bf04

msg     = abc
P.x     = 4623a64bceaba3202df76cd8b6e3daf70164f3fcbda6d6e340f7fa
          b5cdf89140d955f722524f5fe4d968fef6ba2853ff4ea086c2f67d
          8110
P.y     = abaac321a169761a8802ab5b5d10061fec1a83c670ac6bc9595470
          0317ee5f82870120e0e2c5a21b12a0c7ad17ebd343363604c4bcec
          afd1
u[0]    = cda3b0ecfe054c4077007d7300969ec24f4c741300b630ec9188eb
          ab31a5ae0065612ee22d9f793733179ffc2e10c53ca5b539057aaf
          dc2f
Q.x     = b1ca5bef2f157673a210f56c9b0039db8399e4749585abac64f831
          f74ed1ec5f591928976c687c06d57686bacb98440e77af878349cd
          f2d2
Q.y     = 5bbfd6a3730d517b03c3cd9e2eed94af12891334ec090e0495c2ed
          c588e9e10b6f63b03a62076808cbcd6da95adfb5af76c136b2d42e
          0dac

msg     = abcdef0123456789
P.x     = e9eb562e76db093baa43a31b7edd04ec4aadcef3389a7b9c58a19c
          f87f8ae3d154e134b6b3ed45847a741e33df51903da681629a4b8b
          cc2e
P.y     = 0cf6606927ad7eb15dbc193993bc7e4dda744b311a8ec4274c8f73
          8f74f605934582474c79260f60280fe35bd37d4347e59184cbfa12
          cbc4
u[0]    = d36bae98351512c382c7a3e1eba22497574f11fef9867901b1a270
          0b39fa2cd0d38ed4380387a99162b7ba0240c743f0532ef60d577c
          413d
Q.x     = 958a51e2f02e0dfd3930709010d5d16f869adb9d8a8f7c01139911
          d206c20cdb7bfb40ee33ba30536a99f49362fa7633d0f417fc3914
          fe21
Q.y     = f4307a36ab6612fa97501497f01afa109733ce85875935551c3ca9
          0f0fa7e0097a8640bb7e5dbcc38ab32b23b748790f2261f2c44c3b
          f3ba

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 122a3234d34b26c69749f23356452bf9501efa2d94859d5ef741fe
          f024156d9d191a03a2ad24c38186f93e02d05572575968b083d8a3
          9738
P.y     = ddf55e74eb4414c2c1fa4aa6bc37c4ab470a3fed6bb5af1e435703
          09b162fb61879bb15f9ea49c712efd42d0a71666430f9f0d4a2050
          5050
u[0]    = 5945744d27122f89da3daf76ab4db9616053df64e25d30ec9a0066
          7ee6710240579c1db8f8ef3386f3f4f413cfb325ac14094d582026
          a971
Q.x     = e7e1f2d13548ac2c8fcd346e4c63606545bf93652011721e83ac3b
          64226f77a8823d3881e164bc6ca45505b236e8e3721c028052fcc9
          ade5
Q.y     = 7e0f340501bf25f018b9d374c2acbdd43c07261d85a6ef3c855113
          d4e023634db59a87b8fab9efe04ed1fee302c8a4994e83bdda32bd
          9c0b

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 221704949b1ce1ab8dd174dc9b8c56fcffa27179569ce9219c0c2f
          e183d3d23343a4c42a0e2e9d6b9d0feb1df3883ec489b6671d1fa6
          4089
P.y     = ebdecfdc87142d1a919034bf22ecfad934c9a85effff14b594ae2c
          00943ca62a39d6ee3be9df0bb504ce8a9e1669bc6959c42ad6a1d3
          b686
u[0]    = 1192e378043f01cedc7ea0209321519213b0184ea0d8575816bcd9
          182a367823e1eecc2faf1df8f79b24027a4b9bfa208cd320e79bef
          06ea
Q.x     = 0fd3bb833c1d7a5b319d1d4117406a23b9aece976186ecb18a11a6
          35e6fbdb920d47e04762b1f2a8c59d2f8435d0fdefe501f544cda2
          3dbf
Q.y     = f13b0dad4d5eeb120f2443ac4392f8096a1396f5014ec2a3506a34
          7fef8076a7282035cf619599b1919cf29df5ce87711c11688aab77
          00a6
]]></artwork>
        </section>
      </section>
      <section anchor="secp256k1" numbered="true" toc="default">
        <name>secp256k1</name>
        <section anchor="secp256k1xmdsha-256sswuro" numbered="true" toc="default">
          <name>secp256k1_XMD:SHA-256_SSWU_RO_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = secp256k1_XMD:SHA-256_SSWU_RO_
dst     = QUUX-V01-CS02-with-secp256k1_XMD:SHA-256_SSWU_RO_

msg     =
P.x     = c1cae290e291aee617ebaef1be6d73861479c48b841eaba9b7b585
          2ddfeb1346
P.y     = 64fa678e07ae116126f08b022a94af6de15985c996c3a91b64c406
          a960e51067
u[0]    = 6b0f9910dd2ba71c78f2ee9f04d73b5f4c5f7fc773a701abea1e57
          3cab002fb3
u[1]    = 1ae6c212e08fe1a5937f6202f929a2cc8ef4ee5b9782db68b0d579
          9fd8f09e16
Q0.x    = 74519ef88b32b425a095e4ebcc84d81b64e9e2c2675340a720bb1a
          1857b99f1e
Q0.y    = c174fa322ab7c192e11748beed45b508e9fdb1ce046dee9c2cd3a2
          a86b410936
Q1.x    = 44548adb1b399263ded3510554d28b4bead34b8cf9a37b4bd0bd2b
          a4db87ae63
Q1.y    = 96eb8e2faf05e368efe5957c6167001760233e6dd2487516b46ae7
          25c4cce0c6

msg     = abc
P.x     = 3377e01eab42db296b512293120c6cee72b6ecf9f9205760bd9ff1
          1fb3cb2c4b
P.y     = 7f95890f33efebd1044d382a01b1bee0900fb6116f94688d487c6c
          7b9c8371f6
u[0]    = 128aab5d3679a1f7601e3bdf94ced1f43e491f544767e18a4873f3
          97b08a2b61
u[1]    = 5897b65da3b595a813d0fdcc75c895dc531be76a03518b044daaa0
          f2e4689e00
Q0.x    = 07dd9432d426845fb19857d1b3a91722436604ccbbbadad8523b8f
          c38a5322d7
Q0.y    = 604588ef5138cffe3277bbd590b8550bcbe0e523bbaf1bed4014a4
          67122eb33f
Q1.x    = e9ef9794d15d4e77dde751e06c182782046b8dac05f8491eb88764
          fc65321f78
Q1.y    = cb07ce53670d5314bf236ee2c871455c562dd76314aa41f012919f
          e8e7f717b3

msg     = abcdef0123456789
P.x     = bac54083f293f1fe08e4a70137260aa90783a5cb84d3f35848b324
          d0674b0e3a
P.y     = 4436476085d4c3c4508b60fcf4389c40176adce756b398bdee27bc
          a19758d828
u[0]    = ea67a7c02f2cd5d8b87715c169d055a22520f74daeb080e6180958
          380e2f98b9
u[1]    = 7434d0d1a500d38380d1f9615c021857ac8d546925f5f2355319d8
          23a478da18
Q0.x    = 576d43ab0260275adf11af990d130a5752704f7947862876172080
          8862544b5d
Q0.y    = 643c4a7fb68ae6cff55edd66b809087434bbaff0c07f3f9ec4d49b
          b3c16623c3
Q1.x    = f89d6d261a5e00fe5cf45e827b507643e67c2a947a20fd9ad71039
          f8b0e29ff8
Q1.y    = b33855e0cc34a9176ead91c6c3acb1aacb1ce936d563bc1cee1dcf
          fc806caf57

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = e2167bc785333a37aa562f021f1e881defb853839babf52a7f72b1
          02e41890e9
P.y     = f2401dd95cc35867ffed4f367cd564763719fbc6a53e969fb8496a
          1e6685d873
u[0]    = eda89a5024fac0a8207a87e8cc4e85aa3bce10745d501a30deb873
          41b05bcdf5
u[1]    = dfe78cd116818fc2c16f3837fedbe2639fab012c407eac9dfe9245
          bf650ac51d
Q0.x    = 9c91513ccfe9520c9c645588dff5f9b4e92eaf6ad4ab6f1cd720d1
          92eb58247a
Q0.y    = c7371dcd0134412f221e386f8d68f49e7fa36f9037676e163d4a06
          3fbf8a1fb8
Q1.x    = 10fee3284d7be6bd5912503b972fc52bf4761f47141a0015f1c6ae
          36848d869b
Q1.y    = 0b163d9b4bf21887364332be3eff3c870fa053cf508732900fc69a
          6eb0e1b672

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = e3c8d35aaaf0b9b647e88a0a0a7ee5d5bed5ad38238152e4e6fd8c
          1f8cb7c998
P.y     = 8446eeb6181bf12f56a9d24e262221cc2f0c4725c7e3803024b588
          8ee5823aa6
u[0]    = 8d862e7e7e23d7843fe16d811d46d7e6480127a6b78838c277bca1
          7df6900e9f
u[1]    = 68071d2530f040f081ba818d3c7188a94c900586761e9115efa47a
          e9bd847938
Q0.x    = b32b0ab55977b936f1e93fdc68cec775e13245e161dbfe556bbb1f
          72799b4181
Q0.y    = 2f5317098360b722f132d7156a94822641b615c91f8663be691698
          70a12af9e8
Q1.x    = 148f98780f19388b9fa93e7dc567b5a673e5fca7079cd9cdafd719
          82ec4c5e12
Q1.y    = 3989645d83a433bc0c001f3dac29af861f33a6fd1e04f4b36873f5
          bff497298a
]]></artwork>
        </section>
        <section anchor="secp256k1xmdsha-256sswunu" numbered="true" toc="default">
          <name>secp256k1_XMD:SHA-256_SSWU_NU_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = secp256k1_XMD:SHA-256_SSWU_NU_
dst     = QUUX-V01-CS02-with-secp256k1_XMD:SHA-256_SSWU_NU_

msg     =
P.x     = a4792346075feae77ac3b30026f99c1441b4ecf666ded19b7522cf
          65c4c55c5b
P.y     = 62c59e2a6aeed1b23be5883e833912b08ba06be7f57c0e9cdc663f
          31639ff3a7
u[0]    = 0137fcd23bc3da962e8808f97474d097a6c8aa2881fceef4514173
          635872cf3b
Q.x     = a4792346075feae77ac3b30026f99c1441b4ecf666ded19b7522cf
          65c4c55c5b
Q.y     = 62c59e2a6aeed1b23be5883e833912b08ba06be7f57c0e9cdc663f
          31639ff3a7

msg     = abc
P.x     = 3f3b5842033fff837d504bb4ce2a372bfeadbdbd84a1d2b678b6e1
          d7ee426b9d
P.y     = 902910d1fef15d8ae2006fc84f2a5a7bda0e0407dc913062c3a493
          c4f5d876a5
u[0]    = e03f894b4d7caf1a50d6aa45cac27412c8867a25489e32c5ddeb50
          3229f63a2e
Q.x     = 3f3b5842033fff837d504bb4ce2a372bfeadbdbd84a1d2b678b6e1
          d7ee426b9d
Q.y     = 902910d1fef15d8ae2006fc84f2a5a7bda0e0407dc913062c3a493
          c4f5d876a5

msg     = abcdef0123456789
P.x     = 07644fa6281c694709f53bdd21bed94dab995671e4a8cd1904ec4a
          a50c59bfdf
P.y     = c79f8d1dad79b6540426922f7fbc9579c3018dafeffcd4552b1626
          b506c21e7b
u[0]    = e7a6525ae7069ff43498f7f508b41c57f80563c1fe4283510b3224
          46f32af41b
Q.x     = 07644fa6281c694709f53bdd21bed94dab995671e4a8cd1904ec4a
          a50c59bfdf
Q.y     = c79f8d1dad79b6540426922f7fbc9579c3018dafeffcd4552b1626
          b506c21e7b

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = b734f05e9b9709ab631d960fa26d669c4aeaea64ae62004b9d34f4
          83aa9acc33
P.y     = 03fc8a4a5a78632e2eb4d8460d69ff33c1d72574b79a35e402e801
          f2d0b1d6ee
u[0]    = d97cf3d176a2f26b9614a704d7d434739d194226a706c886c5c3c3
          9806bc323c
Q.x     = b734f05e9b9709ab631d960fa26d669c4aeaea64ae62004b9d34f4
          83aa9acc33
Q.y     = 03fc8a4a5a78632e2eb4d8460d69ff33c1d72574b79a35e402e801
          f2d0b1d6ee

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 17d22b867658977b5002dbe8d0ee70a8cfddec3eec50fb93f36136
          070fd9fa6c
P.y     = e9178ff02f4dab73480f8dd590328aea99856a7b6cc8e5a6cdf289
          ecc2a51718
u[0]    = a9ffbeee1d6e41ac33c248fb3364612ff591b502386c1bf6ac4aaf
          1ea51f8c3b
Q.x     = 17d22b867658977b5002dbe8d0ee70a8cfddec3eec50fb93f36136
          070fd9fa6c
Q.y     = e9178ff02f4dab73480f8dd590328aea99856a7b6cc8e5a6cdf289
          ecc2a51718
]]></artwork>
        </section>
      </section>
      <section anchor="bls12-381-g1" numbered="true" toc="default">
        <name>BLS12-381 G1</name>
        <section anchor="bls12381g1xmdsha-256sswuro" numbered="true" toc="default">
          <name>BLS12381G1_XMD:SHA-256_SSWU_RO_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = BLS12381G1_XMD:SHA-256_SSWU_RO_
dst     = QUUX-V01-CS02-with-BLS12381G1_XMD:SHA-256_SSWU_RO_

msg     =
P.x     = 052926add2207b76ca4fa57a8734416c8dc95e24501772c8142787
          00eed6d1e4e8cf62d9c09db0fac349612b759e79a1
P.y     = 08ba738453bfed09cb546dbb0783dbb3a5f1f566ed67bb6be0e8c6
          7e2e81a4cc68ee29813bb7994998f3eae0c9c6a265
u[0]    = 0ba14bd907ad64a016293ee7c2d276b8eae71f25a4b941eece7b0d
          89f17f75cb3ae5438a614fb61d6835ad59f29c564f
u[1]    = 019b9bd7979f12657976de2884c7cce192b82c177c80e0ec604436
          a7f538d231552f0d96d9f7babe5fa3b19b3ff25ac9
Q0.x    = 11a3cce7e1d90975990066b2f2643b9540fa40d6137780df4e753a
          8054d07580db3b7f1f03396333d4a359d1fe3766fe
Q0.y    = 0eeaf6d794e479e270da10fdaf768db4c96b650a74518fc67b04b0
          3927754bac66f3ac720404f339ecdcc028afa091b7
Q1.x    = 160003aaf1632b13396dbad518effa00fff532f604de1a7fc2082f
          f4cb0afa2d63b2c32da1bef2bf6c5ca62dc6b72f9c
Q1.y    = 0d8bb2d14e20cf9f6036152ed386d79189415b6d015a20133acb4e
          019139b94e9c146aaad5817f866c95d609a361735e

msg     = abc
P.x     = 03567bc5ef9c690c2ab2ecdf6a96ef1c139cc0b2f284dca0a9a794
          3388a49a3aee664ba5379a7655d3c68900be2f6903
P.y     = 0b9c15f3fe6e5cf4211f346271d7b01c8f3b28be689c8429c85b67
          af215533311f0b8dfaaa154fa6b88176c229f2885d
u[0]    = 0d921c33f2bad966478a03ca35d05719bdf92d347557ea166e5bba
          579eea9b83e9afa5c088573c2281410369fbd32951
u[1]    = 003574a00b109ada2f26a37a91f9d1e740dffd8d69ec0c35e1e9f4
          652c7dba61123e9dd2e76c655d956e2b3462611139
Q0.x    = 125435adce8e1cbd1c803e7123f45392dc6e326d292499c2c45c58
          65985fd74fe8f042ecdeeec5ecac80680d04317d80
Q0.y    = 0e8828948c989126595ee30e4f7c931cbd6f4570735624fd25aef2
          fa41d3f79cfb4b4ee7b7e55a8ce013af2a5ba20bf2
Q1.x    = 11def93719829ecda3b46aa8c31fc3ac9c34b428982b898369608e
          4f042babee6c77ab9218aad5c87ba785481eff8ae4
Q1.y    = 0007c9cef122ccf2efd233d6eb9bfc680aa276652b0661f4f820a6
          53cec1db7ff69899f8e52b8e92b025a12c822a6ce6

msg     = abcdef0123456789
P.x     = 11e0b079dea29a68f0383ee94fed1b940995272407e3bb916bbf26
          8c263ddd57a6a27200a784cbc248e84f357ce82d98
P.y     = 03a87ae2caf14e8ee52e51fa2ed8eefe80f02457004ba4d486d6aa
          1f517c0889501dc7413753f9599b099ebcbbd2d709
u[0]    = 062d1865eb80ebfa73dcfc45db1ad4266b9f3a93219976a3790ab8
          d52d3e5f1e62f3b01795e36834b17b70e7b76246d4
u[1]    = 0cdc3e2f271f29c4ff75020857ce6c5d36008c9b48385ea2f2bf6f
          96f428a3deb798aa033cd482d1cdc8b30178b08e3a
Q0.x    = 08834484878c217682f6d09a4b51444802fdba3d7f2df9903a0dda
          db92130ebbfa807fffa0eabf257d7b48272410afff
Q0.y    = 0b318f7ecf77f45a0f038e62d7098221d2dbbca2a394164e2e3fe9
          53dc714ac2cde412d8f2d7f0c03b259e6795a2508e
Q1.x    = 158418ed6b27e2549f05531a8281b5822b31c3bf3144277fbb977f
          8d6e2694fedceb7011b3c2b192f23e2a44b2bd106e
Q1.y    = 1879074f344471fac5f839e2b4920789643c075792bec5af4282c7
          3f7941cda5aa77b00085eb10e206171b9787c4169f

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 15f68eaa693b95ccb85215dc65fa81038d69629f70aeee0d0f677c
          f22285e7bf58d7cb86eefe8f2e9bc3f8cb84fac488
P.y     = 1807a1d50c29f430b8cafc4f8638dfeeadf51211e1602a5f184443
          076715f91bb90a48ba1e370edce6ae1062f5e6dd38
u[0]    = 010476f6a060453c0b1ad0b628f3e57c23039ee16eea5e71bb87c3
          b5419b1255dc0e5883322e563b84a29543823c0e86
u[1]    = 0b1a912064fb0554b180e07af7e787f1f883a0470759c03c1b6509
          eb8ce980d1670305ae7b928226bb58fdc0a419f46e
Q0.x    = 0cbd7f84ad2c99643fea7a7ac8f52d63d66cefa06d9a56148e58b9
          84b3dd25e1f41ff47154543343949c64f88d48a710
Q0.y    = 052c00e4ed52d000d94881a5638ae9274d3efc8bc77bc0e5c650de
          04a000b2c334a9e80b85282a00f3148dfdface0865
Q1.x    = 06493fb68f0d513af08be0372f849436a787e7b701ae31cb964d96
          8021d6ba6bd7d26a38aaa5a68e8c21a6b17dc8b579
Q1.y    = 02e98f2ccf5802b05ffaac7c20018bc0c0b2fd580216c4aa2275d2
          909dc0c92d0d0bdc979226adeb57a29933536b6bb4

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 082aabae8b7dedb0e78aeb619ad3bfd9277a2f77ba7fad20ef6aab
          dc6c31d19ba5a6d12283553294c1825c4b3ca2dcfe
P.y     = 05b84ae5a942248eea39e1d91030458c40153f3b654ab7872d779a
          d1e942856a20c438e8d99bc8abfbf74729ce1f7ac8
u[0]    = 0a8ffa7447f6be1c5a2ea4b959c9454b431e29ccc0802bc052413a
          9c5b4f9aac67a93431bd480d15be1e057c8a08e8c6
u[1]    = 05d487032f602c90fa7625dbafe0f4a49ef4a6b0b33d7bb349ff4c
          f5410d297fd6241876e3e77b651cfc8191e40a68b7
Q0.x    = 0cf97e6dbd0947857f3e578231d07b309c622ade08f2c08b32ff37
          2bd90db19467b2563cc997d4407968d4ac80e154f8
Q0.y    = 127f0cddf2613058101a5701f4cb9d0861fd6c2a1b8e0afe194fcc
          f586a3201a53874a2761a9ab6d7220c68661a35ab3
Q1.x    = 092f1acfa62b05f95884c6791fba989bbe58044ee6355d100973bf
          9553ade52b47929264e6ae770fb264582d8dce512a
Q1.y    = 028e6d0169a72cfedb737be45db6c401d3adfb12c58c619c82b93a
          5dfcccef12290de530b0480575ddc8397cda0bbebf
]]></artwork>
        </section>
        <section anchor="bls12381g1xmdsha-256sswunu" numbered="true" toc="default">
          <name>BLS12381G1_XMD:SHA-256_SSWU_NU_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = BLS12381G1_XMD:SHA-256_SSWU_NU_
dst     = QUUX-V01-CS02-with-BLS12381G1_XMD:SHA-256_SSWU_NU_

msg     =
P.x     = 184bb665c37ff561a89ec2122dd343f20e0f4cbcaec84e3c3052ea
          81d1834e192c426074b02ed3dca4e7676ce4ce48ba
P.y     = 04407b8d35af4dacc809927071fc0405218f1401a6d15af775810e
          4e460064bcc9468beeba82fdc751be70476c888bf3
u[0]    = 156c8a6a2c184569d69a76be144b5cdc5141d2d2ca4fe341f011e2
          5e3969c55ad9e9b9ce2eb833c81a908e5fa4ac5f03
Q.x     = 11398d3b324810a1b093f8e35aa8571cced95858207e7f49c4fd74
          656096d61d8a2f9a23cdb18a4dd11cd1d66f41f709
Q.y     = 19316b6fb2ba7717355d5d66a361899057e1e84a6823039efc7bec
          cefe09d023fb2713b1c415fcf278eb0c39a89b4f72

msg     = abc
P.x     = 009769f3ab59bfd551d53a5f846b9984c59b97d6842b20a2c565ba
          a167945e3d026a3755b6345df8ec7e6acb6868ae6d
P.y     = 1532c00cf61aa3d0ce3e5aa20c3b531a2abd2c770a790a26138183
          03c6b830ffc0ecf6c357af3317b9575c567f11cd2c
u[0]    = 147e1ed29f06e4c5079b9d14fc89d2820d32419b990c1c7bb7dbea
          2a36a045124b31ffbde7c99329c05c559af1c6cc82
Q.x     = 1998321bc27ff6d71df3051b5aec12ff47363d81a5e9d2dff55f44
          4f6ca7e7d6af45c56fd029c58237c266ef5cda5254
Q.y     = 034d274476c6307ae584f951c82e7ea85b84f72d28f4d647173235
          6121af8d62a49bc263e8eb913a6cf6f125995514ee

msg     = abcdef0123456789
P.x     = 1974dbb8e6b5d20b84df7e625e2fbfecb2cdb5f77d5eae5fb2955e
          5ce7313cae8364bc2fff520a6c25619739c6bdcb6a
P.y     = 15f9897e11c6441eaa676de141c8d83c37aab8667173cbe1dfd6de
          74d11861b961dccebcd9d289ac633455dfcc7013a3
u[0]    = 04090815ad598a06897dd89bcda860f25837d54e897298ce31e694
          7378134d3761dc59a572154963e8c954919ecfa82d
Q.x     = 17d502fa43bd6a4cad2859049a0c3ecefd60240d129be65da271a4
          c03a9c38fa78163b9d2a919d2beb57df7d609b4919
Q.y     = 109019902ae93a8732abecf2ff7fecd2e4e305eb91f41c9c3267f1
          6b6c19de138c7272947f25512745da6c466cdfd1ac

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 0a7a047c4a8397b3446450642c2ac64d7239b61872c9ae7a59707a
          8f4f950f101e766afe58223b3bff3a19a7f754027c
P.y     = 1383aebba1e4327ccff7cf9912bda0dbc77de048b71ef8c8a81111
          d71dc33c5e3aa6edee9cf6f5fe525d50cc50b77cc9
u[0]    = 08dccd088ca55b8bfbc96fb50bb25c592faa867a8bb78d4e94a8cc
          2c92306190244532e91feba2b7fed977e3c3bb5a1f
Q.x     = 112eb92dd2b3aa9cd38b08de4bef603f2f9fb0ca226030626a9a2e
          47ad1e9847fe0a5ed13766c339e38f514bba143b21
Q.y     = 17542ce2f8d0a54f2c5ba8c4b14e10b22d5bcd7bae2af3c965c8c8
          72b571058c720eac448276c99967ded2bf124490e1

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 0e7a16a975904f131682edbb03d9560d3e48214c9986bd50417a77
          108d13dc957500edf96462a3d01e62dc6cd468ef11
P.y     = 0ae89e677711d05c30a48d6d75e76ca9fb70fe06c6dd6ff988683d
          89ccde29ac7d46c53bb97a59b1901abf1db66052db
u[0]    = 0dd824886d2123a96447f6c56e3a3fa992fbfefdba17b6673f9f63
          0ff19e4d326529db37e1c1be43f905bf9202e0278d
Q.x     = 1775d400a1bacc1c39c355da7e96d2d1c97baa9430c4a3476881f8
          521c09a01f921f592607961efc99c4cd46bd78ca19
Q.y     = 1109b5d59f65964315de65a7a143e86eabc053104ed289cf480949
          317a5685fad7254ff8e7fe6d24d3104e5d55ad6370
]]></artwork>
        </section>
      </section>
      <section anchor="bls12-381-g2" numbered="true" toc="default">
        <name>BLS12-381 G2</name>
        <section anchor="bls12381g2xmdsha-256sswuro" numbered="true" toc="default">
          <name>BLS12381G2_XMD:SHA-256_SSWU_RO_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = BLS12381G2_XMD:SHA-256_SSWU_RO_
dst     = QUUX-V01-CS02-with-BLS12381G2_XMD:SHA-256_SSWU_RO_

msg     =
P.x     = 0141ebfbdca40eb85b87142e130ab689c673cf60f1a3e98d693352
          66f30d9b8d4ac44c1038e9dcdd5393faf5c41fb78a
    + I * 05cb8437535e20ecffaef7752baddf98034139c38452458baeefab
          379ba13dff5bf5dd71b72418717047f5b0f37da03d
P.y     = 0503921d7f6a12805e72940b963c0cf3471c7b2a524950ca195d11
          062ee75ec076daf2d4bc358c4b190c0c98064fdd92
    + I * 12424ac32561493f3fe3c260708a12b7c620e7be00099a974e259d
          dc7d1f6395c3c811cdd19f1e8dbf3e9ecfdcbab8d6
u[0]    = 03dbc2cce174e91ba93cbb08f26b917f98194a2ea08d1cce75b2b9
          cc9f21689d80bd79b594a613d0a68eb807dfdc1cf8
    + I * 05a2acec64114845711a54199ea339abd125ba38253b70a92c876d
          f10598bd1986b739cad67961eb94f7076511b3b39a
u[1]    = 02f99798e8a5acdeed60d7e18e9120521ba1f47ec090984662846b
          c825de191b5b7641148c0dbc237726a334473eee94
    + I * 145a81e418d4010cc027a68f14391b30074e89e60ee7a22f87217b
          2f6eb0c4b94c9115b436e6fa4607e95a98de30a435
Q0.x    = 019ad3fc9c72425a998d7ab1ea0e646a1f6093444fc6965f1cad5a
          3195a7b1e099c050d57f45e3fa191cc6d75ed7458c
    + I * 171c88b0b0efb5eb2b88913a9e74fe111a4f68867b59db252ce586
          8af4d1254bfab77ebde5d61cd1a86fb2fe4a5a1c1d
Q0.y    = 0ba10604e62bdd9eeeb4156652066167b72c8d743b050fb4c1016c
          31b505129374f76e03fa127d6a156213576910fef3
    + I * 0eb22c7a543d3d376e9716a49b72e79a89c9bfe9feee8533ed931c
          bb5373dde1fbcd7411d8052e02693654f71e15410a
Q1.x    = 113d2b9cd4bd98aee53470b27abc658d91b47a78a51584f3d4b950
          677cfb8a3e99c24222c406128c91296ef6b45608be
    + I * 13855912321c5cb793e9d1e88f6f8d342d49c0b0dbac613ee9e17e
          3c0b3c97dfbb5a49cc3fb45102fdbaf65e0efe2632
Q1.y    = 0fd3def0b7574a1d801be44fde617162aa2e89da47f464317d9bb5
          abc3a7071763ce74180883ad7ad9a723a9afafcdca
    + I * 056f617902b3c0d0f78a9a8cbda43a26b65f602f8786540b9469b0
          60db7b38417915b413ca65f875c130bebfaa59790c

msg     = abc
P.x     = 02c2d18e033b960562aae3cab37a27ce00d80ccd5ba4b7fe0e7a21
          0245129dbec7780ccc7954725f4168aff2787776e6
    + I * 139cddbccdc5e91b9623efd38c49f81a6f83f175e80b06fc374de9
          eb4b41dfe4ca3a230ed250fbe3a2acf73a41177fd8
P.y     = 1787327b68159716a37440985269cf584bcb1e621d3a7202be6ea0
          5c4cfe244aeb197642555a0645fb87bf7466b2ba48
    + I * 00aa65dae3c8d732d10ecd2c50f8a1baf3001578f71c694e03866e
          9f3d49ac1e1ce70dd94a733534f106d4cec0eddd16
u[0]    = 15f7c0aa8f6b296ab5ff9c2c7581ade64f4ee6f1bf18f55179ff44
          a2cf355fa53dd2a2158c5ecb17d7c52f63e7195771
    + I * 01c8067bf4c0ba709aa8b9abc3d1cef589a4758e09ef53732d670f
          d8739a7274e111ba2fcaa71b3d33df2a3a0c8529dd
u[1]    = 187111d5e088b6b9acfdfad078c4dacf72dcd17ca17c82be35e79f
          8c372a693f60a033b461d81b025864a0ad051a06e4
    + I * 08b852331c96ed983e497ebc6dee9b75e373d923b729194af8e72a
          051ea586f3538a6ebb1e80881a082fa2b24df9f566
Q0.x    = 12b2e525281b5f4d2276954e84ac4f42cf4e13b6ac4228624e1776
          0faf94ce5706d53f0ca1952f1c5ef75239aeed55ad
    + I * 05d8a724db78e570e34100c0bc4a5fa84ad5839359b40398151f37
          cff5a51de945c563463c9efbdda569850ee5a53e77
Q0.y    = 02eacdc556d0bdb5d18d22f23dcb086dd106cad713777c7e640794
          3edbe0b3d1efe391eedf11e977fac55f9b94f2489c
    + I * 04bbe48bfd5814648d0b9e30f0717b34015d45a861425fabc1ee06
          fdfce36384ae2c808185e693ae97dcde118f34de41
Q1.x    = 19f18cc5ec0c2f055e47c802acc3b0e40c337256a208001dde14b2
          5afced146f37ea3d3ce16834c78175b3ed61f3c537
    + I * 15b0dadc256a258b4c68ea43605dffa6d312eef215c19e6474b3e1
          01d33b661dfee43b51abbf96fee68fc6043ac56a58
Q1.y    = 05e47c1781286e61c7ade887512bd9c2cb9f640d3be9cf87ea0bad
          24bd0ebfe946497b48a581ab6c7d4ca74b5147287f
    + I * 19f98db2f4a1fcdf56a9ced7b320ea9deecf57c8e59236b0dc21f6
          ee7229aa9705ce9ac7fe7a31c72edca0d92370c096

msg     = abcdef0123456789
P.x     = 121982811d2491fde9ba7ed31ef9ca474f0e1501297f68c298e9f4
          c0028add35aea8bb83d53c08cfc007c1e005723cd0
    + I * 190d119345b94fbd15497bcba94ecf7db2cbfd1e1fe7da034d26cb
          ba169fb3968288b3fafb265f9ebd380512a71c3f2c
P.y     = 05571a0f8d3c08d094576981f4a3b8eda0a8e771fcdcc8ecceaf13
          56a6acf17574518acb506e435b639353c2e14827c8
    + I * 0bb5e7572275c567462d91807de765611490205a941a5a6af3b169
          1bfe596c31225d3aabdf15faff860cb4ef17c7c3be
u[0]    = 0313d9325081b415bfd4e5364efaef392ecf69b087496973b22930
          3e1816d2080971470f7da112c4eb43053130b785e1
    + I * 062f84cb21ed89406890c051a0e8b9cf6c575cf6e8e18ecf63ba86
          826b0ae02548d83b483b79e48512b82a6c0686df8f
u[1]    = 1739123845406baa7be5c5dc74492051b6d42504de008c635f3535
          bb831d478a341420e67dcc7b46b2e8cba5379cca97
    + I * 01897665d9cb5db16a27657760bbea7951f67ad68f8d55f7113f24
          ba6ddd82caef240a9bfa627972279974894701d975
Q0.x    = 0f48f1ea1318ddb713697708f7327781fb39718971d72a9245b973
          1faaca4dbaa7cca433d6c434a820c28b18e20ea208
    + I * 06051467c8f85da5ba2540974758f7a1e0239a5981de441fdd8768
          0a995649c211054869c50edbac1f3a86c561ba3162
Q0.y    = 168b3d6df80069dbbedb714d41b32961ad064c227355e1ce5fac8e
          105de5e49d77f0c64867f3834848f152497eb76333
    + I * 134e0e8331cee8cb12f9c2d0742714ed9eee78a84d634c9a95f6a7
          391b37125ed48bfc6e90bf3546e99930ff67cc97bc
Q1.x    = 004fd03968cd1c99a0dd84551f44c206c84dcbdb78076c5bfee24e
          89a92c8508b52b88b68a92258403cbe1ea2da3495f
    + I * 1674338ea298281b636b2eb0fe593008d03171195fd6dcd4531e8a
          1ed1f02a72da238a17a635de307d7d24aa2d969a47
Q1.y    = 0dc7fa13fff6b12558419e0a1e94bfc3cfaf67238009991c5f24ee
          94b632c3d09e27eca329989aee348a67b50d5e236c
    + I * 169585e164c131103d85324f2d7747b23b91d66ae5d947c449c819
          4a347969fc6bbd967729768da485ba71868df8aed2

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 19a84dd7248a1066f737cc34502ee5555bd3c19f2ecdb3c7d9e24d
          c65d4e25e50d83f0f77105e955d78f4762d33c17da
    + I * 0934aba516a52d8ae479939a91998299c76d39cc0c035cd18813be
          c433f587e2d7a4fef038260eef0cef4d02aae3eb91
P.y     = 14f81cd421617428bc3b9fe25afbb751d934a00493524bc4e06563
          5b0555084dd54679df1536101b2c979c0152d09192
    + I * 09bcccfa036b4847c9950780733633f13619994394c23ff0b32fa6
          b795844f4a0673e20282d07bc69641cee04f5e5662
u[0]    = 025820cefc7d06fd38de7d8e370e0da8a52498be9b53cba9927b2e
          f5c6de1e12e12f188bbc7bc923864883c57e49e253
    + I * 034147b77ce337a52e5948f66db0bab47a8d038e712123bb381899
          b6ab5ad20f02805601e6104c29df18c254b8618c7b
u[1]    = 0930315cae1f9a6017c3f0c8f2314baa130e1cf13f6532bff0a8a1
          790cd70af918088c3db94bda214e896e1543629795
    + I * 10c4df2cacf67ea3cb3108b00d4cbd0b3968031ebc8eac4b1ebcef
          e84d6b715fde66bef0219951ece29d1facc8a520ef
Q0.x    = 09eccbc53df677f0e5814e3f86e41e146422834854a224bf5a83a5
          0e4cc0a77bfc56718e8166ad180f53526ea9194b57
    + I * 0c3633943f91daee715277bd644fba585168a72f96ded64fc5a384
          cce4ec884a4c3c30f08e09cd2129335dc8f67840ec
Q0.y    = 0eb6186a0457d5b12d132902d4468bfeb7315d83320b6c32f1c875
          f344efcba979952b4aa418589cb01af712f98cc555
    + I * 119e3cf167e69eb16c1c7830e8df88856d48be12e3ff0a40791a5c
          d2f7221311d4bf13b1847f371f467357b3f3c0b4c7
Q1.x    = 0eb3aabc1ddfce17ff18455fcc7167d15ce6b60ddc9eb9b59f8d40
          ab49420d35558686293d046fc1e42f864b7f60e381
    + I * 198bdfb19d7441ebcca61e8ff774b29d17da16547d2c10c273227a
          635cacea3f16826322ae85717630f0867539b5ed8b
Q1.y    = 0aaf1dee3adf3ed4c80e481c09b57ea4c705e1b8d25b897f0ceeec
          3990748716575f92abff22a1c8f4582aff7b872d52
    + I * 0d058d9061ed27d4259848a06c96c5ca68921a5d269b078650c882
          cb3c2bd424a8702b7a6ee4e0ead9982baf6843e924

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 01a6ba2f9a11fa5598b2d8ace0fbe0a0eacb65deceb476fbbcb64f
          d24557c2f4b18ecfc5663e54ae16a84f5ab7f62534
    + I * 11fca2ff525572795a801eed17eb12785887c7b63fb77a42be46ce
          4a34131d71f7a73e95fee3f812aea3de78b4d01569
P.y     = 0b6798718c8aed24bc19cb27f866f1c9effcdbf92397ad6448b5c9
          db90d2b9da6cbabf48adc1adf59a1a28344e79d57e
    + I * 03a47f8e6d1763ba0cad63d6114c0accbef65707825a511b251a66
          0a9b3994249ae4e63fac38b23da0c398689ee2ab52
u[0]    = 190b513da3e66fc9a3587b78c76d1d132b1152174d0b83e3c11140
          66392579a45824c5fa17649ab89299ddd4bda54935
    + I * 12ab625b0fe0ebd1367fe9fac57bb1168891846039b4216b9d9400
          7b674de2d79126870e88aeef54b2ec717a887dcf39
u[1]    = 0e6a42010cf435fb5bacc156a585e1ea3294cc81d0ceb81924d950
          40298380b164f702275892cedd81b62de3aba3f6b5
    + I * 117d9a0defc57a33ed208428cb84e54c85a6840e7648480ae42883
          8989d25d97a0af8e3255be62b25c2a85630d2dddd8
Q0.x    = 17cadf8d04a1a170f8347d42856526a24cc466cb2ddfd506cff011
          91666b7f944e31244d662c904de5440516a2b09004
    + I * 0d13ba91f2a8b0051cf3279ea0ee63a9f19bc9cb8bfcc7d78b3cbd
          8cc4fc43ba726774b28038213acf2b0095391c523e
Q0.y    = 17ef19497d6d9246fa94d35575c0f8d06ee02f21a284dbeaa78768
          cb1e25abd564e3381de87bda26acd04f41181610c5
    + I * 12c3c913ba4ed03c24f0721a81a6be7430f2971ffca8fd1729aafe
          496bb725807531b44b34b59b3ae5495e5a2dcbd5c8
Q1.x    = 16ec57b7fe04c71dfe34fb5ad84dbce5a2dbbd6ee085f1d8cd17f4
          5e8868976fc3c51ad9eeda682c7869024d24579bfd
    + I * 13103f7aace1ae1420d208a537f7d3a9679c287208026e4e3439ab
          8cd534c12856284d95e27f5e1f33eec2ce656533b0
Q1.y    = 0958b2c4c2c10fcef5a6c59b9e92c4a67b0fae3e2e0f1b6b5edad9
          c940b8f3524ba9ebbc3f2ceb3cfe377655b3163bd7
    + I * 0ccb594ed8bd14ca64ed9cb4e0aba221be540f25dd0d6ba15a4a4b
          e5d67bcf35df7853b2d8dad3ba245f1ea3697f66aa
]]></artwork>
        </section>
        <section anchor="bls12381g2xmdsha-256sswunu" numbered="true" toc="default">
          <name>BLS12381G2_XMD:SHA-256_SSWU_NU_</name>
          <artwork name="" type="" align="left" alt=""><![CDATA[
suite   = BLS12381G2_XMD:SHA-256_SSWU_NU_
dst     = QUUX-V01-CS02-with-BLS12381G2_XMD:SHA-256_SSWU_NU_

msg     =
P.x     = 00e7f4568a82b4b7dc1f14c6aaa055edf51502319c723c4dc2688c
          7fe5944c213f510328082396515734b6612c4e7bb7
    + I * 126b855e9e69b1f691f816e48ac6977664d24d99f8724868a18418
          6469ddfd4617367e94527d4b74fc86413483afb35b
P.y     = 0caead0fd7b6176c01436833c79d305c78be307da5f6af6c133c47
          311def6ff1e0babf57a0fb5539fce7ee12407b0a42
    + I * 1498aadcf7ae2b345243e281ae076df6de84455d766ab6fcdaad71
          fab60abb2e8b980a440043cd305db09d283c895e3d
u[0]    = 07355d25caf6e7f2f0cb2812ca0e513bd026ed09dda65b177500fa
          31714e09ea0ded3a078b526bed3307f804d4b93b04
    + I * 02829ce3c021339ccb5caf3e187f6370e1e2a311dec9b753631170
          63ab2015603ff52c3d3b98f19c2f65575e99e8b78c
Q.x     = 18ed3794ad43c781816c523776188deafba67ab773189b8f18c49b
          c7aa841cd81525171f7a5203b2a340579192403bef
    + I * 0727d90785d179e7b5732c8a34b660335fed03b913710b60903cf4
          954b651ed3466dc3728e21855ae822d4a0f1d06587
Q.y     = 00764a5cf6c5f61c52c838523460eb2168b5a5b43705e19cb612e0
          06f29b717897facfd15dd1c8874c915f6d53d0342d
    + I * 19290bb9797c12c1d275817aa2605ebe42275b66860f0e4d04487e
          bc2e47c50b36edd86c685a60c20a2bd584a82b011a

msg     = abc
P.x     = 108ed59fd9fae381abfd1d6bce2fd2fa220990f0f837fa30e0f279
          14ed6e1454db0d1ee957b219f61da6ff8be0d6441f
    + I * 0296238ea82c6d4adb3c838ee3cb2346049c90b96d602d7bb1b469
          b905c9228be25c627bffee872def773d5b2a2eb57d
P.y     = 033f90f6057aadacae7963b0a0b379dd46750c1c94a6357c99b65f
          63b79e321ff50fe3053330911c56b6ceea08fee656
    + I * 153606c417e59fb331b7ae6bce4fbf7c5190c33ce9402b5ebe2b70
          e44fca614f3f1382a3625ed5493843d0b0a652fc3f
u[0]    = 138879a9559e24cecee8697b8b4ad32cced053138ab913b9987277
          2dc753a2967ed50aabc907937aefb2439ba06cc50c
    + I * 0a1ae7999ea9bab1dcc9ef8887a6cb6e8f1e22566015428d220b7e
          ec90ffa70ad1f624018a9ad11e78d588bd3617f9f2
Q.x     = 0f40e1d5025ecef0d850aa0bb7bbeceab21a3d4e85e6bee857805b
          09693051f5b25428c6be343edba5f14317fcc30143
    + I * 02e0d261f2b9fee88b82804ec83db330caa75fbb12719cfa71ccce
          1c532dc4e1e79b0a6a281ed8d3817524286c8bc04c
Q.y     = 0cf4a4adc5c66da0bca4caddc6a57ecd97c8252d7526a8ff478e0d
          fed816c4d321b5c3039c6683ae9b1e6a3a38c9c0ae
    + I * 11cad1646bb3768c04be2ab2bbe1f80263b7ff6f8f9488f5bc3b68
          50e5a3e97e20acc583613c69cf3d2bfe8489744ebb

msg     = abcdef0123456789
P.x     = 038af300ef34c7759a6caaa4e69363cafeed218a1f207e93b2c70d
          91a1263d375d6730bd6b6509dcac3ba5b567e85bf3
    + I * 0da75be60fb6aa0e9e3143e40c42796edf15685cafe0279afd2a67
          c3dff1c82341f17effd402e4f1af240ea90f4b659b
P.y     = 19b148cbdf163cf0894f29660d2e7bfb2b68e37d54cc83fd4e6e62
          c020eaa48709302ef8e746736c0e19342cc1ce3df4
    + I * 0492f4fed741b073e5a82580f7c663f9b79e036b70ab3e51162359
          cec4e77c78086fe879b65ca7a47d34374c8315ac5e
u[0]    = 18c16fe362b7dbdfa102e42bdfd3e2f4e6191d479437a59db4eb71
          6986bf08ee1f42634db66bde97d6c16bbfd342b3b8
    + I * 0e37812ce1b146d998d5f92bdd5ada2a31bfd63dfe18311aa91637
          b5f279dd045763166aa1615e46a50d8d8f475f184e
Q.x     = 13a9d4a738a85c9f917c7be36b240915434b58679980010499b9ae
          8d7a1bf7fbe617a15b3cd6060093f40d18e0f19456
    + I * 16fa88754e7670366a859d6f6899ad765bf5a177abedb2740aacc9
          252c43f90cd0421373fbd5b2b76bb8f5c4886b5d37
Q.y     = 0a7fa7d82c46797039398253e8765a4194100b330dfed6d7fbb46d
          6fbf01e222088779ac336e3675c7a7a0ee05bbb6e3
    + I * 0c6ee170ab766d11fa9457cef53253f2628010b2cffc102b3b2835
          1eb9df6c281d3cfc78e9934769d661b72a5265338d

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
P.x     = 0c5ae723be00e6c3f0efe184fdc0702b64588fe77dda152ab13099
          a3bacd3876767fa7bbad6d6fd90b3642e902b208f9
    + I * 12c8c05c1d5fc7bfa847f4d7d81e294e66b9a78bc9953990c35894
          5e1f042eedafce608b67fdd3ab0cb2e6e263b9b1ad
P.y     = 04e77ddb3ede41b5ec4396b7421dd916efc68a358a0d7425bddd25
          3547f2fb4830522358491827265dfc5bcc1928a569
    + I * 11c624c56dbe154d759d021eec60fab3d8b852395a89de497e4850
          4366feedd4662d023af447d66926a28076813dd646
u[0]    = 08d4a0997b9d52fecf99427abb721f0fa779479963315fe21c6445
          250de7183e3f63bfdf86570da8929489e421d4ee95
    + I * 16cb4ccad91ec95aab070f22043916cd6a59c4ca94097f7f510043
          d48515526dc8eaaea27e586f09151ae613688d5a89
Q.x     = 0a08b2f639855dfdeaaed972702b109e2241a54de198b2b4cd12ad
          9f88fa419a6086a58d91fc805de812ea29bee427c2
    + I * 04a7442e4cb8b42ef0f41dac9ee74e65ecad3ce0851f0746dc4756
          8b0e7a8134121ed09ba054509232c49148aef62cda
Q.y     = 05d60b1f04212b2c87607458f71d770f43973511c260f0540eef3a
          565f42c7ce59aa1cea684bb2a7bcab84acd2f36c8c
    + I * 1017aa5747ba15505ece266a86b0ca9c712f41a254b76ca04094ca
          442ce45ecd224bd5544cd16685d0d1b9d156dd0531

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
P.x     = 0ea4e7c33d43e17cc516a72f76437c4bf81d8f4eac69ac355d3bf9
          b71b8138d55dc10fd458be115afa798b55dac34be1
    + I * 1565c2f625032d232f13121d3cfb476f45275c303a037faa255f9d
          a62000c2c864ea881e2bcddd111edc4a3c0da3e88d
P.y     = 043b6f5fe4e52c839148dc66f2b3751e69a0f6ebb3d056d6465d50
          d4108543ecd956e10fa1640dfd9bc0030cc2558d28
    + I * 0f8991d2a1ad662e7b6f58ab787947f1fa607fce12dde171bc1790
          3b012091b657e15333e11701edcf5b63ba2a561247
u[0]    = 03f80ce4ff0ca2f576d797a3660e3f65b274285c054feccc3215c8
          79e2c0589d376e83ede13f93c32f05da0f68fd6a10
    + I * 006488a837c5413746d868d1efb7232724da10eca410b07d8b505b
          9363bdccf0a1fc0029bad07d65b15ccfe6dd25e20d
Q.x     = 19592c812d5a50c5601062faba14c7d670711745311c879de1235a
          0a11c75aab61327bf2d1725db07ec4d6996a682886
    + I * 0eef4fa41ddc17ed47baf447a2c498548f3c72a02381313d13bef9
          16e240b61ce125539090d62d9fbb14a900bf1b8e90
Q.y     = 1260d6e0987eae96af9ebe551e08de22b37791d53f4db9e0d59da7
          36e66699735793e853e26362531fe4adf99c1883e3
    + I * 0dbace5df0a4ac4ac2f45d8fdf8aee45484576fdd6efc4f98ab9b9
          f4112309e628255e183022d98ea5ed6e47ca00306c
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="expand-testvectors" numbered="true" toc="default">
      <name>Expand test vectors</name>
      <t>This section gives test vectors for expand_message variants specified in <xref target="hashtofield-expand" format="default"/>.
The test vectors in this section were generated using code that is
available from <xref target="hash2curve-repo" format="default"/>.</t>
      <t>Each test vector in this section lists the expand_message name, hash function, and DST,
along with a series of tuples of the function inputs (msg and len_in_bytes),
output (uniform_bytes), and intermediate values (dst_prime and msg_prime).
DST and msg are represented as ASCII strings.
Intermediate and output values are represented as byte strings in hexadecimal.</t>
      <section anchor="expandmessagexmdsha-256" numbered="true" toc="default">
        <name>expand_message_xmd(SHA-256)</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
name    = expand_message_xmd
DST     = QUUX-V01-CS02-with-expander-SHA256-128
hash    = SHA256
k       = 128

msg     =
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413235362d31323826
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000002000515555582d5630312d43533032
          2d776974682d657870616e6465722d5348413235362d31323826
uniform_bytes = 68a985b87eb6b46952128911f2a4412bbc302a9d759667f8
          7f7a21d803f07235

msg     = abc
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413235362d31323826
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000616263002000515555582d5630312d43
          5330322d776974682d657870616e6465722d5348413235362d3132
          3826
uniform_bytes = d8ccab23b5985ccea865c6c97b6e5b8350e794e603b4b979
          02f53a8a0d605615

msg     = abcdef0123456789
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413235362d31323826
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000061626364656630313233343536373839
          002000515555582d5630312d435330322d776974682d657870616e
          6465722d5348413235362d31323826
uniform_bytes = eff31487c770a893cfb36f912fbfcbff40d5661771ca4b2c
          b4eafe524333f5c1

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413235362d31323826
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000713132385f7171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171002000515555582d5630312d435330322d77
          6974682d657870616e6465722d5348413235362d31323826
uniform_bytes = b23a1d2b4d97b2ef7785562a7e8bac7eed54ed6e97e29aa5
          1bfe3f12ddad1ff9

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413235362d31323826
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000613531325f6161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161002000515555582d5630312d
          435330322d776974682d657870616e6465722d5348413235362d31
          323826
uniform_bytes = 4623227bcc01293b8c130bf771da8c298dede7383243dc09
          93d2d94823958c4c

msg     =
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413235362d31323826
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000008000515555582d5630312d43533032
          2d776974682d657870616e6465722d5348413235362d31323826
uniform_bytes = af84c27ccfd45d41914fdff5df25293e221afc53d8ad2ac0
          6d5e3e29485dadbee0d121587713a3e0dd4d5e69e93eb7cd4f5df4
          cd103e188cf60cb02edc3edf18eda8576c412b18ffb658e3dd6ec8
          49469b979d444cf7b26911a08e63cf31f9dcc541708d3491184472
          c2c29bb749d4286b004ceb5ee6b9a7fa5b646c993f0ced

msg     = abc
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413235362d31323826
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000616263008000515555582d5630312d43
          5330322d776974682d657870616e6465722d5348413235362d3132
          3826
uniform_bytes = abba86a6129e366fc877aab32fc4ffc70120d8996c88aee2
          fe4b32d6c7b6437a647e6c3163d40b76a73cf6a5674ef1d890f95b
          664ee0afa5359a5c4e07985635bbecbac65d747d3d2da7ec2b8221
          b17b0ca9dc8a1ac1c07ea6a1e60583e2cb00058e77b7b72a298425
          cd1b941ad4ec65e8afc50303a22c0f99b0509b4c895f40

msg     = abcdef0123456789
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413235362d31323826
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000061626364656630313233343536373839
          008000515555582d5630312d435330322d776974682d657870616e
          6465722d5348413235362d31323826
uniform_bytes = ef904a29bffc4cf9ee82832451c946ac3c8f8058ae97d8d6
          29831a74c6572bd9ebd0df635cd1f208e2038e760c4994984ce73f
          0d55ea9f22af83ba4734569d4bc95e18350f740c07eef653cbb9f8
          7910d833751825f0ebefa1abe5420bb52be14cf489b37fe1a72f7d
          e2d10be453b2c9d9eb20c7e3f6edc5a60629178d9478df

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413235362d31323826
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000713132385f7171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171008000515555582d5630312d435330322d77
          6974682d657870616e6465722d5348413235362d31323826
uniform_bytes = 80be107d0884f0d881bb460322f0443d38bd222db8bd0b0a
          5312a6fedb49c1bbd88fd75d8b9a09486c60123dfa1d73c1cc3169
          761b17476d3c6b7cbbd727acd0e2c942f4dd96ae3da5de368d26b3
          2286e32de7e5a8cb2949f866a0b80c58116b29fa7fabb3ea7d520e
          e603e0c25bcaf0b9a5e92ec6a1fe4e0391d1cdbce8c68a

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413235362d31323826
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000613531325f6161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161008000515555582d5630312d
          435330322d776974682d657870616e6465722d5348413235362d31
          323826
uniform_bytes = 546aff5444b5b79aa6148bd81728704c32decb73a3ba76e9
          e75885cad9def1d06d6792f8a7d12794e90efed817d96920d72889
          6a4510864370c207f99bd4a608ea121700ef01ed879745ee3e4cee
          f777eda6d9e5e38b90c86ea6fb0b36504ba4a45d22e86f6db5dd43
          d98a294bebb9125d5b794e9d2a81181066eb954966a487

]]></artwork>
      </section>
      <section anchor="expandmessagexmdsha-256-long-dst" numbered="true" toc="default">
        <name>expand_message_xmd(SHA-256) (long DST)</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
name    = expand_message_xmd
DST     = QUUX-V01-CS02-with-expander-SHA256-128-long-DST-111111
          111111111111111111111111111111111111111111111111111111
          111111111111111111111111111111111111111111111111111111
          111111111111111111111111111111111111111111111111111111
          1111111111111111111111111111111111111111
hash    = SHA256
k       = 128

msg     =
len_in_bytes = 0x20
DST_prime = 412717974da474d0f8c420f320ff81e8432adb7c927d9bd082b4
          fb4d16c0a23620
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000002000412717974da474d0f8c420f320
          ff81e8432adb7c927d9bd082b4fb4d16c0a23620
uniform_bytes = e8dc0c8b686b7ef2074086fbdd2f30e3f8bfbd3bdf177f73
          f04b97ce618a3ed3

msg     = abc
len_in_bytes = 0x20
DST_prime = 412717974da474d0f8c420f320ff81e8432adb7c927d9bd082b4
          fb4d16c0a23620
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000616263002000412717974da474d0f8c4
          20f320ff81e8432adb7c927d9bd082b4fb4d16c0a23620
uniform_bytes = 52dbf4f36cf560fca57dedec2ad924ee9c266341d8f3d6af
          e5171733b16bbb12

msg     = abcdef0123456789
len_in_bytes = 0x20
DST_prime = 412717974da474d0f8c420f320ff81e8432adb7c927d9bd082b4
          fb4d16c0a23620
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000061626364656630313233343536373839
          002000412717974da474d0f8c420f320ff81e8432adb7c927d9bd0
          82b4fb4d16c0a23620
uniform_bytes = 35387dcf22618f3728e6c686490f8b431f76550b0b2c61cb
          c1ce7001536f4521

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x20
DST_prime = 412717974da474d0f8c420f320ff81e8432adb7c927d9bd082b4
          fb4d16c0a23620
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000713132385f7171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171002000412717974da474d0f8c420f320ff81
          e8432adb7c927d9bd082b4fb4d16c0a23620
uniform_bytes = 01b637612bb18e840028be900a833a74414140dde0c4754c
          198532c3a0ba42bc

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x20
DST_prime = 412717974da474d0f8c420f320ff81e8432adb7c927d9bd082b4
          fb4d16c0a23620
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000613531325f6161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161002000412717974da474d0f8
          c420f320ff81e8432adb7c927d9bd082b4fb4d16c0a23620
uniform_bytes = 20cce7033cabc5460743180be6fa8aac5a103f56d481cf36
          9a8accc0c374431b

msg     =
len_in_bytes = 0x80
DST_prime = 412717974da474d0f8c420f320ff81e8432adb7c927d9bd082b4
          fb4d16c0a23620
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000008000412717974da474d0f8c420f320
          ff81e8432adb7c927d9bd082b4fb4d16c0a23620
uniform_bytes = 14604d85432c68b757e485c8894db3117992fc57e0e136f7
          1ad987f789a0abc287c47876978e2388a02af86b1e8d1342e5ce4f
          7aaa07a87321e691f6fba7e0072eecc1218aebb89fb14a0662322d
          5edbd873f0eb35260145cd4e64f748c5dfe60567e126604bcab1a3
          ee2dc0778102ae8a5cfd1429ebc0fa6bf1a53c36f55dfc

msg     = abc
len_in_bytes = 0x80
DST_prime = 412717974da474d0f8c420f320ff81e8432adb7c927d9bd082b4
          fb4d16c0a23620
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000616263008000412717974da474d0f8c4
          20f320ff81e8432adb7c927d9bd082b4fb4d16c0a23620
uniform_bytes = 1a30a5e36fbdb87077552b9d18b9f0aee16e80181d5b951d
          0471d55b66684914aef87dbb3626eaabf5ded8cd0686567e503853
          e5c84c259ba0efc37f71c839da2129fe81afdaec7fbdc0ccd4c794
          727a17c0d20ff0ea55e1389d6982d1241cb8d165762dbc39fb0cee
          4474d2cbbd468a835ae5b2f20e4f959f56ab24cd6fe267

msg     = abcdef0123456789
len_in_bytes = 0x80
DST_prime = 412717974da474d0f8c420f320ff81e8432adb7c927d9bd082b4
          fb4d16c0a23620
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000061626364656630313233343536373839
          008000412717974da474d0f8c420f320ff81e8432adb7c927d9bd0
          82b4fb4d16c0a23620
uniform_bytes = d2ecef3635d2397f34a9f86438d772db19ffe9924e28a1ca
          f6f1c8f15603d4028f40891044e5c7e39ebb9b31339979ff33a424
          9206f67d4a1e7c765410bcd249ad78d407e303675918f20f26ce6d
          7027ed3774512ef5b00d816e51bfcc96c3539601fa48ef1c07e494
          bdc37054ba96ecb9dbd666417e3de289d4f424f502a982

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x80
DST_prime = 412717974da474d0f8c420f320ff81e8432adb7c927d9bd082b4
          fb4d16c0a23620
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000713132385f7171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171008000412717974da474d0f8c420f320ff81
          e8432adb7c927d9bd082b4fb4d16c0a23620
uniform_bytes = ed6e8c036df90111410431431a232d41a32c86e296c05d42
          6e5f44e75b9a50d335b2412bc6c91e0a6dc131de09c43110d9180d
          0a70f0d6289cb4e43b05f7ee5e9b3f42a1fad0f31bac6a625b3b5c
          50e3a83316783b649e5ecc9d3b1d9471cb5024b7ccf40d41d1751a
          04ca0356548bc6e703fca02ab521b505e8e45600508d32

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x80
DST_prime = 412717974da474d0f8c420f320ff81e8432adb7c927d9bd082b4
          fb4d16c0a23620
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          0000000000000000000000613531325f6161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161008000412717974da474d0f8
          c420f320ff81e8432adb7c927d9bd082b4fb4d16c0a23620
uniform_bytes = 78b53f2413f3c688f07732c10e5ced29a17c6a16f717179f
          fbe38d92d6c9ec296502eb9889af83a1928cd162e845b0d3c5424e
          83280fed3d10cffb2f8431f14e7a23f4c68819d40617589e4c4116
          9d0b56e0e3535be1fd71fbb08bb70c5b5ffed953d6c14bf7618b35
          fc1f4c4b30538236b4b08c9fbf90462447a8ada60be495

]]></artwork>
      </section>
      <section anchor="expandmessagexmdsha-512" numbered="true" toc="default">
        <name>expand_message_xmd(SHA-512)</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
name    = expand_message_xmd
DST     = QUUX-V01-CS02-with-expander-SHA512-256
hash    = SHA512
k       = 256

msg     =
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000002000515555
          582d5630312d435330322d776974682d657870616e6465722d5348
          413531322d32353626
uniform_bytes = 6b9a7312411d92f921c6f68ca0b6380730a1a4d982c50721
          1a90964c394179ba

msg     = abc
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000616263002000
          515555582d5630312d435330322d776974682d657870616e646572
          2d5348413531322d32353626
uniform_bytes = 0da749f12fbe5483eb066a5f595055679b976e93abe9be6f
          0f6318bce7aca8dc

msg     = abcdef0123456789
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000616263646566
          30313233343536373839002000515555582d5630312d435330322d
          776974682d657870616e6465722d5348413531322d32353626
uniform_bytes = 087e45a86e2939ee8b91100af1583c4938e0f5fc6c9db4b1
          07b83346bc967f58

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000713132385f71
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          71717171717171717171717171717171717171002000515555582d
          5630312d435330322d776974682d657870616e6465722d53484135
          31322d32353626
uniform_bytes = 7336234ee9983902440f6bc35b348352013becd88938d2af
          ec44311caf8356b3

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000613531325f61
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161610020
          00515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
uniform_bytes = 57b5f7e766d5be68a6bfe1768e3c2b7f1228b3e4b3134956
          dd73a59b954c66f4

msg     =
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000008000515555
          582d5630312d435330322d776974682d657870616e6465722d5348
          413531322d32353626
uniform_bytes = 41b037d1734a5f8df225dd8c7de38f851efdb45c372887be
          655212d07251b921b052b62eaed99b46f72f2ef4cc96bfaf254ebb
          bec091e1a3b9e4fb5e5b619d2e0c5414800a1d882b62bb5cd1778f
          098b8eb6cb399d5d9d18f5d5842cf5d13d7eb00a7cff859b605da6
          78b318bd0e65ebff70bec88c753b159a805d2c89c55961

msg     = abc
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000616263008000
          515555582d5630312d435330322d776974682d657870616e646572
          2d5348413531322d32353626
uniform_bytes = 7f1dddd13c08b543f2e2037b14cefb255b44c83cc397c178
          6d975653e36a6b11bdd7732d8b38adb4a0edc26a0cef4bb4521713
          5456e58fbca1703cd6032cb1347ee720b87972d63fbf232587043e
          d2901bce7f22610c0419751c065922b488431851041310ad659e4b
          23520e1772ab29dcdeb2002222a363f0c2b1c972b3efe1

msg     = abcdef0123456789
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000616263646566
          30313233343536373839008000515555582d5630312d435330322d
          776974682d657870616e6465722d5348413531322d32353626
uniform_bytes = 3f721f208e6199fe903545abc26c837ce59ac6fa45733f1b
          aaf0222f8b7acb0424814fcb5eecf6c1d38f06e9d0a6ccfbf85ae6
          12ab8735dfdf9ce84c372a77c8f9e1c1e952c3a61b7567dd069301
          6af51d2745822663d0c2367e3f4f0bed827feecc2aaf98c949b5ed
          0d35c3f1023d64ad1407924288d366ea159f46287e61ac

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000713132385f71
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          71717171717171717171717171717171717171008000515555582d
          5630312d435330322d776974682d657870616e6465722d53484135
          31322d32353626
uniform_bytes = b799b045a58c8d2b4334cf54b78260b45eec544f9f2fb5bd
          12fb603eaee70db7317bf807c406e26373922b7b8920fa29142703
          dd52bdf280084fb7ef69da78afdf80b3586395b433dc66cde048a2
          58e476a561e9deba7060af40adf30c64249ca7ddea79806ee5beb9
          a1422949471d267b21bc88e688e4014087a0b592b695ed

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
msg_prime = 0000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000000000000000
          000000000000000000000000000000000000000000613531325f61
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161610080
          00515555582d5630312d435330322d776974682d657870616e6465
          722d5348413531322d32353626
uniform_bytes = 05b0bfef265dcee87654372777b7c44177e2ae4c13a27f10
          3340d9cd11c86cb2426ffcad5bd964080c2aee97f03be1ca18e30a
          1f14e27bc11ebbd650f305269cc9fb1db08bf90bfc79b42a952b46
          daf810359e7bc36452684784a64952c343c52e5124cd1f71d474d5
          197fefc571a92929c9084ffe1112cf5eea5192ebff330b

]]></artwork>
      </section>
      <section anchor="expandmessagexofshake128" numbered="true" toc="default">
        <name>expand_message_xof(SHAKE128)</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
name    = expand_message_xof
DST     = QUUX-V01-CS02-with-expander-SHAKE128
hash    = SHAKE128
k       = 128

msg     =
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
msg_prime = 0020515555582d5630312d435330322d776974682d657870616e
          6465722d5348414b4531323824
uniform_bytes = 86518c9cd86581486e9485aa74ab35ba150d1c75c88e26b7
          043e44e2acd735a2

msg     = abc
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
msg_prime = 6162630020515555582d5630312d435330322d776974682d6578
          70616e6465722d5348414b4531323824
uniform_bytes = 8696af52a4d862417c0763556073f47bc9b9ba43c99b5053
          05cb1ec04a9ab468

msg     = abcdef0123456789
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
msg_prime = 616263646566303132333435363738390020515555582d563031
          2d435330322d776974682d657870616e6465722d5348414b453132
          3824
uniform_bytes = 912c58deac4821c3509dbefa094df54b34b8f5d01a191d1d
          3108a2c89077acca

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
msg_prime = 713132385f717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717100
          20515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
uniform_bytes = 1adbcc448aef2a0cebc71dac9f756b22e51839d348e031e6
          3b33ebb50faeaf3f

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
msg_prime = 613531325f616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          61616161610020515555582d5630312d435330322d776974682d65
          7870616e6465722d5348414b4531323824
uniform_bytes = df3447cc5f3e9a77da10f819218ddf31342c310778e0e4ef
          72bbaecee786a4fe

msg     =
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
msg_prime = 0080515555582d5630312d435330322d776974682d657870616e
          6465722d5348414b4531323824
uniform_bytes = 7314ff1a155a2fb99a0171dc71b89ab6e3b2b7d59e38e644
          19b8b6294d03ffee42491f11370261f436220ef787f8f76f5b26bd
          cd850071920ce023f3ac46847744f4612b8714db8f5db83205b2e6
          25d95afd7d7b4d3094d3bdde815f52850bb41ead9822e08f22cf41
          d615a303b0d9dde73263c049a7b9898208003a739a2e57

msg     = abc
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
msg_prime = 6162630080515555582d5630312d435330322d776974682d6578
          70616e6465722d5348414b4531323824
uniform_bytes = c952f0c8e529ca8824acc6a4cab0e782fc3648c563ddb00d
          a7399f2ae35654f4860ec671db2356ba7baa55a34a9d7f79197b60
          ddae6e64768a37d699a78323496db3878c8d64d909d0f8a7de4927
          dcab0d3dbbc26cb20a49eceb0530b431cdf47bc8c0fa3e0d88f53b
          318b6739fbed7d7634974f1b5c386d6230c76260d5337a

msg     = abcdef0123456789
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
msg_prime = 616263646566303132333435363738390080515555582d563031
          2d435330322d776974682d657870616e6465722d5348414b453132
          3824
uniform_bytes = 19b65ee7afec6ac06a144f2d6134f08eeec185f1a890fe34
          e68f0e377b7d0312883c048d9b8a1d6ecc3b541cb4987c26f45e0c
          82691ea299b5e6889bbfe589153016d8131717ba26f07c3c14ffbe
          f1f3eff9752e5b6183f43871a78219a75e7000fbac6a7072e2b83c
          790a3a5aecd9d14be79f9fd4fb180960a3772e08680495

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
msg_prime = 713132385f717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717100
          80515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
uniform_bytes = ca1b56861482b16eae0f4a26212112362fcc2d76dcc80c93
          c4182ed66c5113fe41733ed68be2942a3487394317f3379856f482
          2a611735e50528a60e7ade8ec8c71670fec6661e2c59a09ed36386
          513221688b35dc47e3c3111ee8c67ff49579089d661caa29db1ef1
          0eb6eace575bf3dc9806e7c4016bd50f3c0e2a6481ee6d

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4531323824
msg_prime = 613531325f616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          61616161610080515555582d5630312d435330322d776974682d65
          7870616e6465722d5348414b4531323824
uniform_bytes = 9d763a5ce58f65c91531b4100c7266d479a5d9777ba76169
          3d052acd37d149e7ac91c796a10b919cd74a591a1e38719fb91b72
          03e2af31eac3bff7ead2c195af7d88b8bc0a8adf3d1e90ab9bed6d
          dc2b7f655dd86c730bdeaea884e73741097142c92f0e3fc1811b69
          9ba593c7fbd81da288a29d423df831652e3a01a9374999

]]></artwork>
      </section>
      <section anchor="expandmessagexofshake128-long-dst" numbered="true" toc="default">
        <name>expand_message_xof(SHAKE128) (long DST)</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
name    = expand_message_xof
DST     = QUUX-V01-CS02-with-expander-SHAKE128-long-DST-11111111
          111111111111111111111111111111111111111111111111111111
          111111111111111111111111111111111111111111111111111111
          111111111111111111111111111111111111111111111111111111
          1111111111111111111111111111111111111111
hash    = SHAKE128
k       = 128

msg     =
len_in_bytes = 0x20
DST_prime = acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
msg_prime = 0020acb9736c0867fdfbd6385519b90fc8c034b5af04a9589732
          12950132d035792f20
uniform_bytes = 827c6216330a122352312bccc0c8d6e7a146c5257a776dbd
          9ad9d75cd880fc53

msg     = abc
len_in_bytes = 0x20
DST_prime = acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
msg_prime = 6162630020acb9736c0867fdfbd6385519b90fc8c034b5af04a9
          58973212950132d035792f20
uniform_bytes = 690c8d82c7213b4282c6cb41c00e31ea1d3e2005f93ad19b
          bf6da40f15790c5c

msg     = abcdef0123456789
len_in_bytes = 0x20
DST_prime = acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
msg_prime = 616263646566303132333435363738390020acb9736c0867fdfb
          d6385519b90fc8c034b5af04a958973212950132d035792f20
uniform_bytes = 979e3a15064afbbcf99f62cc09fa9c85028afcf3f825eb07
          11894dcfc2f57057

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x20
DST_prime = acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
msg_prime = 713132385f717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717100
          20acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
uniform_bytes = c5a9220962d9edc212c063f4f65b609755a1ed96e62f9db5
          d1fd6adb5a8dc52b

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x20
DST_prime = acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
msg_prime = 613531325f616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          61616161610020acb9736c0867fdfbd6385519b90fc8c034b5af04
          a958973212950132d035792f20
uniform_bytes = f7b96a5901af5d78ce1d071d9c383cac66a1dfadb508300e
          c6aeaea0d62d5d62

msg     =
len_in_bytes = 0x80
DST_prime = acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
msg_prime = 0080acb9736c0867fdfbd6385519b90fc8c034b5af04a9589732
          12950132d035792f20
uniform_bytes = 3890dbab00a2830be398524b71c2713bbef5f4884ac2e6f0
          70b092effdb19208c7df943dc5dcbaee3094a78c267ef276632ee2
          c8ea0c05363c94b6348500fae4208345dd3475fe0c834c2beac7fa
          7bc181692fb728c0a53d809fc8111495222ce0f38468b11becb15b
          32060218e285c57a60162c2c8bb5b6bded13973cd41819

msg     = abc
len_in_bytes = 0x80
DST_prime = acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
msg_prime = 6162630080acb9736c0867fdfbd6385519b90fc8c034b5af04a9
          58973212950132d035792f20
uniform_bytes = 41b7ffa7a301b5c1441495ebb9774e2a53dbbf4e54b9a1af
          6a20fd41eafd69ef7b9418599c5545b1ee422f363642b01d4a5344
          9313f68da3e49dddb9cd25b97465170537d45dcbdf92391b5bdff3
          44db4bd06311a05bca7dcd360b6caec849c299133e5c9194f4e15e
          3e23cfaab4003fab776f6ac0bfae9144c6e2e1c62e7d57

msg     = abcdef0123456789
len_in_bytes = 0x80
DST_prime = acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
msg_prime = 616263646566303132333435363738390080acb9736c0867fdfb
          d6385519b90fc8c034b5af04a958973212950132d035792f20
uniform_bytes = 55317e4a21318472cd2290c3082957e1242241d9e0d04f47
          026f03401643131401071f01aa03038b2783e795bdfa8a3541c194
          ad5de7cb9c225133e24af6c86e748deb52e560569bd54ef4dac034
          65111a3a44b0ea490fb36777ff8ea9f1a8a3e8e0de3cf0880b4b2f
          8dd37d3a85a8b82375aee4fa0e909f9763319b55778e71

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x80
DST_prime = acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
msg_prime = 713132385f717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717100
          80acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
uniform_bytes = 19fdd2639f082e31c77717ac9bb032a22ff0958382b2dbb3
          9020cdc78f0da43305414806abf9a561cb2d0067eb2f7bc544482f
          75623438ed4b4e39dd9e6e2909dd858bd8f1d57cd0fce2d3150d90
          aa67b4498bdf2df98c0100dd1a173436ba5d0df6be1defb0b2ce55
          ccd2f4fc05eb7cb2c019c35d5398b85adc676da4238bc7

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x80
DST_prime = acb9736c0867fdfbd6385519b90fc8c034b5af04a95897321295
          0132d035792f20
msg_prime = 613531325f616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          61616161610080acb9736c0867fdfbd6385519b90fc8c034b5af04
          a958973212950132d035792f20
uniform_bytes = 945373f0b3431a103333ba6a0a34f1efab2702efde41754c
          4cb1d5216d5b0a92a67458d968562bde7fa6310a83f53dda138368
          0a276a283438d58ceebfa7ab7ba72499d4a3eddc860595f63c93b1
          c5e823ea41fc490d938398a26db28f61857698553e93f0574eb8c5
          017bfed6249491f9976aaa8d23d9485339cc85ca329308

]]></artwork>
      </section>
      <section anchor="expandmessagexofshake256" numbered="true" toc="default">
        <name>expand_message_xof(SHAKE256)</name>
        <artwork name="" type="" align="left" alt=""><![CDATA[
name    = expand_message_xof
DST     = QUUX-V01-CS02-with-expander-SHAKE256
hash    = SHAKE256
k       = 256

msg     =
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
msg_prime = 0020515555582d5630312d435330322d776974682d657870616e
          6465722d5348414b4532353624
uniform_bytes = 2ffc05c48ed32b95d72e807f6eab9f7530dd1c2f013914c8
          fed38c5ccc15ad76

msg     = abc
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
msg_prime = 6162630020515555582d5630312d435330322d776974682d6578
          70616e6465722d5348414b4532353624
uniform_bytes = b39e493867e2767216792abce1f2676c197c0692aed06156
          0ead251821808e07

msg     = abcdef0123456789
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
msg_prime = 616263646566303132333435363738390020515555582d563031
          2d435330322d776974682d657870616e6465722d5348414b453235
          3624
uniform_bytes = 245389cf44a13f0e70af8665fe5337ec2dcd138890bb7901
          c4ad9cfceb054b65

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
msg_prime = 713132385f717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717100
          20515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
uniform_bytes = 719b3911821e6428a5ed9b8e600f2866bcf23c8f0515e52d
          6c6c019a03f16f0e

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x20
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
msg_prime = 613531325f616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          61616161610020515555582d5630312d435330322d776974682d65
          7870616e6465722d5348414b4532353624
uniform_bytes = 9181ead5220b1963f1b5951f35547a5ea86a820562287d6c
          a4723633d17ccbbc

msg     =
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
msg_prime = 0080515555582d5630312d435330322d776974682d657870616e
          6465722d5348414b4532353624
uniform_bytes = 7a1361d2d7d82d79e035b8880c5a3c86c5afa719478c007d
          96e6c88737a3f631dd74a2c88df79a4cb5e5d9f7504957c70d669e
          c6bfedc31e01e2bacc4ff3fdf9b6a00b17cc18d9d72ace7d6b81c2
          e481b4f73f34f9a7505dccbe8f5485f3d20c5409b0310093d5d649
          2dea4e18aa6979c23c8ea5de01582e9689612afbb353df

msg     = abc
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
msg_prime = 6162630080515555582d5630312d435330322d776974682d6578
          70616e6465722d5348414b4532353624
uniform_bytes = a54303e6b172909783353ab05ef08dd435a558c3197db0c1
          32134649708e0b9b4e34fb99b92a9e9e28fc1f1d8860d85897a8e0
          21e6382f3eea10577f968ff6df6c45fe624ce65ca25932f679a42a
          404bc3681efe03fcd45ef73bb3a8f79ba784f80f55ea8a3c367408
          f30381299617f50c8cf8fbb21d0f1e1d70b0131a7b6fbe

msg     = abcdef0123456789
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
msg_prime = 616263646566303132333435363738390080515555582d563031
          2d435330322d776974682d657870616e6465722d5348414b453235
          3624
uniform_bytes = e42e4d9538a189316e3154b821c1bafb390f78b2f010ea40
          4e6ac063deb8c0852fcd412e098e231e43427bd2be1330bb47b403
          9ad57b30ae1fc94e34993b162ff4d695e42d59d9777ea18d3848d9
          d336c25d2acb93adcad009bcfb9cde12286df267ada283063de0bb
          1505565b2eb6c90e31c48798ecdc71a71756a9110ff373

msg     = q128_qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq
          qqqqqqqqqqqqqqqqqqqqqqqqq
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
msg_prime = 713132385f717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717171
          717171717171717171717171717171717171717171717171717100
          80515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
uniform_bytes = 4ac054dda0a38a65d0ecf7afd3c2812300027c8789655e47
          aecf1ecc1a2426b17444c7482c99e5907afd9c25b991990490bb9c
          686f43e79b4471a23a703d4b02f23c669737a886a7ec28bddb92c3
          a98de63ebf878aa363a501a60055c048bea11840c4717beae7eee2
          8c3cfa42857b3d130188571943a7bd747de831bd6444e0

msg     = a512_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
len_in_bytes = 0x80
DST_prime = 515555582d5630312d435330322d776974682d657870616e6465
          722d5348414b4532353624
msg_prime = 613531325f616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          616161616161616161616161616161616161616161616161616161
          61616161610080515555582d5630312d435330322d776974682d65
          7870616e6465722d5348414b4532353624
uniform_bytes = 09afc76d51c2cccbc129c2315df66c2be7295a231203b8ab
          2dd7f95c2772c68e500bc72e20c602abc9964663b7a03a389be128
          c56971ce81001a0b875e7fd17822db9d69792ddf6a23a151bf4700
          79c518279aef3e75611f8f828994a9988f4a8a256ddb8bae161e65
          8d5a2a09bcfe839c6396dc06ee5c8ff3c22d3b1f9deb7e

]]></artwork>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
SgukvQ3/L/4dKva5DDG4kx58gdFyiz32NkrNUgWj4rcG1IkHqTnQ9aZCXcUl
4CQoyLn1Y3CnC6yIyrPYAgFl8jxCWh2FeEc7qS9OkHUNrXHLgCIAuaiPCVN9
NCp6p2oTyMYiI2ZIeDvFmF2E2HoJbuil2tlQUjAgo9UNx9dYUo6q+ylx8T4O
2ZQIh8mw71kEjtXFVqdDa2c6NWW2cYc6TmvHAkrNmDJ8BBOFFjxVeL65I+xI
nqfth3eiFs5sOsU6zFQ+XMZXSfplbb+n6xtTnCTHzSyNDw94Ey3lWeQ/sgXg
6SmJHgLCK9HGKBaSUk1jrgIlEEeEsBjRy/Lap0GJ2lb4/hwKjK9Ho+eIsGWS
tXKAiGToqmZUkoJN1l7JmaevSxuL0B6LgZWz3lQPnqpcjgahMp4rQsq4LrUD
1ARAPfvWPxWYuY7zO2UjM1vQpO59XGXrYcogUJ9ceLbuOcGkaKt8lEUz7mRl
AZlmawNrjx391sztU0qCrifpLC5EzuUv9JdFwWBRdos7sWiDn3taqCwrmJMN
pvElgoV+PhFbgnY1RFvPitM86/6D4yjRt0Rx0GRrWoRONXnBCaBT4U2iSJRd
1ZHFRgVgK8Q4sDP+SIqW6oBpXFvPN3x1X0lJJZMO2OrFVo+yWFYvf6BDhwxR
W7mg/LGonGlaLoVep2gf33sGVOWCCkDpzMPQ9Gwbhwd2cHd7a/vH5q5YOYHV
K8SVG0YyA3uNuTLyKHqIVHUhxCVRS8XFRbwRviT+kVTMhDEU8Gd6VGLXtqhu
EyB8WbqFwbhqS36bu92q6D57rlaEue1poI0U98JIidkEjWeUQawSDjEvtCIj
w/B9cgQg38zhGRulM8dhcYe9q9qSIGBf8ydnxR6qQiPgHP46kK2s2MDYEXf9
I5FZ75ialqRr2zZTmt3CtAGUT2UiabveJKPn/zIra+A/K9qUZEJF2H0Dv6TP
gCTCdY6mFoIJDcM7IzemVipNye9dqxaKBP4C8BM/W25jgm+tTerUN5Vlmfb3
N6TivzgNX6Xg/9b0e23WBDn+Ok6umZN9zxMBLkdMHQ2cAhaqgQ10RnRCabOj
Dds8LieoZyds5NjkJ6vJRLwmU7kPU55cp6MRpsF+D2j1rb/+E2BRjBPcYLu5
7xf3aFhl16k125rxec0/3WATOXR6/RN8QdLxenG/wcoE2sh9ACFa5tcjBdPo
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
9KGsqNmLMBHS7QI66OwJXnZx1Sn0dZaMiyYLSpE1aTcuYiPCjpRWYDbY5mXY
icvmuQUg0LuENQwKh8jNb2xe91WErDx3aQ0IA08wZdiVDbZDzYBDUickLYou
AhRhlMZhcoDEN2ZUWVkUDaXxdOr1yd89+8d/+0P7fD77en319bM/rfH1F19+
9ezf/25dP/2Un7744X988sk//+75V7i+fv38i8+f/cvzP62vzo/tL7589vTB
3/5+ffVV+5f17E/ty+ft86/1sT+s8Xw/X/PZ88+f/fu//6599buvv9B/fzY/
ffrIf/zHL/UF67yifvfr+5f+3/XlevYv6/P1Zftal/rjV88//5dn44upj/2u
ff3s+VeftD+155+1/tl6tr/84vcvvsmNP375p/Xpl+sPX/A1n/xjG7+7f9H3
vuez51/pnr/W7bz0PJ+3369/eMY1n+0/fn798j88Y/z+x2/++R8+aZ99ofvh
bO9Z07W+fK4R+mI/+/qPf/jsxZ90xW8+py/9wx/1Lb8AmHCJz9bnv33++W/7
/9Od/f0/fPLFH7/W3z/7xR8/f66B/f03P79+9fnnX68vf7/mcw2DxvizP+ry
v5hfff3bP3z5/Pfr+hVd9em//v6Xn+jmvvnZs6YR1EB8ub5anzOG7atn//U3
//1Xv3r21ddfajS/+uUnv7pfnI+9uJMX3/OKC3Br33yesfzd+rc29b5/3z77
5aUac47ib//t9/MXL047//7pRPUTBvZp6X3/d6/7f/rLV5yiPv3++vJTXVEX
/FT8+JPrBV0fePrhJ//6YoGwssv9YPU+6MTzf3OGr3sxkP/lGbSBwksFvUQx
slMCV25QPqXLIFXFXv2dUkbJJinUkM3u4R0ZMbpTLNqMnpp5/lRc+uTbF3Qd
Er37P/fA+mf98wMuQPZ//QgcO/qvG4w3jMAxs5/hF97qpcyzeuJMJoqLlGop
ZAkiM1QOGNcqVDeJlx9pdCMgMIvyscmoYL50KPV4za+/QMJH1r/+Zd9Z3luG
5NXjcE+Lr3rvs4jb066DTxM9mkWwNdFPhW1V8VGElt0b43vgSPP+RPi2N3ZW
UJmwb/YwfkyCt00Cnihdz64bx/2CE//sheGPC7w5LLx6sM5akHcJC2tfbhj5
EhMuFfLi064WJbeBlb3QV0o2ZyvA292hUSPWguBl8HQVDfuxbKQ+ZurrL5Dt
083SgPuqf+/P+cpfeNu/f+0X+CHr9zj0+pFpXZH9crQPs9KKtnMuEUWgvIro
TkYX5Krz4AC3tqOniUZ5v6HsnNmL1j128R4X+MAXeATjN1wgWU+lj6O07VX/
3uPIK3/hbf8+LvC4wOMCjwt8+Au8DiYdR+h/DiG+0+FXI6aQHP24fQxkmnwv
l/IiAgyzXYpNc80FLROxmeOwT6x+OnwIOfkvI4w37nWVRyL77p/yyrf9U+11
NVSVLl+HGeIMttqwkXme20W98uWwbkENoLTp2jhK7mek30YvOQoWd3xKLUKK
mh6+ef3XDBNpuKXL9Dxm4KpHz/60hhL/guL1uIykhqe+EMWsEjMFxa7bsndP
sSyKQNZxaBUu0dCa6wwhjC1Un6pFYHBRQ+hxAx+cTGWDuqr+qoSQj6JBp1nc
ew6VbrjUjQlj9bjWVaCzW+waTmx5aBGfb93Me8zjb/9JLzbzXjebf/LNvNYR
AGtJgWtRYTQ0L1tD+wSPaXx2nJmlVpzD2jqMv/YKHfFOmokpwUwhUztmk5/B
9JzapdHeUFxbtNVVs+txrJlSWLjotejx20HoJVd6MyPF2oj7xpmpEFWMFP0c
CJAdsrP4ZVN5Mkdptg07TF4tNbuSiUVrbmCHHJGU68gyI7IUjlKucbmT49u9
9GWrsIYNB+zODd1tRcK59kD7zw7m3XYrH7P8pVn+A3cr3xzY3/9uZTXYI3dN
dsXGulZxJOpI70dqaNvvojl06XYiZv/dN9HXbFsOgy/sE+VDM3e6hJK2M8i4
IbGjmB1qDTi7CQTce0jMjHG1imTGLvTEZn858IU+6nUYHM3OwTCr6WNHKr+e
xyjVIvZEmUYRpzOrr62FQLelQ/XQYeOHkUTtPu9lrxKWOyJaCBFj+UhRfOUR
nBmZUgjlGPqHkqs2F/S4yvxoDMQfS/H1F3hsx/7o7di3B6j3uR1btD6tybh8
BfqZiqUcni/aJmAGUPp0ulwv/er/OhCDdS1h7Brq0Mf04T1znKhxG+HRNBIJ
jM6KqVxtB8n7HoxzskqxARG4kYRNdYnsMv39yq01uB3mrKkJcjYkB1OZLvU7
ZkF9egkjrEzLyOhCwRVFkGZ6MSMWaxEm32DI3v1qeaKzdQ9QetJlhot9tG10
33GhnIqjBJI/vtppB038haLtx37z4wIf+gKPbPOGCzz2mx8XeFzgcYG/wgu8
Dgd+gP3mKGK6dww4tPdcG4IAQn/F4nZgwgBwjZ49TXkYRd3xVI6FpuRZ57rU
LzAyc7sIeVlH1Val849LoRrtjPBeKfcLpIaPUmHDB3GJzCbJDHRMrWadzbRh
U4Rfsh44ruUxuj/0bHPOiCeJbMYl8FrNwPsw7U6nYDShow0UhWlXSTvh+HHu
g2FEJRzZl9iwxRu3X/c9HZ66Be3k1fFrFsoMJX/yrRXiG4pan/3iqgRW1v5J
6ls/5eqf6lOfWvuS7a/9s/75KC/wHqt8A0IKTDDcuMI0u4zgzPb6v13sKsG7
NsVXKgoyokVIL92nYA/TpmGa04ozHwGMejrbev1T35/ttQPw0lN/byOszKGl
2BMWhwuphECvfp80AtIdg7309CgP5LwPRwMR0V7zWMli9Db9u1bz/q29znSr
4H3Vs98J9FuG4S0vFbfdHWjk3DGZPVrE6noNXagi6V+HS8kHmtn8VFK5Zwp0
mrLHC6WjXPKjSnX/Nt/wO5TnvusA3S7wA6YB3mIoezqXsJ1CCAuBqBSqvqgH
bze6fqYjf5Ds4fMzLrs5g3IR/Yd/NSW5f2sz8rHv+yMv8EPW6T18/jnh2mAA
kxO9M/gBBJy9uiC5acV7dAas/jVzLoOKQLiXztuKmcrwuKQF18djK/RxgQ99
gUfQfemfx/bn4wKPCzwu8Fd4gdfBoTt1eGtsfwsccmZAPjxO5CMGJI685Twc
2brWRmworF9GQIjm32tzqn5h4FuGu7e3/V3qav/WstTTTvZPu7tkEfKdqMSI
YZae46VvNkqpYXZEqmt1eD0ss6yY5r2CArn9kncutRnNA1eywG9hQ70sEZrS
DOVTCd/saX1wKyLwcsfygiYmN2zfUbOxO20sdsWJ3FpjWLRBV++lbgRGTLqq
ue/7+HHNjic5BVY4cxkb4kBaM+wcyohzU3CY8rIu6TFR0LLtvkG2lkNILxdr
8GVCXnra4Orqw+yW+rYt+qHnRrhsvGv97N/afE23mtmfdvtMb9G0uDzboL1k
vcEYsaixpddt2lo2rWJssTP2Gu19zpiQ9VM0uxPygKGtXfLsXd+TVkPbfi6c
JnDTZepEI25+zBmtjjBcRA9u7YFrhEWdCTc8V/cqtu3Z1si6N8U5zcdx+p5T
qWPzwHVia+Y29GV8qTPV4qZ1wY6uBZMizpB9eM1+c57UBEbUUfQTsC/AXzp2
t53R8qoRT/rWXRgz7eVS/lHFsX+bU/gdCmJ/2v3B6RDL9hjH4s+0fWiUaQVf
Zs6aHbbuvSo7xq40e0j6bdyd8PJNhrJvV3YwpVoTgiZwXh4HkaoI732tWZfx
voXDhLk6k3bKMzS78sgpIoI1MENvM+Otp4sYtF2rLZp726WxDjXYbBx+6RlH
cLd2xPkRs4toMczBtjv6qpi9WyhrXzXi4VgoHW8AE7E7SWtoefepVYtIu596
4DrD1i3viJhJ+WisZR9L7vznsQH6Iy/wQwLRj90ARVegDC33uaux1ioWBGTV
rX7fzaB8jLbhclrVJs5w70bRgt9YxEWKRM30XrmKviiUaewyLU1cpydupwH3
6YnH7JGxWzYbqblyORcF343mylpxKX4pAjRFED2vyEQbqeHE5vvhNxrN8mzU
WqU831OgwEEBaPpuKaBXvlUICZ0msmD0MNPmaA/BvTCa8VEhsOi2YT57gG57
RJ/fxFWW8qkxkT4t99jhfVzgQ1/gkVVe+uexw/u4wOMCjwv8FV7gdXjvfe7w
4nnnt3AaVuyplG0yJm/WsIk3XWUDIzWbnjB73UeqWKKnlf7juoYQocDV6rWU
SjNlw4IBbXmn+xIlnH5EkbjDMQUrxS3mODG33d3tQiWMFYbU3e7A/ViRP8V4
LGtXGMHaY495mh7TEuqLApvLbhyTezel92xG7FGkedboMZsJfeOW1w9HkT2s
viZ0zMOKBqgHfXjU3elJTQ7V5NJmS3Ro1vjWSlZhwPdbvqoLUh57Fm7qh7fC
Tf76LyLPemVdN1+UTX8MvTA/1wt8J5ty5zLv9Iq+eS/3zcPvv6Lv6cciHoFN
shU/crviPrJTEeXpyReTPRZyYdbiRsQl+DgTqKamMHwNCgv9e6aGj3n4sV0g
3Wpi7/Pwz3hR+VR/ec2L+l7t1Ww51I1M6RIB96ublFrcsYp5x5QRUEmr+tZX
5QTy/pQ7ecX2ocQxWpkvH+D8pVRtH1Pz/Vwg3Tbrbxd41b7927U676/q7U1B
b520Ja8Q27Ul5tGu6NUKuLVtY/EDV9BldtzsgU2hi3sINbkX3Xvqo6a8Y/lo
97Uf6+dnfoH7zvvPfI/753mBl6PKPT++M0ZjYt+j2JsDTPb6sadTpBLexEmU
7PoQ38EBPjqDf8uYYl0iY+5sIBlU3tgBHYvIQjz2qx8X+MAXeGSLj+4C9x31
j2i37HGBxwUeF3hc4E3/guOOmPjTZZ/vNQLnTjED1teY1heKTpfNmMUP1/O2
zpXuEfS0PtTDoHbO7FusaCrgChn+MhLFj/T6vi7wnWzJB97vDbYbn6fNPrS4
y9zOxTnLyHP5sku0a88e4qA/ueR+iHpGzMWmyS7aXp0uFF1PbuHwXHtIO7vt
1g7U+/Xdtoth9Xsbs0iKqXbZ5ntdYfe4Yk+2TrcMysdBg9KsaAxX7R0Fz5zL
scdXSy+rp9F9rTNOioB3nLEEN/S/1s+8ui6Sx9aj1J5wA70vo6z1ZdHowxS6
752N7qno6aPvNtaGz7QbpY4Ya7J/OQ3lx0J7PxdItyr1v8iGtoL6xPvXD1N6
DF4LxGn9dRvG2t3F2EMYxY/hax423xdzmjXHFP3ySYnC2q4ckL2bmsKlaY02
s+ZwqRldKfSOLkC2h1Z1iGnFsvtoNhs/JoKVoyu35LWyMx15ID2m3307YX1k
i/x9wU9XjWVH/dIsMMMEq1uyw6RYneuhcFarkKGfe2uaBkzL+r7gHZsTynDZ
te7qHBNpW+P0T/MJnXLX7dA9KOkpEf5MlJ0fa+/9XCC9y4792+Rc3++OvVeq
elKHVvqpe1XjtVjoa0oDg+ilVDDSbiFm77e9T+nWNhN4l57b6Ca4UGzYAx3+
sdOwU1nUpFWnaWkMrawS27o/v9VaKNnHueeuY5VAqm05j7LrssOuGlEQSLZr
9ec5TareHJC37Winy0EjhXDM1DLyCb3osJXOZnF501LldKu1jBqqbu6osZ1e
+X1b4/xMoU0bTK4uKN9Pn9JqSoQ7JFeyRqeNj/ZI4hEgfuYXeBxJ/OgjiTNs
fsAjiZ7xZVDMjGUUfAoVzwXBQ8/FJdMRHRSkD7tuJ5zf5xEAd0dQugmEmNmz
t1lR0uQRFDcdGQFwkXupzuzmqg1O6OXgwuIdIi56+CIWkddOGMmXhue76T6W
5Gvklqa4snCECaXd0VssK2Q8MRRsBUmaBsO0HYRgtjcjKabX0RR6V8u16KZE
U9ZhGd90T6ho017oUu7iQmIRYvS6sFE4LbmZLozUU40vWbE8zlweF/gAF3ik
w4/uAo8zl8cFHhd4XOCv8AIA1b/QmYuJ3fS9tktxjrUKve0i3Bk3shGCzXm5
tsKwvok32/ttCtKaWce0dpQ0uhhy2nu0KThbk0CeeLcwbM3b+C7m3mxZ/rB+
ufoYsKS0dvWuxzHCl9GlOugvsJMuhV11eyPXHlwT8+/hOPVpu1jjY126iE9B
ny0hl9BSuHYJgh/RLUHKgNuVwCjdIYcXuO5uIeliW3X6d1Qg817WWnbM1xIe
rY6dcA1+f31zwxeb5ob/+Y/i/2/vbvhi//DuhuuSZ2/D04/+bFnq9za1gljM
C5eP8BKoce/PG+34lu/ZDqVoy9AU1B+KDSUtDCxby6GJ5vRmo5l2ZCR8xJz6
XbCHrdyg2dfGzD62l5WDfwbDmL4tNv/h33X/hlcw2LcMZmXrzLWg4XQBVZac
fIzJZL+DFljttTctKTHbaA4ZGBNHt2uY0GrTCi0/j9ryt4zs64VNXjXmx+HG
u+wafHMX98D5quGvijixiFOPUJwdPpo6ccozNUw2DnzonOUZ2yx+UvcdA2+N
CPwo1eTcxmgf7ZbkB58Jb9Pb+HnsY/3cLnAQuHeP9T/sNX1f5mr2IURSmsAK
h3p9YF0tpJBj6o40j/CULrR0D8eRgu/eC2AIXrTVtt+PDafHBT70BX4Gwe5t
MhA/P170uMDjAo8LPC7w1gu8C0u6B803IvZXwpC5fQh5jLj9qi3n2azZxVZn
y9Tfoe06hMdzFgxZYR0Sr673tsZauaQW9vqL1Ki+gbWXD8Tas7dhb/GYKN69
e63NCFROwblexB/T8t31PGNdvuhB7tJLtvbSkxMlMn7vtTiKtNtan41Ldgef
nDNr6/522Tnt2EX771RpzBI5Wa9OCNI4v734FptGOYQdMLUo2YZ5Ua1evGZV
dweWdHHW2PbMM/cwPezM9zlXsVHcWRfvPdiFGrAgqSnbubHDfdLOZGPTkHYz
qz6XvaiomLPmUq9Fn+LM2rfsaxOkfVmw9GcwT9K3JYMfZlti1Oi2GWVFV0cr
+hVRXK2f0brRSnKbjb8ydAtzoqp5h2QaxSqysC65uh1KMmskTbXuaPbTiLem
OYiQ6Mw7V1tzT3duM2db3GxOpfk8k6Zq1qTwoabZfcmc7acwq6i6uewJV6ju
vss0ucvpZ79Kp7ozLVRFgG6iN1gajXntrBQUlv3COHtHfy+noho3ZXRvF1Mu
6atz2LbH4UuayXkzst6H0Uj6/LLCxF+oQvBH7Lt8f1L95PsuCikpKia3jWP3
MKlZhQJdV6F8m7LWGrZEhatSzV7+Ho1WKtssz1b5ZMBKYSWXqSDV7ExrDN8j
EsahlqwJsENc5i7GWFyqChaOHTWqI2rve8VSraaHTbNYD9/uTR81efhB3DxK
zrdVGtq7Zra5exIDVgxUBNM0dVaTNWKLZfYlBpmREld88/c7yNU036LSEsXi
oa9cd90z7G6LqUl/mTNxLBVzqft8pBtLH3yqPzaWfvTG0rvDkT9vY2k0hdNU
sKd1XVdpy+ygJeessxZFsD2Gvi/NMYoZ9b7vPYItbs2URhQG2SvgRaj/Ln0J
ozhllqLYrTift8JzLVEhoBx18i1ZfSauaAQemvJTbsISSxkh25QNMSklu9yI
Qkl1TYXKcocjkdM9q9DRfZwj5OWFPq1dqyjR7a01qxWOnnqyoynQzG7XPhQ2
lgBXG4IasW8/x1XQRa2ZFXDiQG6YpbsMRddMj1KtxwU++AV+BtH8sXP2uMDj
Ao8L/BVe4F2I/I/bOavQ1xYHLXcpDkiO7UE3MLJLaYZcW5yVwqOWdel7Pbmf
gkdtTBpzRaBz06dHrqJqpou1j5lDi9U2uyA/IsvV/v/2rmXJjhyF/kovZ9MR
EnrB5yAQs5mY+f/dHMozHZl2V9tl16PtuLVwlG/UJSWE0Dkkgn27j1gaQEw0
cC1Qsoh11MlqBnIWOPfmbSWrmAIA1QNGtAV0+9a/w58uoM+Rd4GnLbB3B1BU
5n5WW5iFrNrJhJIQBhhjrfs2BdkYYXtqhMPVFVwx0Vin5sGtTvC3pqWqQJiI
fFum0W//+Nd//v3P33AWvkHS0e8p+3d85/f6v59rHO67fn5KAa+afKW2ZbVp
INQrHLYAOD9GlS0lMgrU+oZNZh7NYMlWYCTXXVewt7w0YPrscPRF0tVLpV+1
gQd9Jv2L/CBaBlI0W5Y8pby62rJzRfavYwdn0NrBg2gshc/wW9RV1LH7R5bg
wkhGe2my1dupbf6RZPXtz7jSrz8e9xXlTUktMcHX1bY74bdp8H5W4C/glqrD
Q5UyQpo6Hnp5xo7p2kvUpHI2fqxw51tr8q+Tqj5/+i0s/vWBfEXHsgROtI4y
u8beFiIxCfYpoWI8Chh2WLRgGmeXW/u+mj3+LIxirHIPu/9Uga53W+5HgOuH
A1wvd9h/vTxfBLaGClGRSS5ZCqGSlZm3oOfYE4BlDAAmF4A4CvF9lew1fCo+
y0rBg/Yj7vMQ8N4CPvQse8R7HgIeAh4CfjkBL6E6V1/97TA81papQ0rVGL7Y
TvWyqouBBpjanGA7keCiMJjX9XW2Tc2oSvY39IF/XpIh9ZbUmt+YWjeW4luz
NBtBJ/s04ZFdGKsRgPbeJ0ZkOSk1OjOuIHKVXYRORDbApZKF6kJ6A2pz23pO
ZigpFoHmOkEL3IzOuQ7PGAq3kjzNpO/ZemZIhZ4OaaCV7q2vEQf8tXWjfdRW
XI/xvL/HdWJmexFUoaM5g3MZ11rzHh6RnRKN++Qs03Vs13HLcaEyC1U+xMPG
0llAJY2M9wZQ3X68NujUvOM58tKMqLePHbzEOr4ndtDrXhG6tJVM/Km9p1qz
ZfFaeYNtZH5R9DP6Fq238uZTqYRnQhrwvJzcmlDikCzg18eumUFH2VN5dtql
eoewW8KdAAbFZNd2urj7FnMaO0PCo4Ipt+U9LQ1GR01qljKJuL4i7z17OjiI
R61axs7CIeZtlj1Nj3EXI5Ha2smQsHTMo46rT2iHmoXq7qW00L3WjMzT2TBR
gS5sHjrVJp3lX+TLvSwD6iODI18a0esGRwYA7TpdCbyd+yIsI0mxVhjfXacS
DKHDSZ/iBYtwuyqZ6UctMwI6Rl7xC9w59KpaMBfetLidJbn0ytoy46neelcr
nPlZmJ4RjVxq6hoze+Suzn52Ji/NMqZsH/1Ed80pXs14wJVo0953Odqhhd3m
WtgVcF6SuVmwT8bQD0ylMBeYHF33AXu+O2jKILSbqa0B19hDyxF4KlmzNWh3
jEzbXfWnjf68mz0/oj8/HP15OaZ4WfSnSrjD6Qg2BJ1WDful5puzvUsjhduP
AsGNaRPOj6vPFmBEc1scxbW3Vj4Vn526Q7IqlOEbpQBQYJPh9B+9d75ttzWy
H0fj4313gBmHX8nuPwW/8eDtHBXO2hwTPeQt72nLVTmqc+3ehbOOlWeZPjid
4l41C/O2uXV48Zgb2PLELhsQ41Yq2ODfogdwzdnwPITvA38OHy1L5A51myvD
6rDhbesR3noIeG8BH4pGHuGth4CHgIeAX07AS9j494W3pIP0tigbOARwpIDI
ta1Ti7Ye9YCh0ip0wjMbfPTrZYtuG7CHara3KCoEkNMHu0wGXtqgSKEzC4Vz
C3B61wpqOK+Xp4rSmhkiArbywXbOzrjAzpQp6iLg7+24g1mVIfDuzaTd+ina
OGA/oFA1DDTKJcknK03fxDgNeKwpUFY7gimO1c9mu58qa8fxiaflzTsBdcJZ
xk7Ns/ROa2LGw7SRgFp+PY2Jxnzt3KUvmkF/+ujj20E/Zcd9qsP11gWT/v+U
z40XoB+Q2DqQeaMtwxcdLivm0Z2FNFpibCOQ+ya129X2sgk5bMHMKuDzmh9b
MOnP1DjfqGDSc8rcTU52LwURwrZc2NdwGVDFqUFgF1ZlWZn46DhE39rVlExA
HJWpcuFTXhi2+iDNvmfBJLoXW/5TW8afsVj0DkcZ5ayiwXOOOHkX8hi5OTwo
S9l7ya1EvHV1fPPpImbf8+e91/bulvAI/Pxw4Oe1CyY9554WEA+8eDoZSCDW
cfJm6pmlBGGjbAtqxpHDOeNWHX3azICJlhZ1Yms94iMPAe8t4G/g7B5xkoeA
h4CHgF9QwOsXTHoOhkjlrIcziMquMrNd1JBRo43RFzCJ8lTGYCYRL5/XeIn2
RaAYzesy29s+rmDSn7P21y6Y9CySA8GZ1SHSIW3JKW1sZi42tGXt7aGhgHt9
sZWybjdvMDNjXm1pi9mq51U5wiceS7RnX67hyfyzvMeyVXxOuadkZbzHWj2l
Htpq1iNa9ubaUwuWFEtTOa/3kNrBAm6uds0vOp3r7rFatB5ZkqQMx2oejtFB
I5pTNrcssqG+UqRl4le/5smQH+2nsir0KZaY9ehwjAd6PzJZZqW88AHteXxs
waS/Cku8dsGk56xFR4fIM7E0+cZ1ccMfKpjuicKej1SMASsqy3exq39oVFuH
9lcGJbbku9ueBbq2kMqRQxxWI1uQzpIvcmUp/vC6VqAajSnaOVrLWCuwPhHT
Y1oHM8d47cxhSkMaxUwbpCso7KVnJXe4jICVh3nHsFfD4irDYrcu7sElRjoO
GH+bq5dbmCpTUioJjGLFKMYWDNug6iXqqZ75cuCwuvbMUjp/n4JJ3xd3ee2C
Sd8QdzmdTncZjbWyNMhpdfSdRavrxj7EsGLxziBiJutczaOfpwpLzTOsXHhQ
LnClU4QPwcX01mltp31q1tvffe1+a20lOEjWbkVPDZM0T8kI96SI7tlMqmM2
8nSLGAbI3jjLMV0zqVqbRsMpXxI0dVOH0wEVzsS2kw2mYas0l/pTJmYOtdx6
9Fb4rzGzKtyeJnl5zzovjD8TJmBWdY2pYN0FXnK1nzaw9O6m/ggs/XBg6bUL
Jj13wHTs4dHd85UX6xxejsXS8GYE14ujrtAyhgudcNO3VELFX9YDxKDZLQQn
VO/dVmcykTOkpBQc8QNnThUBJsHmkysknDyjZ7bh7h3bjZqu0rzvQhnMAnZJ
pIPjSTMAzDsTVsmuHkSFHWfU2YEBarbZ1VGqzoJtncXbNvxG5V4M4hf+c9a5
50vj5LTAqcXpiLy2Uhm/AnxhKBvoavnhVjdATO84Gx+Rs4eAdxbwN/Dmj8jZ
Q8BDwEPALyjg9QsmPYezimjYmj6qkZltA6010KQBNj3zJhb4/dCswlLaZr2y
FHIH9R5Ga5FNPqOUbVn+tdgsmaMAftzBKffS0oDiBIyLrjTaBmZR7TDmW7Vs
zlKy4XUxxr7FMxSDh8RMCFZH3dHXDYwuscxvAME/Abw2Zq0g4kws0lWEOToI
PI0JiMYbfG7Wc1MYO+amT9wMgEpsNpluT92GjUGuLLva7RrZoXidTzlE/wVP
vW2qy0UFAA==

-->

</rfc>
