<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.1 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-cfrg-opaque-12" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.1 -->
  <front>
    <title abbrev="OPAQUE">The OPAQUE Asymmetric PAKE Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-opaque-12"/>
    <author initials="D." surname="Bourdrez" fullname="Daniel Bourdrez">
      <organization/>
      <address>
        <email>d@bytema.re</email>
      </address>
    </author>
    <author initials="H." surname="Krawczyk" fullname="Hugo Krawczyk">
      <organization>AWS</organization>
      <address>
        <email>hugokraw@gmail.com</email>
      </address>
    </author>
    <author initials="K." surname="Lewi" fullname="Kevin Lewi">
      <organization>Meta</organization>
      <address>
        <email>lewi.kevin.k@gmail.com</email>
      </address>
    </author>
    <author initials="C. A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare, Inc.</organization>
      <address>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2023" month="October" day="05"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 272?>

<t>This document describes the OPAQUE protocol, a secure asymmetric
password-authenticated key exchange (aPAKE) that supports mutual
authentication in a client-server setting without reliance on PKI and
with security against pre-computation attacks upon server compromise.
In addition, the protocol provides forward secrecy and the ability to
hide the password from the server, even during password registration.
This document specifies the core OPAQUE protocol and one instantiation
based on 3DH.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/cfrg/draft-irtf-cfrg-opaque"/>.</t>
    </note>
  </front>
  <middle>
    <?line 283?>

<section anchor="intro">
      <name>Introduction</name>
      <t>Password authentication is ubiquitous in many applications. In a common
implementation, a client authenticates to a server by sending its client
ID and password to the server over a secure connection. This makes
the password vulnerable to server mishandling, including accidentally
logging the password or storing it in plaintext in a database. Server
compromise resulting in access to these plaintext passwords is not an
uncommon security incident, even among security-conscious organizations.
Moreover, plaintext password authentication over secure channels such as
TLS is also vulnerable to cases where TLS may fail, including PKI
attacks, certificate mishandling, termination outside the security
perimeter, visibility to TLS-terminating intermediaries, and more.</t>
      <t>Asymmetric (or Augmented) Password Authenticated Key Exchange (aPAKE)
protocols are designed to provide password authentication and
mutually authenticated key exchange in a client-server setting without
relying on PKI (except during client registration) and without
disclosing passwords to servers or other entities other than the client
machine. A secure aPAKE should provide the best possible security for a
password protocol. Indeed, some attacks are inevitable, such as
online impersonation attempts with guessed client passwords and offline
dictionary attacks upon the compromise of a server and leakage of its
credential file. In the latter case, the attacker learns a mapping of
a client's password under a one-way function and uses such a mapping to
validate potential guesses for the password. Crucially important is
for the password protocol to use an unpredictable one-way mapping.
Otherwise, the attacker can pre-compute a deterministic list of mapped
passwords leading to almost instantaneous leakage of passwords upon
server compromise.</t>
      <t>This document describes OPAQUE, an aPAKE that is secure against
pre-computation attacks (as defined in <xref target="JKX18"/>). OPAQUE provides forward
secrecy with respect to password leakage while also hiding the password from
the server, even during password registration. OPAQUE allows applications
to increase the difficulty of offline dictionary attacks via iterated
hashing or other key stretching schemes. OPAQUE is also extensible, allowing
clients to safely store and retrieve arbitrary application data on servers
using only their password.</t>
      <t>OPAQUE is defined and proven as the composition of three functionalities:
an oblivious pseudorandom function (OPRF), a key recovery mechanism,
and an authenticated key exchange (AKE) protocol. It can be seen
as a "compiler" for transforming any suitable AKE protocol into a secure
aPAKE protocol. (See <xref target="security-considerations"/> for requirements of the
OPRF and AKE protocols.) This document specifies one OPAQUE instantiation
based on <xref target="TripleDH"/>. Other instantiations are possible, as discussed in
<xref target="alternate-akes"/>, but their details are out of scope for this document.
In general, the modularity of OPAQUE's design makes it easy to integrate
with additional AKE protocols, e.g., TLS or HMQV, and with future ones such
as those based on post-quantum techniques.</t>
      <t>OPAQUE consists of two stages: registration and authenticated key exchange.
In the first stage, a client registers its password with the server and stores
information used to recover authentication credentials on the server. Recovering these
credentials can only be done with knowledge of the client password. In the second
stage, a client uses its password to recover those credentials and subsequently
uses them as input to an AKE protocol. This stage has additional mechanisms to
prevent an active attacker from interacting with the server to guess or confirm
clients registered via the first phase. Servers can use this mechanism to safeguard
registered clients against this type of enumeration attack; see
<xref target="preventing-client-enumeration"/> for more discussion.</t>
      <t>The name OPAQUE is a homonym of O-PAKE where O is for Oblivious. The name
OPAKE was taken.</t>
      <t>This draft complies with the requirements for PAKE protocols set forth in
<xref target="RFC8125"/>.</t>
      <section anchor="requirements-notation">
        <name>Requirements Notation</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.
<?line -6?>
        </t>
      </section>
      <section anchor="notation">
        <name>Notation</name>
        <t>The following functions are used throughout this document:</t>
        <ul spacing="normal">
          <li>
            <t>I2OSP and OS2IP: Convert a byte string to and from a non-negative integer as
described in Section 4 of <xref target="RFC8017"/>. Note that these functions operate on
byte strings in big-endian byte order.</t>
          </li>
          <li>
            <t>concat(x0, ..., xN): Concatenate byte strings. For example,
<tt>concat(0x01, 0x0203, 0x040506) = 0x010203040506</tt>.</t>
          </li>
          <li>
            <t>random(n): Generate a cryptographically secure pseudorandom byte string of length <tt>n</tt> bytes.</t>
          </li>
          <li>
            <t>zeroes(n): Generate a string of <tt>n</tt> bytes all equal to 0 (zero).</t>
          </li>
          <li>
            <t>xor(a,b): Apply XOR to byte strings. For example, <tt>xor(0xF0F0, 0x1234) = 0xE2C4</tt>.
It is an error to call this function with arguments of unequal length.</t>
          </li>
          <li>
            <t>ct_equal(a, b): Return <tt>true</tt> if <tt>a</tt> is equal to <tt>b</tt>, and false otherwise.
The implementation of this function must be constant-time in the length of <tt>a</tt>
and <tt>b</tt>, which are assumed to be of equal length, irrespective of the values <tt>a</tt>
or <tt>b</tt>.</t>
          </li>
        </ul>
        <t>Except if said otherwise, random choices in this specification refer to
drawing with uniform distribution from a given set (i.e., "random" is short
for "uniformly random"). Random choices can be replaced with fresh outputs from
a cryptographically strong pseudorandom generator, according to the requirements
in <xref target="RFC4086"/>, or pseudorandom function. For convenience, we define <tt>nil</tt> as a
lack of value.</t>
        <t>All protocol messages and structures defined in this document use the syntax from
<xref section="3" sectionFormat="comma" target="RFC8446"/>.</t>
      </section>
    </section>
    <section anchor="dependencies">
      <name>Cryptographic Dependencies</name>
      <t>OPAQUE depends on the following cryptographic protocols and primitives:</t>
      <ul spacing="normal">
        <li>
          <t>Oblivious Pseudorandom Function (OPRF); <xref target="deps-oprf"/></t>
        </li>
        <li>
          <t>Key Derivation Function (KDF); <xref target="deps-symmetric"/></t>
        </li>
        <li>
          <t>Message Authentication Code (MAC); <xref target="deps-symmetric"/></t>
        </li>
        <li>
          <t>Cryptographic Hash Function; <xref target="deps-hash"/></t>
        </li>
        <li>
          <t>Key Stretching Function (KSF); <xref target="deps-hash"/></t>
        </li>
      </ul>
      <t>This section describes these protocols and primitives in more detail. Unless said
otherwise, all random nonces and seeds used in these dependencies and the rest of
the OPAQUE protocol are of length <tt>Nn</tt> and <tt>Nseed</tt> bytes, respectively, where
<tt>Nn</tt> = <tt>Nseed</tt> = 32.</t>
      <section anchor="deps-oprf">
        <name>Oblivious Pseudorandom Function</name>
        <t>An Oblivious Pseudorandom Function (OPRF) is a two-party protocol between
client and server for computing a PRF, where the PRF key is held by the server
and the input to the function is provided by the client.  The client does not
learn anything about the PRF other than the obtained output and the server
learns nothing about the client's input or the function output.
This specification depends on the prime-order OPRF construction specified
in <xref target="OPRF"/>, draft version -21, using the OPRF mode (0x00) from <xref section="3.1" sectionFormat="comma" target="OPRF"/>.</t>
        <t>The following OPRF client APIs are used:</t>
        <ul spacing="normal">
          <li>
            <t>Blind(element): Create and output (<tt>blind</tt>, <tt>blinded_element</tt>), consisting of a blinded
representation of input <tt>element</tt>, denoted <tt>blinded_element</tt>, along with a value to revert
the blinding process, denoted <tt>blind</tt>.</t>
          </li>
          <li>
            <t>Finalize(element, blind, evaluated_element): Finalize the OPRF evaluation using input <tt>element</tt>,
random inverter <tt>blind</tt>, and evaluation output <tt>evaluated_element</tt>, yielding output <tt>oprf_output</tt>.</t>
          </li>
        </ul>
        <t>Moreover, the following OPRF server APIs are used:</t>
        <ul spacing="normal">
          <li>
            <t>BlindEvaluate(k, blinded_element): Evaluate blinded input element <tt>blinded_element</tt> using
input key <tt>k</tt>, yielding output element <tt>evaluated_element</tt>. This is equivalent to
the BlindEvaluate function described in <xref section="3.3.1" sectionFormat="comma" target="OPRF"/>, where <tt>k</tt> is the private key parameter.</t>
          </li>
          <li>
            <t>DeriveKeyPair(seed, info): Create and output (<tt>sk</tt>, <tt>pk</tt>), consisting of a private and public key derived
deterministically from a <tt>seed</tt><tt> and </tt>info`` parameter, as described in <xref section="3.2" sectionFormat="comma" target="OPRF"/>.</t>
          </li>
        </ul>
        <t>Finally, this specification makes use of the following shared APIs and parameters:</t>
        <ul spacing="normal">
          <li>
            <t>SerializeElement(element): Map input <tt>element</tt> to a fixed-length byte array.</t>
          </li>
          <li>
            <t>DeserializeElement(buf): Attempt to map input byte array <tt>buf</tt> to an OPRF group element.
This function can raise a DeserializeError upon failure; see <xref section="2.1" sectionFormat="comma" target="OPRF"/>
for more details.</t>
          </li>
          <li>
            <t>Noe: The size of a serialized OPRF group element output from SerializeElement.</t>
          </li>
          <li>
            <t>Nok: The size of an OPRF private key as output from DeriveKeyPair.</t>
          </li>
        </ul>
      </section>
      <section anchor="deps-symmetric">
        <name>Key Derivation Function and Message Authentication Code</name>
        <t>A Key Derivation Function (KDF) is a function that takes some source of initial
keying material and uses it to derive one or more cryptographically strong keys.
This specification uses a KDF with the following API and parameters:</t>
        <ul spacing="normal">
          <li>
            <t>Extract(salt, ikm): Extract a pseudorandom key of fixed length <tt>Nx</tt> bytes from
input keying material <tt>ikm</tt> and an optional byte string <tt>salt</tt>.</t>
          </li>
          <li>
            <t>Expand(prk, info, L): Expand a pseudorandom key <tt>prk</tt> using the optional string <tt>info</tt>
into <tt>L</tt> bytes of output keying material.</t>
          </li>
          <li>
            <t>Nx: The output size of the <tt>Extract()</tt> function in bytes.</t>
          </li>
        </ul>
        <t>This specification also makes use of a random-key robust Message Authentication Code
(MAC). See <xref target="rkr-mac"/> for more details on this property. The API and parameters for
the random-key robust MAC are as follows:</t>
        <ul spacing="normal">
          <li>
            <t>MAC(key, msg): Compute a message authentication code over input <tt>msg</tt> with key
<tt>key</tt>, producing a fixed-length output of <tt>Nm</tt> bytes.</t>
          </li>
          <li>
            <t>Nm: The output size of the <tt>MAC()</tt> function in bytes.</t>
          </li>
        </ul>
      </section>
      <section anchor="deps-hash">
        <name>Hash Functions</name>
        <t>This specification makes use of a collision-resistant hash function with the following
API and parameters:</t>
        <ul spacing="normal">
          <li>
            <t>Hash(msg): Apply a cryptographic hash function to input <tt>msg</tt>, producing a
fixed-length digest of size <tt>Nh</tt> bytes.</t>
          </li>
          <li>
            <t>Nh: The output size of the <tt>Hash()</tt> function in bytes.</t>
          </li>
        </ul>
        <t>This specification makes use of a Key Stretching Function (KSF), which is a slow
and expensive cryptographic hash function with the following API:</t>
        <ul spacing="normal">
          <li>
            <t>Stretch(msg): Apply a key stretching function to stretch the input <tt>msg</tt> and
harden it against offline dictionary attacks. This function also needs to
satisfy collision resistance.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="protocol-overview">
      <name>Protocol Overview</name>
      <t>OPAQUE consists of two stages: registration and authenticated key exchange (AKE).
In the first stage, a client registers its password with the server and stores
its credential file on the server. In the second stage (also called the
"login" or "online" stage), the client recovers its authentication material and uses it to
perform a mutually authenticated key exchange.</t>
      <section anchor="setup">
        <name>Setup</name>
        <t>Prior to both stages, the client and server agree on a configuration that
fully specifies the cryptographic algorithm dependencies necessary to run the
protocol; see <xref target="configurations"/> for details.
The server chooses a pair of keys (<tt>server_private_key</tt> and <tt>server_public_key</tt>)
for the AKE, and chooses a seed (<tt>oprf_seed</tt>) of <tt>Nh</tt> bytes for the OPRF.
The server can use <tt>server_private_key</tt> and <tt>server_public_key</tt> with multiple
clients. The server can also opt to use different seeds for each client,
so long as they are maintained across the registration and online AKE stages, and
kept consistent for each client (since an inconsistent mapping of clients to seeds
could leak information as described in <xref target="preventing-client-enumeration"/>).</t>
      </section>
      <section anchor="offline-registration">
        <name>Offline Registration</name>
        <t>Registration is the only stage in OPAQUE that requires a server-authenticated
channel with confidentiality and integrity: either physical, out-of-band, PKI-based, etc.</t>
        <t>The client inputs its credentials, which include its password and user
identifier, and the server inputs its parameters, which include its private key
and other information.</t>
        <t>The client output of this stage is a single value <tt>export_key</tt> that the client
may use for application-specific purposes, e.g., as a symmetric key used to encrypt
additional information for storage on the server. The server does not have access to this
<tt>export_key</tt>.</t>
        <t>The server output of this stage is a record corresponding to the client's
registration that it stores in a credential file alongside other clients
registrations as needed.</t>
        <t>The registration flow is shown below:</t>
        <artwork><![CDATA[
    creds                                   parameters
      |                                         |
      v                                         v
    Client                                    Server
    ------------------------------------------------
                registration request
             ------------------------->
                registration response
             <-------------------------
                      record
             ------------------------->
   ------------------------------------------------
      |                                         |
      v                                         v
  export_key                                 record
]]></artwork>
        <t>These messages are named <tt>RegistrationRequest</tt>, <tt>RegistrationResponse</tt>, and
<tt>RegistrationRecord</tt>, respectively. Their contents and wire format are defined in
<xref target="registration-messages"/>.</t>
      </section>
      <section anchor="online-authenticated-key-exchange">
        <name>Online Authenticated Key Exchange</name>
        <t>In this second stage, a client obtains credentials previously registered
with the server, recovers private key material using the password, and
subsequently uses them as input to the AKE protocol. As in the registration
phase, the client inputs its credentials, including its password and user
identifier, and the server inputs its parameters and the credential file record
corresponding to the client. The client outputs two values, an <tt>export_key</tt>
(matching that from registration) and a <tt>session_key</tt>, the latter of which
is the primary AKE output. The server outputs a single value <tt>session_key</tt>
that matches that of the client. Upon completion, clients and servers can
use these values as needed.</t>
        <t>The authenticated key exchange flow is shown below:</t>
        <artwork><![CDATA[
    creds                             (parameters, record)
      |                                         |
      v                                         v
    Client                                    Server
    ------------------------------------------------
                   AKE message 1
             ------------------------->
                   AKE message 2
             <-------------------------
                   AKE message 3
             ------------------------->
   ------------------------------------------------
      |                                         |
      v                                         v
(export_key, session_key)                  session_key
]]></artwork>
        <t>These messages are named <tt>KE1</tt>, <tt>KE2</tt>, and <tt>KE3</tt>, respectively. They carry the
messages of the concurrent execution of the key recovery process (OPRF) and the
authenticated key exchange (AKE), and their corresponding wire formats are
specified in <xref target="ake-messages"/>.</t>
        <t>The rest of this document describes the specifics of these stages in detail.
<xref target="client-material"/> describes how client credential information is
generated, encoded, and stored on the server during registration, and recovered during
login. <xref target="offline-phase"/> describes the first registration stage of the protocol,
and <xref target="online-phase"/> describes the second authentication stage of the protocol.
<xref target="configurations"/> describes how to instantiate OPAQUE using different
cryptographic dependencies and parameters.</t>
      </section>
    </section>
    <section anchor="client-material">
      <name>Client Credential Storage and Key Recovery</name>
      <t>OPAQUE makes use of a structure called <tt>Envelope</tt> to manage client credentials.
The client creates its <tt>Envelope</tt> on registration and sends it to the server for
storage. On every login, the server sends this <tt>Envelope</tt> to the client so it can
recover its key material for use in the AKE.</t>
      <t>Applications may pin key material to identities if desired. If no identity is given
for a party, its value MUST default to its public key. The following types of
application credential information are considered:</t>
      <ul spacing="normal">
        <li>
          <t>client_private_key: The encoded client private key for the AKE protocol.</t>
        </li>
        <li>
          <t>client_public_key: The encoded client public key for the AKE protocol.</t>
        </li>
        <li>
          <t>server_public_key: The encoded server public key for the AKE protocol.</t>
        </li>
        <li>
          <t>client_identity: The client identity. This is an application-specific value,
e.g., an e-mail address or an account name. If not specified, it defaults
to the client's public key.</t>
        </li>
        <li>
          <t>server_identity: The server identity. This is typically a domain name, e.g., example.com.
If not specified, it defaults to the server's public key. See <xref target="identities"/> for
information about this identity.</t>
        </li>
      </ul>
      <t>A subset of these credential values are used in the <tt>CleartextCredentials</tt> structure as follows:</t>
      <artwork><![CDATA[
struct {
  uint8 server_public_key[Npk];
  uint8 server_identity<1..2^16-1>;
  uint8 client_identity<1..2^16-1>;
} CleartextCredentials;
]]></artwork>
      <t>The function CreateCleartextCredentials constructs a <tt>CleartextCredentials</tt> structure given
application credential information.</t>
      <artwork><![CDATA[
CreateCleartextCredentials

Input:
- server_public_key, the encoded server public key for the AKE protocol.
- client_public_key, the encoded client public key for the AKE protocol.
- server_identity, the optional encoded server identity.
- client_identity, the optional encoded client identity.

Output:
- cleartext_credentials, a CleartextCredentials structure.

def CreateCleartextCredentials(server_public_key, client_public_key,
                               server_identity, client_identity):
  # Set identities as public keys if no application-layer identity is provided
  if server_identity == nil
    server_identity = server_public_key
  if client_identity == nil
    client_identity = client_public_key

  Create CleartextCredentials cleartext_credentials with
    (server_public_key, server_identity, client_identity)
  return cleartext_credentials
]]></artwork>
      <section anchor="key-recovery">
        <name>Key Recovery</name>
        <t>This specification defines a key recovery mechanism that uses the stretched OPRF
output as a seed to directly derive the private and public keys using the
<tt>DeriveDiffieHellmanKeyPair()</tt> function defined in <xref target="key-creation"/>.</t>
        <section anchor="envelope-structure">
          <name>Envelope Structure</name>
          <t>The key recovery mechanism defines its <tt>Envelope</tt> as follows:</t>
          <artwork><![CDATA[
struct {
  uint8 nonce[Nn];
  uint8 auth_tag[Nm];
} Envelope;
]]></artwork>
          <t>nonce: A randomly-sampled nonce of length <tt>Nn</tt>, used to protect this <tt>Envelope</tt>.</t>
          <t>auth_tag: An authentication tag protecting the contents of the envelope, covering
the envelope nonce and <tt>CleartextCredentials</tt>.</t>
        </section>
        <section anchor="envelope-creation">
          <name>Envelope Creation</name>
          <t>Clients create an <tt>Envelope</tt> at registration with the function <tt>Store</tt> defined
below. Note that <tt>DeriveDiffieHellmanKeyPair</tt> in this function can fail with negligible
probability. If this occurs, servers should re-run the function, sampling a
new <tt>envelope_nonce</tt>, to completion.</t>
          <artwork><![CDATA[
Store

Input:
- randomized_password, a randomized password.
- server_public_key, the encoded server public key for
  the AKE protocol.
- server_identity, the optional encoded server identity.
- client_identity, the optional encoded client identity.

Output:
- envelope, the client's Envelope structure.
- client_public_key, the client's AKE public key.
- masking_key, an encryption key used by the server with the sole purpose
  of defending against client enumeration attacks.
- export_key, an additional client key.

def Store(randomized_password, server_public_key, server_identity, client_identity):
  envelope_nonce = random(Nn)
  masking_key = Expand(randomized_password, "MaskingKey", Nh)
  auth_key = Expand(randomized_password, concat(envelope_nonce, "AuthKey"), Nh)
  export_key = Expand(randomized_password, concat(envelope_nonce, "ExportKey"), Nh)
  seed = Expand(randomized_password, concat(envelope_nonce, "PrivateKey"), Nseed)
  (_, client_public_key) = DeriveDiffieHellmanKeyPair(seed)

  cleartext_credentials =
    CreateCleartextCredentials(server_public_key, client_public_key,
                               server_identity, client_identity)
  auth_tag = MAC(auth_key, concat(envelope_nonce, cleartext_credentials))

  Create Envelope envelope with (envelope_nonce, auth_tag)
  return (envelope, client_public_key, masking_key, export_key)
]]></artwork>
        </section>
        <section anchor="envelope-recovery">
          <name>Envelope Recovery</name>
          <t>Clients recover their <tt>Envelope</tt> during login with the <tt>Recover</tt> function
defined below.</t>
          <artwork><![CDATA[
Recover

Input:
- randomized_password, a randomized password.
- server_public_key, the encoded server public key for the AKE protocol.
- envelope, the client's Envelope structure.
- server_identity, the optional encoded server identity.
- client_identity, the optional encoded client identity.

Output:
- client_private_key, the encoded client private key for the AKE protocol.
- cleartext_credentials, a CleartextCredentials structure.
- export_key, an additional client key.

Exceptions:
- EnvelopeRecoveryError, the envelope fails to be recovered.

def Recover(randomized_password, server_public_key, envelope,
            server_identity, client_identity):
  auth_key = Expand(randomized_password, concat(envelope.nonce, "AuthKey"), Nh)
  export_key = Expand(randomized_password, concat(envelope.nonce, "ExportKey"), Nh)
  seed = Expand(randomized_password, concat(envelope.nonce, "PrivateKey"), Nseed)
  (client_private_key, client_public_key) = DeriveDiffieHellmanKeyPair(seed)

  cleartext_credentials = CreateCleartextCredentials(server_public_key,
                      client_public_key, server_identity, client_identity)
  expected_tag = MAC(auth_key, concat(envelope.nonce, cleartext_credentials))
  If !ct_equal(envelope.auth_tag, expected_tag)
    raise EnvelopeRecoveryError
  return (client_private_key, cleartext_credentials, export_key)
]]></artwork>
          <t>In the case of <tt>EnvelopeRecoveryError</tt> being raised, all previously-computed
intermediary values in this function MUST be deleted.</t>
        </section>
      </section>
    </section>
    <section anchor="offline-phase">
      <name>Offline Registration</name>
      <t>The registration process proceeds as follows. The client inputs
the following values:</t>
      <ul spacing="normal">
        <li>
          <t>password: The client's password.</t>
        </li>
        <li>
          <t>creds: The client credentials, as described in <xref target="client-material"/>.</t>
        </li>
      </ul>
      <t>The server inputs the following values:</t>
      <ul spacing="normal">
        <li>
          <t>server_public_key: The server public key for the AKE protocol.</t>
        </li>
        <li>
          <t>credential_identifier: A unique identifier for the client's
credential, generated by the server.</t>
        </li>
        <li>
          <t>client_identity: The optional client identity as described in <xref target="client-material"/>.</t>
        </li>
        <li>
          <t>oprf_seed: A seed used to derive per-client OPRF keys.</t>
        </li>
      </ul>
      <t>The registration protocol then runs as shown below:</t>
      <artwork><![CDATA[
  Client                                         Server
 ------------------------------------------------------
 (request, blind) = CreateRegistrationRequest(password)

                        request
              ------------------------->

 response = CreateRegistrationResponse(request,
                                       server_public_key,
                                       credential_identifier,
                                       oprf_seed)

                        response
              <-------------------------

 (record, export_key) = FinalizeRegistrationRequest(response,
                                                    server_identity,
                                                    client_identity)

                        record
              ------------------------->
]]></artwork>
      <t><xref target="registration-messages"/> describes the formats for the above messages, and
<xref target="registration-functions"/> describes details of the functions and the
corresponding parameters referenced above.</t>
      <t>At the end of this interaction, the server stores the <tt>record</tt> object as the
credential file for each client along with the associated <tt>credential_identifier</tt>
and <tt>client_identity</tt> (if different). Note that the values <tt>oprf_seed</tt> and
<tt>server_private_key</tt> from the server's setup phase must also be persisted.
The <tt>oprf_seed</tt> value SHOULD be used for all clients; see <xref target="preventing-client-enumeration"/>.
The <tt>server_private_key</tt> may be unique for each client.</t>
      <t>Both client and server MUST validate the other party's public key before use.
See <xref target="validation"/> for more details. Upon completion, the server stores
the client's credentials for later use. Moreover, the client MAY use the output
<tt>export_key</tt> for further application-specific purposes; see <xref target="export-key-usage"/>.</t>
      <section anchor="registration-messages">
        <name>Registration Messages</name>
        <t>This section contains definitions of the <tt>RegistrationRequest</tt>,
<tt>RegistrationResponse</tt>, and <tt>RegistrationRecord</tt> messages exchanged between
client and server during registration.</t>
        <artwork><![CDATA[
struct {
  uint8 blinded_message[Noe];
} RegistrationRequest;
]]></artwork>
        <t>blinded_message: A serialized OPRF group element.</t>
        <artwork><![CDATA[
struct {
  uint8 evaluated_message[Noe];
  uint8 server_public_key[Npk];
} RegistrationResponse;
]]></artwork>
        <t>evaluated_message: A serialized OPRF group element.</t>
        <t>server_public_key: The server's encoded public key that will be used for
the online AKE stage.</t>
        <artwork><![CDATA[
struct {
  uint8 client_public_key[Npk];
  uint8 masking_key[Nh];
  Envelope envelope;
} RegistrationRecord;
]]></artwork>
        <t>client_public_key: The client's encoded public key, corresponding to
the private key <tt>client_private_key</tt>.</t>
        <t>masking_key: An encryption key used by the server with the sole purpose
of defending against client enumeration attacks.</t>
        <t>envelope: The client's <tt>Envelope</tt> structure.</t>
      </section>
      <section anchor="registration-functions">
        <name>Registration Functions</name>
        <t>This section contains definitions of the functions used by client and server
during registration, including <tt>CreateRegistrationRequest</tt>, <tt>CreateRegistrationResponse</tt>,
and <tt>FinalizeRegistrationRequest</tt>.</t>
        <section anchor="createregistrationrequest">
          <name>CreateRegistrationRequest</name>
          <t>To begin the registration flow, the client executes the following function. This function
can fail with an <tt>InvalidInputError</tt> error with negligibile probability. A different input
password is necessary in the event of this error.</t>
          <artwork><![CDATA[
CreateRegistrationRequest

Input:
- password, an opaque byte string containing the client's password.

Output:
- request, a RegistrationRequest structure.
- blind, an OPRF scalar value.

Exceptions:
- InvalidInputError, when Blind fails

def CreateRegistrationRequest(password):
  (blind, blinded_element) = Blind(password)
  blinded_message = SerializeElement(blinded_element)
  Create RegistrationRequest request with blinded_message
  return (request, blind)
]]></artwork>
        </section>
        <section anchor="create-reg-response">
          <name>CreateRegistrationResponse</name>
          <t>To process the client's registration request, the server executes
the following function. This function can fail with a <tt>DeriveKeyPairError</tt>
error with negligible probability. In this case, application can
choose a new <tt>credential_identifier</tt> for this registration record
and re-run this function.</t>
          <artwork><![CDATA[
CreateRegistrationResponse

Input:
- request, a RegistrationRequest structure.
- server_public_key, the server's public key.
- credential_identifier, an identifier that uniquely represents the credential.
- oprf_seed, the seed of Nh bytes used by the server to generate an oprf_key.

Output:
- response, a RegistrationResponse structure.

Exceptions:
- DeserializeError, when OPRF element deserialization fails.
- DeriveKeyPairError, when OPRF key derivation fails.

def CreateRegistrationResponse(request, server_public_key,
                               credential_identifier, oprf_seed):
  seed = Expand(oprf_seed, concat(credential_identifier, "OprfKey"), Nok)
  (oprf_key, _) = DeriveKeyPair(seed, "OPAQUE-DeriveKeyPair")

  blinded_element = DeserializeElement(request.blinded_message)
  evaluated_element = BlindEvaluate(oprf_key, blinded_element)
  evaluated_message = SerializeElement(evaluated_element)

  Create RegistrationResponse response with (evaluated_message, server_public_key)
  return response
]]></artwork>
        </section>
        <section anchor="finalize-request">
          <name>FinalizeRegistrationRequest</name>
          <t>To create the user record used for subsequent authentication and complete the
registration flow, the client executes the following function.</t>
          <artwork><![CDATA[
FinalizeRegistrationRequest

Input:
- password, an opaque byte string containing the client's password.
- blind, an OPRF scalar value.
- response, a RegistrationResponse structure.
- server_identity, the optional encoded server identity.
- client_identity, the optional encoded client identity.

Output:
- record, a RegistrationRecord structure.
- export_key, an additional client key.

Exceptions:
- DeserializeError, when OPRF element deserialization fails.

def FinalizeRegistrationRequest(password, blind, response, server_identity, client_identity):
  evaluated_element = DeserializeElement(response.evaluated_message)
  oprf_output = Finalize(password, blind, evaluated_element)

  stretched_oprf_output = Stretch(oprf_output)
  randomized_password = Extract("", concat(oprf_output, stretched_oprf_output))

  (envelope, client_public_key, masking_key, export_key) =
    Store(randomized_password, response.server_public_key,
          server_identity, client_identity)
  Create RegistrationRecord record with (client_public_key, masking_key, envelope)
  return (record, export_key)
]]></artwork>
          <t>See <xref target="online-phase"/> for details about the output <tt>export_key</tt> usage.</t>
        </section>
      </section>
    </section>
    <section anchor="online-phase">
      <name>Online Authenticated Key Exchange</name>
      <t>The generic outline of OPAQUE with a 3-message AKE protocol includes three messages:
<tt>KE1</tt>, <tt>KE2</tt>, and <tt>KE3</tt>, where <tt>KE1</tt> and <tt>KE2</tt> include key exchange shares, e.g., DH values, sent
by the client and server, respectively, and <tt>KE3</tt> provides explicit client authentication and
full forward security (without it, forward secrecy is only achieved against eavesdroppers,
which is insufficient for OPAQUE security).</t>
      <t>This section describes the online authenticated key exchange protocol flow,
message encoding, and helper functions. This stage is composed of a concurrent
OPRF and key exchange flow. The key exchange protocol is authenticated using the
client and server credentials established during registration; see <xref target="offline-phase"/>.
In the end, the client proves its knowledge of the password, and both client and
server agree on (1) a mutually authenticated shared secret key and (2) any optional
application information exchange during the handshake.</t>
      <t>In this stage, the client inputs the following values:</t>
      <ul spacing="normal">
        <li>
          <t>password: The client's password.</t>
        </li>
        <li>
          <t>client_identity: The client identity, as described in <xref target="client-material"/>.</t>
        </li>
      </ul>
      <t>The server inputs the following values:</t>
      <ul spacing="normal">
        <li>
          <t>server_private_key: The server's private key for the AKE protocol.</t>
        </li>
        <li>
          <t>server_public_key: The server's public key for the AKE protocol.</t>
        </li>
        <li>
          <t>server_identity: The server identity, as described in <xref target="client-material"/>.</t>
        </li>
        <li>
          <t>record: The <tt>RegistrationRecord</tt> object corresponding to the client's registration.</t>
        </li>
        <li>
          <t>credential_identifier: An identifier that uniquely represents the credential.</t>
        </li>
        <li>
          <t>oprf_seed: The seed used to derive per-client OPRF keys.</t>
        </li>
      </ul>
      <t>The client receives two outputs: a session secret and an export key. The export
key is only available to the client and may be used for additional
application-specific purposes, as outlined in <xref target="export-key-usage"/>.
Clients and servers MUST NOT use the output <tt>export_key</tt> before
authenticating the peer in the authenticated key exchange protocol.
See <xref target="alternate-key-recovery"/> for more details about this
requirement. The server receives a single output: a session secret matching the
client's.</t>
      <t>The protocol runs as shown below:</t>
      <artwork><![CDATA[
  Client                                         Server
 ------------------------------------------------------
  ke1 = GenerateKE1(password)

                         ke1
              ------------------------->

  ke2 = GenerateKE2(server_identity, server_private_key,
                    server_public_key, record,
                    credential_identifier, oprf_seed, ke1)

                         ke2
              <-------------------------

    (ke3,
    session_key,
    export_key) = GenerateKE3(client_identity,
                               server_identity, ke2)

                         ke3
              ------------------------->

                       session_key = ServerFinish(ke3)
]]></artwork>
      <t>Both client and server may use implicit internal state objects to keep necessary
material for the OPRF and AKE, <tt>client_state</tt> and <tt>server_state</tt>, respectively.</t>
      <t>The client state <tt>ClientState</tt> may have the following fields:</t>
      <ul spacing="normal">
        <li>
          <t>password: The client's password.</t>
        </li>
        <li>
          <t>blind: The random blinding inverter returned by <tt>Blind()</tt>.</t>
        </li>
        <li>
          <t>client_ake_state: The <tt>ClientAkeState</tt> defined in <xref target="protocol-3dh"/>.</t>
        </li>
      </ul>
      <t>The server state <tt>ServerState</tt> may have the following fields:</t>
      <ul spacing="normal">
        <li>
          <t>server_ake_state: The <tt>ServerAkeState</tt> defined in <xref target="protocol-3dh"/>.</t>
        </li>
      </ul>
      <t>Both of these states are ephemeral and should be erased after the protocol completes.</t>
      <t>The rest of this section describes these authenticated key exchange messages
and their parameters in more detail. <xref target="ake-messages"/> defines the structure of the
messages passed between client and server in the above setup. <xref target="ake-functions"/>
describes details of the functions and corresponding parameters mentioned above.
<xref target="cred-retrieval"/> discusses internal functions used for retrieving client
credentials, and <xref target="protocol-3dh"/> discusses how these functions are used to execute
the authenticated key exchange protocol.</t>
      <section anchor="ake-messages">
        <name>AKE Messages</name>
        <t>In this section, we define the <tt>KE1</tt>, <tt>KE2</tt>, and <tt>KE3</tt> structs that make up
the AKE messages used in the protocol. <tt>KE1</tt> is composed of a <tt>CredentialRequest</tt>
and <tt>AuthRequest</tt>, and <tt>KE2</tt> is composed of a <tt>CredentialResponse</tt>
and <tt>AuthResponse</tt>.</t>
        <artwork><![CDATA[
struct {
  uint8 client_nonce[Nn];
  uint8 client_public_keyshare[Npk];
} AuthRequest;
]]></artwork>
        <t>client_nonce: A fresh randomly generated nonce of length <tt>Nn</tt>.</t>
        <t>client_public_keyshare: A serialized client ephemeral public key of fixed size <tt>Npk</tt>.</t>
        <artwork><![CDATA[
struct {
  CredentialRequest credential_request;
  AuthRequest auth_request;
} KE1;
]]></artwork>
        <t>credential_request: A <tt>CredentialRequest</tt> structure.</t>
        <t>auth_request: An <tt>AuthRequest</tt> structure.</t>
        <artwork><![CDATA[
struct {
  uint8 server_nonce[Nn];
  uint8 server_public_keyshare[Npk];
  uint8 server_mac[Nm];
} AuthResponse;
]]></artwork>
        <t>server_nonce: A fresh randomly generated nonce of length <tt>Nn</tt>.</t>
        <t>server_public_keyshare: A server ephemeral public key of fixed size <tt>Npk</tt>, where <tt>Npk</tt>
depends on the corresponding prime order group.</t>
        <t>server_mac: An authentication tag computed over the handshake transcript
computed using <tt>Km2</tt>, defined below.</t>
        <artwork><![CDATA[
struct {
  CredentialResponse credential_response;
  AuthResponse auth_response;
} KE2;
]]></artwork>
        <t>credential_response: A <tt>CredentialResponse</tt> structure.</t>
        <t>auth_response: An <tt>AuthResponse</tt> structure.</t>
        <artwork><![CDATA[
struct {
  uint8 client_mac[Nm];
} KE3;
]]></artwork>
        <t>client_mac: An authentication tag computed over the handshake transcript
of fixed size <tt>Nm</tt>, computed using <tt>Km2</tt>, defined below.</t>
      </section>
      <section anchor="ake-functions">
        <name>AKE Functions</name>
        <t>In this section, we define the main functions used to produce the AKE messages
in the protocol. Note that this section relies on definitions of subroutines defined
in later sections:</t>
        <ul spacing="normal">
          <li>
            <t><tt>CreateCredentialRequest</tt>, <tt>CreateCredentialResponse</tt>, <tt>RecoverCredentials</tt>
defined in <xref target="cred-retrieval"/></t>
          </li>
          <li>
            <t><tt>AuthClientStart</tt>, <tt>AuthServerRespond</tt>, <tt>AuthClientFinalize</tt>, and <tt>AuthServerFinalize</tt>
defined in <xref target="ake-client"/> and <xref target="ake-server"/></t>
          </li>
        </ul>
        <section anchor="generateke1">
          <name>GenerateKE1</name>
          <t>The <tt>GenerateKE1</tt> function begins the AKE protocol and produces the client's <tt>KE1</tt>
output for the server.</t>
          <artwork><![CDATA[
GenerateKE1

State:
- state, a ClientState structure.

Input:
- password, an opaque byte string containing the client's password.

Output:
- ke1, a KE1 message structure.

def GenerateKE1(password):
  request, blind = CreateCredentialRequest(password)
  state.password = password
  state.blind = blind
  ke1 = AuthClientStart(request)
  return ke1
]]></artwork>
        </section>
        <section anchor="generateke2">
          <name>GenerateKE2</name>
          <t>The <tt>GenerateKE2</tt> function continues the AKE protocol by processing the client's <tt>KE1</tt> message
and producing the server's <tt>KE2</tt> output.</t>
          <artwork><![CDATA[
GenerateKE2

State:
- state, a ServerState structure.

Input:
- server_identity, the optional encoded server identity, which is set to
  server_public_key if not specified.
- server_private_key, the server's private key.
- server_public_key, the server's public key.
- record, the client's RegistrationRecord structure.
- credential_identifier, an identifier that uniquely represents the credential.
- oprf_seed, the server-side seed of Nh bytes used to generate an oprf_key.
- ke1, a KE1 message structure.
- client_identity, the optional encoded client identity, which is set to
  client_public_key if not specified.

Output:
- ke2, a KE2 structure.

def GenerateKE2(server_identity, server_private_key, server_public_key,
               record, credential_identifier, oprf_seed, ke1, client_identity):
  credential_response = CreateCredentialResponse(ke1.credential_request, server_public_key, record,
    credential_identifier, oprf_seed)
  cleartext_credentials = CreateCleartextCredentials(server_public_key,
                      record.client_public_key, server_identity, client_identity)
  auth_response = AuthServerRespond(cleartext_credentials, server_private_key,
                      record.client_public_key, ke1, credential_response)
  Create KE2 ke2 with (credential_response, auth_response)
  return ke2
]]></artwork>
        </section>
        <section anchor="generateke3">
          <name>GenerateKE3</name>
          <t>The <tt>GenerateKE3</tt> function completes the AKE protocol for the client and
produces the client's <tt>KE3</tt> output for the server, as well as the <tt>session_key</tt>
and <tt>export_key</tt> outputs from the AKE.</t>
          <artwork><![CDATA[
GenerateKE3

State:
- state, a ClientState structure.

Input:
- client_identity, the optional encoded client identity, which is set
  to client_public_key if not specified.
- server_identity, the optional encoded server identity, which is set
  to server_public_key if not specified.
- ke2, a KE2 message structure.

Output:
- ke3, a KE3 message structure.
- session_key, the session's shared secret.
- export_key, an additional client key.

def GenerateKE3(client_identity, server_identity, ke2):
  (client_private_key, cleartext_credentials, export_key) =
    RecoverCredentials(state.password, state.blind, ke2.credential_response,
                       server_identity, client_identity)
  (ke3, session_key) =
    AuthClientFinalize(cleartext_credentials, client_private_key, ke2)
  return (ke3, session_key, export_key)
]]></artwork>
        </section>
        <section anchor="serverfinish">
          <name>ServerFinish</name>
          <t>The <tt>ServerFinish</tt> function completes the AKE protocol for the server, yielding the <tt>session_key</tt>.
Since the OPRF is a two-message protocol, <tt>KE3</tt> has no element of the OPRF, and it, therefore,
invokes the AKE's <tt>AuthServerFinalize</tt> directly. The <tt>AuthServerFinalize</tt> function
takes <tt>KE3</tt> as input and MUST verify the client authentication material it contains
before the <tt>session_key</tt> value can be used. This verification is necessary to ensure
forward secrecy against active attackers.</t>
          <artwork><![CDATA[
ServerFinish

State:
- state, a ServerState structure.

Input:
- ke3, a KE3 structure.

Output:
- session_key, the shared session secret if and only if ke3 is valid.

def ServerFinish(ke3):
  return AuthServerFinalize(ke3)
]]></artwork>
          <t>This function MUST NOT return the <tt>session_key</tt> value if the client authentication
material is invalid, and may instead return an appropriate error message such as
<tt>ClientAuthenticationError</tt>, invoked from <tt>AuthServerFinalize</tt>.</t>
        </section>
      </section>
      <section anchor="cred-retrieval">
        <name>Credential Retrieval</name>
        <t>This section describes the sub-protocol run during authentication to retrieve and
recover the client credentials.</t>
        <section anchor="credential-retrieval-messages">
          <name>Credential Retrieval Messages</name>
          <t>This section describes the <tt>CredentialRequest</tt> and <tt>CredentialResponse</tt> messages exchanged
between client and server to perform credential retrieval.</t>
          <artwork><![CDATA[
struct {
  uint8 blinded_message[Noe];
} CredentialRequest;
]]></artwork>
          <t>blinded_message: A serialized OPRF group element.</t>
          <artwork><![CDATA[
struct {
  uint8 evaluated_message[Noe];
  uint8 masking_nonce[Nn];
  uint8 masked_response[Npk + Nn + Nm];
} CredentialResponse;
]]></artwork>
          <t>evaluated_message: A serialized OPRF group element.</t>
          <t>masking_nonce: A nonce used for the confidentiality of the
<tt>masked_response</tt> field.</t>
          <t>masked_response: An encrypted form of the server's public key and the
client's <tt>Envelope</tt> structure.</t>
        </section>
        <section anchor="credential-retrieval-functions">
          <name>Credential Retrieval Functions</name>
          <t>This section describes the <tt>CreateCredentialRequest</tt>, <tt>CreateCredentialResponse</tt>,
and <tt>RecoverCredentials</tt> functions used for credential retrieval.</t>
          <section anchor="create-credential-request">
            <name>CreateCredentialRequest</name>
            <t>The <tt>CreateCredentialRequest</tt> is used by the client to initiate the credential
retrieval process, and it produces a <tt>CredentialRequest</tt> message and OPRF state.
Like <tt>CreateRegistrationRequest</tt>, this function can fail with an <tt>InvalidInputError</tt>
error with negligibile probability. However, this should not occur since
registration (via <tt>CreateRegistrationRequest</tt>) will fail when provided the same
password input.</t>
            <artwork><![CDATA[
CreateCredentialRequest

Input:
- password, an opaque byte string containing the client's password.

Output:
- request, a CredentialRequest structure.
- blind, an OPRF scalar value.

Exceptions:
- InvalidInputError, when Blind fails

def CreateCredentialRequest(password):
  (blind, blinded_element) = Blind(password)
  blinded_message = SerializeElement(blinded_element)
  Create CredentialRequest request with blinded_message
  return (request, blind)
]]></artwork>
          </section>
          <section anchor="create-credential-response">
            <name>CreateCredentialResponse</name>
            <t>The <tt>CreateCredentialResponse</tt> function is used by the server to process the client's
<tt>CredentialRequest</tt> message and complete the credential retrieval process, producing
a <tt>CredentialResponse</tt>.</t>
            <t>There are two scenarios to handle for the construction of a <tt>CredentialResponse</tt>
object: either the record for the client exists (corresponding to a properly
registered client), or it was never created (corresponding to an unregistered
client identity, possibly the result of an enumeration attack attempt).</t>
            <t>In the case of an existing record with the corresponding identifier
<tt>credential_identifier</tt>, the server invokes the following function to
produce a <tt>CredentialResponse</tt>:</t>
            <artwork><![CDATA[
CreateCredentialResponse

Input:
- request, a CredentialRequest structure.
- server_public_key, the public key of the server.
- record, an instance of RegistrationRecord which is the server's
  output from registration.
- credential_identifier, an identifier that uniquely represents the credential.
- oprf_seed, the server-side seed of Nh bytes used to generate an oprf_key.

Output:
- response, a CredentialResponse structure.

Exceptions:
- DeserializeError, when OPRF element deserialization fails.

def CreateCredentialResponse(request, server_public_key, record,
                             credential_identifier, oprf_seed):
  seed = Expand(oprf_seed, concat(credential_identifier, "OprfKey"), Nok)
  (oprf_key, _) = DeriveKeyPair(seed, "OPAQUE-DeriveKeyPair")

  blinded_element = DeserializeElement(request.blinded_message)
  evaluated_element = BlindEvaluate(oprf_key, blinded_element)
  evaluated_message = SerializeElement(evaluated_element)

  masking_nonce = random(Nn)
  credential_response_pad = Expand(record.masking_key,
                                   concat(masking_nonce, "CredentialResponsePad"),
                                   Npk + Nn + Nm)
  masked_response = xor(credential_response_pad,
                        concat(server_public_key, record.envelope))
  Create CredentialResponse response with (evaluated_message, masking_nonce, masked_response)
  return response
]]></artwork>
            <t>In the case of a record that does not exist and if client enumeration prevention is desired,
the server MUST respond to the credential request to fake the existence of the record.
The server SHOULD invoke the <tt>CreateCredentialResponse</tt> function with a fake client record
argument that is configured so that:</t>
            <ul spacing="normal">
              <li>
                <t><tt>record.client_public_key</tt> is set to a randomly generated public key of length <tt>Npk</tt></t>
              </li>
              <li>
                <t><tt>record.masking_key</tt> is set to a random byte string of length <tt>Nh</tt></t>
              </li>
              <li>
                <t><tt>record.envelope</tt> is set to the byte string consisting only of zeros of length <tt>Nn + Nm</tt></t>
              </li>
            </ul>
            <t>It is RECOMMENDED that a fake client record is created once (e.g. as the first user record
of the application) and stored alongside legitimate client records. This allows servers to retrieve
the record in a time comparable to that of a legitimate client record.</t>
            <t>Note that the responses output by either scenario are indistinguishable to an adversary
that is unable to guess the registered password for the client corresponding to <tt>credential_identifier</tt>.</t>
          </section>
          <section anchor="recover-credentials">
            <name>RecoverCredentials</name>
            <t>The <tt>RecoverCredentials</tt> function is used by the client to process the server's
<tt>CredentialResponse</tt> message and produce the client's private key, server public
key, and the <tt>export_key</tt>.</t>
            <artwork><![CDATA[
RecoverCredentials

Input:
- password, an opaque byte string containing the client's password.
- blind, an OPRF scalar value.
- response, a CredentialResponse structure.
- server_identity, The optional encoded server identity.
- client_identity, The encoded client identity.

Output:
- client_private_key, the encoded client private key for the AKE protocol.
- cleartext_credentials, a CleartextCredentials structure.
- export_key, an additional client key.

Exceptions:
- DeserializeError, when OPRF element deserialization fails.

def RecoverCredentials(password, blind, response,
                       server_identity, client_identity):
  evaluated_element = DeserializeElement(response.evaluated_message)

  oprf_output = Finalize(password, blind, evaluated_element)
  stretched_oprf_output = Stretch(oprf_output)
  randomized_password = Extract("", concat(oprf_output, stretched_oprf_output))

  masking_key = Expand(randomized_password, "MaskingKey", Nh)
  credential_response_pad = Expand(masking_key,
                                   concat(response.masking_nonce, "CredentialResponsePad"),
                                   Npk + Nn + Nm)
  concat(server_public_key, envelope) = xor(credential_response_pad,
                                              response.masked_response)
  (client_private_key, cleartext_credentials, export_key) =
    Recover(randomized_password, server_public_key, envelope,
            server_identity, client_identity)

  return (client_private_key, cleartext_credentials, export_key)
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="protocol-3dh">
        <name>3DH Protocol</name>
        <t>This section describes the authenticated key exchange protocol for OPAQUE using
3DH, a 3-message AKE which satisfies the forward secrecy and KCI properties
discussed in <xref target="security-considerations"/>.</t>
        <t>The client AKE state <tt>ClientAkeState</tt> mentioned in <xref target="online-phase"/> has the
following fields:</t>
        <ul spacing="normal">
          <li>
            <t>client_secret: An opaque byte string of length <tt>Nsk</tt>.</t>
          </li>
          <li>
            <t>ke1: A value of type <tt>KE1</tt>.</t>
          </li>
        </ul>
        <t>The server AKE state <tt>ServerAkeState</tt> mentioned in <xref target="online-phase"/> has the
following fields:</t>
        <ul spacing="normal">
          <li>
            <t>expected_client_mac: An opaque byte string of length <tt>Nm</tt>.</t>
          </li>
          <li>
            <t>session_key: An opaque byte string of length <tt>Nx</tt>.</t>
          </li>
        </ul>
        <t><xref target="ake-client"/> and <xref target="ake-server"/> specify the inner workings of client and
server functions, respectively.</t>
        <section anchor="key-creation">
          <name>3DH Key Exchange Functions</name>
          <t>We assume the following functions to exist for all Diffie-Hellman key exchange
variants:</t>
          <ul spacing="normal">
            <li>
              <t>DeriveDiffieHellmanKeyPair(seed): Derive a private and public Diffie-Hellman
key pair deterministically from the input <tt>seed</tt>. The type of the private key
depends on the implementation, whereas the type of the public key is a
byte string of <tt>Npk</tt> bytes.</t>
            </li>
            <li>
              <t>DiffieHellman(k, B): A function that performs the Diffie-Hellman operation
between the private input <tt>k</tt> and public input <tt>B</tt>.
The output of this function is a unique, fixed-length byte string.</t>
            </li>
          </ul>
          <t>It is RECOMMENDED to use Elliptic Curve Diffie-Hellman for this key exchange protocol.
Implementations for recommended groups in <xref target="configurations"/>, as well as groups
covered by test vectors in <xref target="test-vectors"/>, are described in the following sections.</t>
          <section anchor="dh-ristretto255">
            <name>3DH ristretto255</name>
            <t>This section describes the implementation of the Diffie-Hellman key exchange functions based on ristretto255,
as defined in <xref target="RISTRETTO"/>.</t>
            <ul spacing="normal">
              <li>
                <t>DeriveDiffieHellmanKeyPair(seed): This function is implemented as
DeriveKeyPair(seed, "OPAQUE-DeriveDiffieHellmanKeyPair"), where DeriveKeyPair is
as specified in <xref section="3.2" sectionFormat="comma" target="OPRF"/>. The public value from DeriveKeyPair
is encoded using SerializeElement from <xref section="2.1" sectionFormat="of" target="OPRF"/>.</t>
              </li>
              <li>
                <t>DiffieHellman(k, B): Implemented as scalar multiplication as described in
<xref section="4" sectionFormat="of" target="RISTRETTO"/> after decoding <tt>B</tt> from its encoded input using
the Decode function in <xref section="4.3.1" sectionFormat="of" target="RISTRETTO"/>. The output is then
encoded using the SerializeElement function of the OPRF group described in
<xref section="2.1" sectionFormat="comma" target="OPRF"/>.</t>
              </li>
            </ul>
          </section>
          <section anchor="dh-p-256">
            <name>3DH P-256</name>
            <t>This section describes the implementation of the Diffie-Hellman key exchange functions based on NIST P-256,
as defined in <xref target="NISTCurves"/>.</t>
            <ul spacing="normal">
              <li>
                <t>DeriveDiffieHellmanKeyPair(seed): This function is implemented as
DeriveKeyPair(seed, "OPAQUE-DeriveDiffieHellmanKeyPair"), where DeriveKeyPair is
as specified in <xref section="3.2" sectionFormat="comma" target="OPRF"/>. The public value from DeriveKeyPair
is encoded using SerializeElement from <xref section="2.1" sectionFormat="of" target="OPRF"/>.</t>
              </li>
              <li>
                <t>DiffieHellman(k, B): Implemented as scalar multiplication as described in
<xref target="NISTCurves"/>, after decoding <tt>B</tt> from its encoded input using
the compressed Octet-String-to-Elliptic-Curve-Point method according to <xref target="NISTCurves"/>.
The output is then encoded using the SerializeElement function of the OPRF
group described in <xref section="2.1" sectionFormat="comma" target="OPRF"/>.</t>
              </li>
            </ul>
          </section>
          <section anchor="dh-curve25519">
            <name>3DH Curve25519</name>
            <t>This section describes the implementation of the Diffie-Hellman key exchange functions based on Curve25519,
as defined in <xref target="Curve25519"/>.</t>
            <ul spacing="normal">
              <li>
                <t>DeriveDiffieHellmanKeyPair(seed): This function is implemented by returning the private
key <tt>k</tt> based on seed (of length <tt>Nseed = 32</tt> bytes), as described in <xref section="5" sectionFormat="of" target="Curve25519"/>,
as well as the result of DiffieHellman(k, B), where B is the base point of Curve25519.</t>
              </li>
              <li>
                <t>DiffieHellman(k, B): Implemented using the X25519 function in <xref section="5" sectionFormat="of" target="Curve25519"/>.
The output is then used raw, with no processing.</t>
              </li>
            </ul>
          </section>
        </section>
        <section anchor="key-schedule-functions">
          <name>Key Schedule Functions</name>
          <t>This section contains functions used for the AKE key schedule.</t>
          <section anchor="transcript-functions">
            <name>Transcript Functions</name>
            <t>The OPAQUE-3DH key derivation procedures make use of the functions below,
re-purposed from TLS 1.3 <xref target="RFC8446"/>.</t>
            <artwork><![CDATA[
Expand-Label(Secret, Label, Context, Length) =
    Expand(Secret, CustomLabel, Length)
]]></artwork>
            <t>Where CustomLabel is specified as:</t>
            <artwork><![CDATA[
struct {
  uint16 length = Length;
  opaque label<8..255> = "OPAQUE-" + Label;
  uint8 context<0..255> = Context;
} CustomLabel;

Derive-Secret(Secret, Label, Transcript-Hash) =
    Expand-Label(Secret, Label, Transcript-Hash, Nx)
]]></artwork>
            <t>Note that the <tt>Label</tt> parameter is not a NULL-terminated string.</t>
            <t>OPAQUE-3DH can optionally include application-specific, shared <tt>context</tt> information in the
transcript, such as configuration parameters or application-specific info, e.g.
"appXYZ-v1.2.3".</t>
            <t>The OPAQUE-3DH key schedule requires a preamble, which is computed as follows.</t>
            <artwork><![CDATA[
Preamble

Parameters:
- context, optional shared context information.

Input:
- client_identity, the optional encoded client identity, which is set
  to client_public_key if not specified.
- ke1, a KE1 message structure.
- server_identity, the optional encoded server identity, which is set
  to server_public_key if not specified.
- credential_response, the corresponding field on the KE2 structure.
- server_nonce, the corresponding field on the AuthResponse structure.
- server_public_keyshare, the corresponding field on the AuthResponse structure.

Output:
- preamble, the protocol transcript with identities and messages.

def Preamble(client_identity, ke1, server_identity, credential_response,
             server_nonce, server_public_keyshare):
  preamble = concat("OPAQUEv1-",
                     I2OSP(len(context), 2), context,
                     I2OSP(len(client_identity), 2), client_identity,
                     ke1,
                     I2OSP(len(server_identity), 2), server_identity,
                     credential_response,
                     server_nonce,
                     server_public_keyshare)
  return preamble
]]></artwork>
          </section>
          <section anchor="shared-secret-derivation">
            <name>Shared Secret Derivation</name>
            <t>The OPAQUE-3DH shared secret derived during the key exchange protocol is
computed using the following helper function.</t>
            <artwork><![CDATA[
DeriveKeys

Input:
- ikm, input key material.
- preamble, the protocol transcript with identities and messages.

Output:
- Km2, a MAC authentication key.
- Km3, a MAC authentication key.
- session_key, the shared session secret.

def DeriveKeys(ikm, preamble):
  prk = Extract("", ikm)
  handshake_secret = Derive-Secret(prk, "HandshakeSecret", Hash(preamble))
  session_key = Derive-Secret(prk, "SessionKey", Hash(preamble))
  Km2 = Derive-Secret(handshake_secret, "ServerMAC", "")
  Km3 = Derive-Secret(handshake_secret, "ClientMAC", "")
  return (Km2, Km3, session_key)
]]></artwork>
          </section>
        </section>
        <section anchor="ake-client">
          <name>3DH Client Functions</name>
          <t>The <tt>AuthClientStart</tt> function is used by the client to create a
<tt>KE1</tt> structure.</t>
          <artwork><![CDATA[
AuthClientStart

Parameters:
- Nn, the nonce length.

State:
- state, a ClientAkeState structure.

Input:
- credential_request, a CredentialRequest structure.

Output:
- ke1, a KE1 structure.

def AuthClientStart(credential_request):
  client_nonce = random(Nn)
  client_keyshare_seed = random(Nseed)
  (client_secret, client_public_keyshare) = DeriveDiffieHellmanKeyPair(client_keyshare_seed)
  Create AuthRequest auth_request with (client_nonce, client_public_keyshare)
  Create KE1 ke1 with (credential_request, auth_request)
  state.client_secret = client_secret
  state.ke1 = ke1
  return ke1
]]></artwork>
          <t>The <tt>AuthClientFinalize</tt> function is used by the client to create a <tt>KE3</tt>
message and output <tt>session_key</tt> using the server's <tt>KE2</tt> message and
recovered credential information.</t>
          <artwork><![CDATA[
AuthClientFinalize

State:
- state, a ClientAkeState structure.

Input:
- cleartext_credentials, a CleartextCredentials structure.
- client_private_key, the client's private key.
- ke2, a KE2 message structure.

Output:
- ke3, a KE3 structure.
- session_key, the shared session secret.

Exceptions:
- ServerAuthenticationError, the handshake fails.

def AuthClientFinalize(cleartext_credentials, client_private_key, ke2):

  dh1 = DiffieHellman(state.client_secret, ke2.auth_response.server_public_keyshare)
  dh2 = DiffieHellman(state.client_secret, cleartext_credentials.server_public_key)
  dh3 = DiffieHellman(client_private_key, ke2.auth_response.server_public_keyshare)
  ikm = concat(dh1, dh2, dh3)

  preamble = Preamble(cleartext_credentials.client_identity,
                      state.ke1,
                      cleartext_credentials.server_identity,
                      ke2.credential_response,
                      ke2.auth_response.server_nonce,
                      ke2.auth_response.server_public_keyshare)
  Km2, Km3, session_key = DeriveKeys(ikm, preamble)
  expected_server_mac = MAC(Km2, Hash(preamble))
  if !ct_equal(ke2.auth_response.server_mac, expected_server_mac),
    raise ServerAuthenticationError
  client_mac = MAC(Km3, Hash(concat(preamble, expected_server_mac)))
  Create KE3 ke3 with client_mac
  return (ke3, session_key)
]]></artwork>
        </section>
        <section anchor="ake-server">
          <name>3DH Server Functions</name>
          <t>The <tt>AuthServerRespond</tt> function is used by the server to process the client's
<tt>KE1</tt> message and public credential information to create a <tt>KE2</tt> message.</t>
          <artwork><![CDATA[
AuthServerRespond

Parameters:
- Nn, the nonce length.

State:
- state, a ServerAkeState structure.

Input:
- cleartext_credentials, a CleartextCredentials structure.
- server_private_key, the server's private key.
- client_public_key, the client's public key.
- ke1, a KE1 message structure.

Output:
- auth_response, an AuthResponse structure.

def AuthServerRespond(cleartext_credentials, server_private_key, client_public_key, ke1, credential_response):
  server_nonce = random(Nn)
  server_keyshare_seed = random(Nseed)
  (server_private_keyshare, server_public_keyshare) = DeriveDiffieHellmanKeyPair(server_keyshare_seed)
  preamble = Preamble(cleartext_credentials.client_identity,
                      ke1,
                      cleartext_credentials.server_identity,
                      credential_response,
                      server_nonce,
                      server_public_keyshare)

  dh1 = DiffieHellman(server_private_keyshare, ke1.auth_request.client_public_keyshare)
  dh2 = DiffieHellman(server_private_key, ke1.auth_request.client_public_keyshare)
  dh3 = DiffieHellman(server_private_keyshare, client_public_key)
  ikm = concat(dh1, dh2, dh3)

  Km2, Km3, session_key = DeriveKeys(ikm, preamble)
  server_mac = MAC(Km2, Hash(preamble))

  state.expected_client_mac = MAC(Km3, Hash(concat(preamble, server_mac)))
  state.session_key = session_key
  Create AuthResponse auth_response with (server_nonce, server_public_keyshare, server_mac)
  return auth_response
]]></artwork>
          <t>The <tt>AuthServerFinalize</tt> function is used by the server to process the client's
<tt>KE3</tt> message and output the final <tt>session_key</tt>.</t>
          <artwork><![CDATA[
AuthServerFinalize

State:
- state, a ServerAkeState structure.

Input:
- ke3, a KE3 structure.

Output:
- session_key, the shared session secret if and only if ke3 is valid.

Exceptions:
- ClientAuthenticationError, the handshake fails.

def AuthServerFinalize(ke3):
  if !ct_equal(ke3.client_mac, state.expected_client_mac):
    raise ClientAuthenticationError
  return state.session_key
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="configurations">
      <name>Configurations</name>
      <t>An OPAQUE-3DH configuration is a tuple (OPRF, KDF, MAC, Hash, KSF, Group, Context)
such that the following conditions are met:</t>
      <ul spacing="normal">
        <li>
          <t>The OPRF protocol uses the "base mode" variant of <xref target="OPRF"/> and implements
the interface in <xref target="dependencies"/>. Examples include ristretto255-SHA512 and
P256-SHA256.</t>
        </li>
        <li>
          <t>The KDF, MAC, and Hash functions implement the interfaces in <xref target="dependencies"/>.
Examples include HKDF <xref target="RFC5869"/> for the KDF, HMAC <xref target="RFC2104"/> for the MAC,
and SHA-256 and SHA-512 for the Hash functions. If an extensible output function
such as SHAKE128 <xref target="FIPS202"/> is used then the output length <tt>Nh</tt> MUST be chosen
to align with the target security level of the OPAQUE configuration. For example,
if the target security parameter for the configuration is 128 bits, then <tt>Nh</tt> SHOULD
be at least 32 bytes.</t>
        </li>
        <li>
          <t>The KSF is determined by the application and implements the interface in
<xref target="dependencies"/>. As noted, collision resistance is required. Examples for KSF
include Argon2id <xref target="ARGON2"/>, scrypt <xref target="SCRYPT"/>, and PBKDF2
<xref target="PBKDF2"/> with fixed parameter choices. See <xref target="app-considerations"/>
for more information about this choice of function.</t>
        </li>
        <li>
          <t>The Group mode identifies the group used in the OPAQUE-3DH AKE. This SHOULD
match that of the OPRF. For example, if the OPRF is ristretto255-SHA512,
then Group SHOULD be ristretto255.</t>
        </li>
      </ul>
      <t>Context is the shared parameter used to construct the preamble in <xref target="transcript-functions"/>.
This parameter SHOULD include any application-specific configuration information or
parameters that are needed to prevent cross-protocol or downgrade attacks.</t>
      <t>Absent an application-specific profile, the following configurations are RECOMMENDED:</t>
      <ul spacing="normal">
        <li>
          <t>ristretto255-SHA512, HKDF-SHA-512, HMAC-SHA-512, SHA-512,
  Argon2id(S = zeroes(16), p = 4, T = Nh, m = 2^21, t = 1, v = 0x13, K = nil, X = nil, y = 2), ristretto255</t>
        </li>
        <li>
          <t>P256-SHA256, HKDF-SHA-256, HMAC-SHA-256, SHA-256,
  Argon2id(S = zeroes(16), p = 4, T = Nh, m = 2^21, t = 1, v = 0x13, K = nil, X = nil, y = 2), P-256</t>
        </li>
        <li>
          <t>P256-SHA256, HKDF-SHA-256, HMAC-SHA-256, SHA-256, scrypt(N = 32768, r = 8, p = 1), P-256</t>
        </li>
      </ul>
      <t>The above recommended configurations target 128-bit security.</t>
      <t>Future configurations may specify different combinations of dependent algorithms,
with the following considerations:</t>
      <ol spacing="normal" type="1"><li>
          <t>The size of AKE public and private keys -- <tt>Npk</tt> and <tt>Nsk</tt>, respectively -- must adhere
to the output length limitations of the KDF Expand function. If HKDF is used, this means
Npk, Nsk &lt;= 255 * Nx, where Nx is the output size of the underlying hash function.
See <xref target="RFC5869"/> for details.</t>
        </li>
        <li>
          <t>The output size of the Hash function SHOULD be long enough to produce a key for
MAC of suitable length. For example, if MAC is HMAC-SHA256, then <tt>Nh</tt> could be
32 bytes.</t>
        </li>
      </ol>
    </section>
    <section anchor="app-considerations">
      <name>Application Considerations</name>
      <t>Beyond choosing an appropriate configuration, there are several parameters which
applications can use to control OPAQUE:</t>
      <ul spacing="normal">
        <li>
          <t>Credential identifier: As described in <xref target="offline-phase"/>, this is a unique
handle to the client's credential being stored. In applications where there are alternate
client identities that accompany an account, such as a username or email address, this
identifier can be set to those alternate values. For simplicity, applications may choose
to set <tt>credential_identifier</tt> to be equal to <tt>client_identity</tt>. Applications
MUST NOT use the same credential identifier for multiple clients.</t>
        </li>
        <li>
          <t>Context information: As described in <xref target="configurations"/>, applications may include
a shared context string that is authenticated as part of the handshake. This parameter
SHOULD include any configuration information or parameters that are needed to prevent
cross-protocol or downgrade attacks. This context information is not sent over the
wire in any key exchange messages. However, applications may choose to send it alongside
key exchange messages if needed for their use case.</t>
        </li>
        <li>
          <t>Client and server identities: As described in <xref target="client-material"/>, clients
and servers are identified with their public keys by default. However, applications
may choose alternate identities that are pinned to these public keys. For example,
servers may use a domain name instead of a public key as their identifier. Absent
alternate notions of identity, applications SHOULD set these identities to nil
and rely solely on public key information.</t>
        </li>
        <li>
          <t>Configuration and envelope updates: Applications may wish to update or change their
configuration or other parameters which affect the client's RegistrationRecord over
time. Some reasons for changing these are to use different cryptographic algorithms,
e.g., a different KSF with improved parameters, or to update key material that is
cryptographically bound to the RegistrationRecord, such as the server's public key
(server_public_key). Any such change will require users to re-register to create a
new RegistrationRecord. Supporting these types of updates can be helpful for applications
which anticipate such changes in their deployment setting.</t>
        </li>
        <li>
          <t>Password hardening parameters: Key stretching is done to help prevent password disclosure
in the event of server compromise; see <xref target="key-stretch"/>. There is no ideal or default
set of parameters, though relevant specifications for KSFs give some reasonable
defaults.</t>
        </li>
        <li>
          <t>Enumeration prevention: As described in <xref target="create-credential-response"/>, if servers
receive a credential request for a non-existent client, they SHOULD respond with a
"fake" response to prevent active client enumeration attacks. Servers that
implement this mitigation SHOULD use the same configuration information (such as
the oprf_seed) for all clients; see <xref target="preventing-client-enumeration"/>. In settings
where this attack is not a concern, servers may choose to not support this functionality.</t>
        </li>
      </ul>
    </section>
    <section anchor="implementation-considerations">
      <name>Implementation Considerations</name>
      <t>This section documents considerations for OPAQUE implementations. This includes
implementation safeguards and error handling considerations.</t>
      <section anchor="implementation-safeguards">
        <name>Implementation Safeguards</name>
        <t>Certain information created, exchanged, and processed in OPAQUE is sensitive.
Specifically, all private key material and intermediate values, along with the
outputs of the key exchange phase, are all secret. Implementations should not
retain these values in memory when no longer needed. Moreover, all operations,
particularly the cryptographic and group arithmetic operations, should be
constant-time and independent of the bits of any secrets. This includes any
conditional branching during the creation of the credential response, as needed
to mitigate client enumeration attacks.</t>
        <t>As specified in <xref target="offline-phase"/> and <xref target="online-phase"/>, OPAQUE only requires
the client password as input to the OPRF for registration and authentication.
However, if <tt>client_identity</tt> can be bound to the client's registration record
(in that the identity will not change during the lifetime of the record),
then an implementation SHOULD incorporate <tt>client_identity</tt> alongside the
password as input to the OPRF. This provides additional client-side entropy
which can supplement the entropy that should be introduced by the server during
an honest execution of the protocol. This also provides domain separation
between different clients that might otherwise share the same password.</t>
        <t>Finally, note that online guessing attacks (against any aPAKE) can be done from
both the client side and the server side. In particular, a malicious server can
attempt to simulate honest responses to learn the client's password.
While this constitutes an exhaustive online attack, hence as expensive as an
online guessing attack from the client side, it can be mitigated when the channel
between client and server is authenticated, e.g., using server-authenticated TLS.
In such cases, these online attacks are limited to clients and the authenticated server
itself. Moreover, such a channel provides privacy of user information, including identity
and envelope values.</t>
      </section>
      <section anchor="error-considerations">
        <name>Error Considerations</name>
        <t>Some functions included in this specification are fallible. For example, the
authenticated key exchange protocol may fail because the client's password was
incorrect or the authentication check failed, yielding an error. The explicit
errors generated throughout this specification, along with conditions that lead
to each error, are as follows:</t>
        <ul spacing="normal">
          <li>
            <t>EnvelopeRecoveryError: The envelope Recover function failed to produce any
authentication key material; <xref target="envelope-recovery"/>.</t>
          </li>
          <li>
            <t>ServerAuthenticationError: The client failed to complete the authenticated
key exchange protocol with the server; <xref target="ake-client"/>.</t>
          </li>
          <li>
            <t>ClientAuthenticationError: The server failed to complete the authenticated
key exchange protocol with the client; <xref target="ake-server"/>.</t>
          </li>
        </ul>
        <t>Beyond these explicit errors, OPAQUE implementations can produce implicit errors.
For example, if protocol messages sent between client and server do not match
their expected size, an implementation should produce an error. More generally,
if any protocol message received from the peer is invalid, perhaps because the
message contains an invalid public key (indicated by the AKE DeserializeElement
function failing) or an invalid OPRF element (indicated by the OPRF DeserializeElement),
then an implementation should produce an error.</t>
        <t>The errors in this document are meant as a guide for implementors. They are not an
exhaustive list of all the errors an implementation might emit. For example, an
implementation might run out of memory.</t>
        <!--
TODO(caw): As part of https://github.com/cfrg/draft-irtf-cfrg-opaque/issues/312, address
the failure case that occurs when Blind fails, noting that this is an exceptional case that
happens with negligible probability
-->

</section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>OPAQUE is defined as the composition of two functionalities: an OPRF and
an AKE protocol. It can be seen as a "compiler" for transforming any AKE
protocol (with KCI security and forward secrecy; see below)
into a secure aPAKE protocol. In OPAQUE, the client derives a private key
during password registration and retrieves this key each time
it needs to authenticate to the server. The OPRF security properties
ensure that only the correct password can unlock the private key
while at the same time avoiding potential offline guessing attacks.
This general composability property provides great flexibility and
enables a variety of OPAQUE instantiations, from optimized
performance to integration with existing authenticated key exchange
protocols such as TLS.</t>
      <section anchor="notable-design-differences">
        <name>Notable Design Differences</name>
        <t>The specification as written here differs from the original cryptographic design in <xref target="JKX18"/>
and the corresponding CFRG document <xref target="I-D.krawczyk-cfrg-opaque-03"/>, both of which were used
as input to the CFRG PAKE competition. This section describes these differences, including
their motivation and explanation as to why they preserve the provable security of OPAQUE based
on <xref target="JKX18"/>.</t>
        <t>The following list enumerates important functional differences that were made
as part of the protocol specification process to address application or
implementation considerations.</t>
        <ul spacing="normal">
          <li>
            <t>Clients construct envelope contents without revealing the password to the
server, as described in <xref target="offline-phase"/>, whereas the servers construct
envelopes in <xref target="JKX18"/>. This change adds to the security of the protocol.
<xref target="JKX18"/> considered the case where the envelope was constructed by the
server for reasons of compatibility with previous UC modeling. <xref target="HJKW23"/>
analyzes the registration phase as specified in this document. This
change was made to support registration flows where the client chooses the
password and wishes to keep it secret from the server, and it is compatible
with the variant in <xref target="JKX18"/> that was originally analyzed.</t>
          </li>
          <li>
            <t>Envelopes do not contain encrypted credentials. Instead, envelopes contain
information used to derive client private key material for the AKE.
This change improves the assumption behind the protocol by getting rid of
equivocality and random key robustness for the encryption function.
The random-key robustness property defined in <xref target="deps-symmetric"/> is only
needed for the MAC function. This change was made for two reasons. First, it
reduces the number of bytes stored in envelopes, which is a helpful
improvement for large applications of OPAQUE with many registered users.
Second, it removes the need for client applications to generate private
keys during registration. Instead, this responsibility is handled by OPAQUE,
thereby simplifying the client interface to the protocol.</t>
          </li>
          <li>
            <t>Envelopes are masked with a per-user masking key as a way of preventing
client enumeration attacks. See <xref target="preventing-client-enumeration"/> for more
details. This extension is not needed for the security of OPAQUE as an aPAKE
but only used to provide a defense against enumeration attacks. In the
analysis, the masking key can be simulated as a (pseudo) random key. This
change was made to support real-world use cases where client or user
enumeration is a security (or privacy) risk.</t>
          </li>
          <li>
            <t>Per-user OPRF keys are derived from a client identity and cross-user PRF seed
as a mitigation against client enumeration attacks. See
<xref target="preventing-client-enumeration"/> for more details. The analysis of OPAQUE
assumes OPRF keys of different users are independently random or
pseudorandom. Deriving these keys via a single PRF (i.e., with a single
cross-user key) applied to users' identities satisfies this assumption.
This change was made to support real-world use cases where client or user
enumeration is a security (or privacy) risk.</t>
          </li>
          <li>
            <t>The protocol outputs an export key for the client in addition to a shared
session key that can be used for application-specific purposes. This key
is a pseudorandom value derived from the client password (among other values) and
has no influence on the security analysis (it can be simulated with a
random output). This change was made to support more application use cases
for OPAQUE, such as the use of OPAQUE for end-to-end encrypted backups;
see <xref target="WhatsAppE2E"/>.</t>
          </li>
          <li>
            <t>The protocol admits optional application-layer client and server identities.
In the absence of these identities, the client and server are authenticated
against their public keys. Binding authentication to identities is part
of the AKE part of OPAQUE. The type of identities and their semantics
are application dependent and independent of the protocol analysis. This
change was made to simplify client and server interfaces to the protocol
by removing the need to specify additional identities alongside their
corresponding public authentication keys when not needed.</t>
          </li>
          <li>
            <t>The protocol admits application-specific context information configured
out-of-band in the AKE transcript. This allows domain separation between
different application uses of OPAQUE. This is a mechanism for the AKE
component and is best practice for domain separation between different
applications of the protocol. This change was made to allow different
applications to use OPAQUE without the risk of cross-protocol attacks.</t>
          </li>
          <li>
            <t>Servers use a separate identifier for computing OPRF evaluations and
indexing into the registration record storage, called the credential_identifier.
This allows clients to change their application-layer identity
(client_identity) without inducing server-side changes, e.g., by changing
an email address associated with a given account. This mechanism is part
of the derivation of OPRF keys via a single PRF. As long as the derivation
of different OPRF keys from a single PRF has different PRF inputs, the
protocol is secure. The choice of such inputs is up to the application.</t>
          </li>
          <li>
            <t><xref target="JKX18"/> comments on a defense against offline
dictionary attacks upon server compromise or honest-but-curious servers.
The authors suggest implementing the OPRF phase as a threshold OPRF <xref target="TOPPSS"/>,
effectively forcing an attacker to act online or to control at least t key
shares (among the total n), where t is the threshold number of shares necessary
to recombine the secret OPRF key, and only then be able to run an offline dictionary
attack. This implementation only affects the server and changes nothing for the client.
Furthermore, if the threshold OPRF servers holding these keys are separate from
the authentication server, then recovering all n shares would still not suffice
to run an offline dictionnary attack without access to the client record database.
However, this mechanism is out of scope for this document.</t>
          </li>
        </ul>
        <t>The following list enumerates notable differences and refinements from the original
cryptographic design in <xref target="JKX18"/> and the corresponding CFRG document
<xref target="I-D.krawczyk-cfrg-opaque-03"/> that were made to make this specification
suitable for interoperable implementations.</t>
        <ul spacing="normal">
          <li>
            <t><xref target="JKX18"/> used a generic prime-order group for the DH-OPRF and HMQV operations,
and includes necessary prime-order subgroup checks when receiving attacker-controlled
values over the wire. This specification instantiates the prime-order group used for
3DH using prime-order groups based on elliptic curves, as described in
<xref section="2.1" sectionFormat="comma" target="I-D.irtf-cfrg-voprf"/>. This specification also delegates OPRF group
choice and operations to <xref target="I-D.irtf-cfrg-voprf"/>. As such, the prime-order group as used
in the OPRF and 3DH as specified in this document both adhere to the requirements as
<xref target="JKX18"/>.</t>
          </li>
          <li>
            <t><xref target="JKX18"/> specified DH-OPRF (see Appendix B) to instantiate
the OPRF functionality in the protocol. A critical part of DH-OPRF is the
hash-to-group operation, which was not instantiated in the original analysis.
However, the requirements for this operation were included. This specification
instantiates the OPRF functionality based on the <xref target="I-D.irtf-cfrg-voprf"/>, which
is identical to the DH-OPRF functionality in <xref target="JKX18"/> and, concretely, uses
the hash-to-curve functions in <xref target="I-D.irtf-cfrg-hash-to-curve"/>. All hash-to-curve
methods in <xref target="I-D.irtf-cfrg-hash-to-curve"/> are compliant with the requirement
in <xref target="JKX18"/>, namely, that the output be a member of the prime-order group.</t>
          </li>
          <li>
            <t><xref target="JKX18"/> and <xref target="I-D.krawczyk-cfrg-opaque-03"/> both used HMQV as the AKE
for the protocol. However, this document fully specifies 3DH instead of HMQV
(though a sketch for how to instantiate OPAQUE using HMQV is included in <xref target="hmqv-sketch"/>).
Since 3DH satisfies the essential requirements for the AKE as described in <xref target="JKX18"/>
and <xref target="I-D.krawczyk-cfrg-opaque-03"/>, as recalled in <xref target="security-analysis"/>, this change
preserves the overall security of the protocol. 3DH was chosen for its
simplicity and ease of implementation.</t>
          </li>
          <li>
            <t>The DH-OPRF and HMQV instantiation of OPAQUE in <xref target="JKX18"/>, Figure 12 uses
a different transcript than that which is described in this specification. In particular,
the key exchange transcript specified in <xref target="protocol-3dh"/> is a superset of the transcript
as defined in <xref target="JKX18"/>. This was done to align with best practices, such as is
done for key exchange protocols like TLS 1.3 <xref target="RFC8446"/>.</t>
          </li>
          <li>
            <t>Neither <xref target="JKX18"/> nor <xref target="I-D.krawczyk-cfrg-opaque-03"/> included wire format details for the
protocol, which is essential for interoperability. This specification fills this
gap by including such wire format details and corresponding test vectors; see <xref target="test-vectors"/>.</t>
          </li>
        </ul>
      </section>
      <section anchor="security-analysis">
        <name>Security Analysis</name>
        <t>Jarecki et al. <xref target="JKX18"/> proved the security of OPAQUE (modulo the
design differences outlined in <xref target="notable-design-differences"/>)
in a strong aPAKE model that ensures security against pre-computation attacks
and is formulated in the Universal Composability (UC) framework <xref target="Canetti01"/>
under the random oracle model. This assumes security of the OPRF
function and the underlying key exchange protocol.</t>
        <t>OPAQUE's design builds on a line of work initiated in the seminal
paper of Ford and Kaliski <xref target="FK00"/> and is based on the HPAKE protocol
of Xavier Boyen <xref target="Boyen09"/> and the (1,1)-PPSS protocol from Jarecki
et al. <xref target="JKKX16"/>. None of these papers considered security against
pre-computation attacks or presented a proof of aPAKE security
(not even in a weak model).</t>
        <t>The KCI property required from AKE protocols for use with OPAQUE
states that knowledge of a party's private key does not allow an attacker
to impersonate others to that party. This is an important security
property achieved by most public-key based AKE protocols, including
protocols that use signatures or public key encryption for
authentication. It is also a property of many implicitly
authenticated protocols, e.g., HMQV, but not all of them. We also note that
key exchange protocols based on shared keys do not satisfy the KCI
requirement, hence they are not considered in the OPAQUE setting.
We note that KCI is needed to ensure a crucial property of OPAQUE: even upon
compromise of the server, the attacker cannot impersonate the client to the
server without first running an exhaustive dictionary attack.
Another essential requirement from AKE protocols for use in OPAQUE is to
provide forward secrecy (against active attackers).</t>
        <t>In <xref target="JKX18"/>, security is proven for one instance (i.e., one
key) of the OPAQUE protocol, and without batching. There is currently no
security analysis available for the OPAQUE protocol described in this
document in a setting with multiple server keys or batching.</t>
      </section>
      <section anchor="related-protocols">
        <name>Related Protocols</name>
        <t>Despite the existence of multiple designs for (PKI-free) aPAKE protocols,
none of these protocols are secure against pre-computation attacks.
This includes protocols that have recent analyses in the UC model such
as AuCPace <xref target="AuCPace"/> and SPAKE2+ <xref target="SPAKE2plus"/>. In particular, none
of these protocols can use the standard technique against pre-computation
that combines secret random values ("salt") into the one-way password mappings.
Either these protocols do not use a salt at all or, if they do, they
transmit the salt from server to client in the clear, hence losing the
secrecy of the salt and its defense against pre-computation.</t>
        <t>We note that as shown in <xref target="JKX18"/>, these protocols, and any aPAKE
in the model from <xref target="GMR06"/>, can be converted into an aPAKE secure against
pre-computation attacks at the expense of an additional OPRF execution.</t>
        <t>Beyond AuCPace and SPAKE2+, the most widely deployed PKI-free aPAKE is SRP <xref target="RFC2945"/>,
which is vulnerable to pre-computation attacks, lacks proof of security, and is
less efficient than OPAQUE. Moreover, SRP requires a ring as it mixes addition and
multiplication operations, and thus does not work over standard elliptic curves.
OPAQUE is therefore a suitable replacement for applications that use SRP.</t>
      </section>
      <section anchor="identities">
        <name>Identities</name>
        <t>AKE protocols generate keys that need to be uniquely and verifiably bound to a pair
of identities. In the case of OPAQUE, those identities correspond to client_identity and server_identity.
Thus, it is essential for the parties to agree on such identities, including an
agreed bit representation of these identities as needed.</t>
        <t>Note that the method of transmission of client_identity from client to server is outside
the scope of this protocol, and it is up to an application to choose how this identity
should be delivered (for instance, alongside the first OPAQUE message, or perhaps agreed upon before
the OPAQUE protocol begins).</t>
        <t>Applications may have different policies about how and when identities are
determined. A natural approach is to tie client_identity to the identity the server uses
to fetch the envelope (hence determined during password registration) and to tie server_identity
to the server identity used by the client to initiate an offline password
registration or online authenticated key exchange session. server_identity and client_identity can also
be part of the envelope or be tied to the parties' public keys. In principle, identities
may change across different sessions as long as there is a policy that
can establish if the identity is acceptable or not to the peer. However, we note
that the public keys of both the server and the client must always be those defined
at the time of password registration.</t>
        <t>The client identity (client_identity) and server identity (server_identity) are
optional parameters that are left to the application to designate as aliases for
the client and server. If the application layer does not supply values for these
parameters, then they will be omitted from the creation of the envelope
during the registration stage. Furthermore, they will be substituted with
client_identity = client_public_key and server_identity = server_public_key during
the authenticated key exchange stage.</t>
        <t>The advantage of supplying a custom client_identity and server_identity (instead of simply relying
on a fallback to client_public_key and server_public_key) is that the client can then ensure that any
mappings between client_identity and client_public_key (and server_identity and server_public_key)
are protected by the authentication from the envelope. Then, the client can verify that the
client_identity and server_identity contained in its envelope match the client_identity
and server_identity supplied by the server.</t>
        <t>However, if this extra layer of verification is unnecessary for the application, then simply
leaving client_identity and server_identity unspecified (and using client_public_key and
server_public_key instead) is acceptable.</t>
      </section>
      <section anchor="export-key-usage">
        <name>Export Key Usage</name>
        <t>The export key can be used (separately from the OPAQUE protocol) to provide
confidentiality and integrity to other data which only the client should be
able to process. For instance, if the client wishes to store secrets with a
third party, then this export key can be used by the client to encrypt these
secrets so that they remain hidden from a passive adversary that does not have
access to the server's secret keys or the client's password.</t>
      </section>
      <section anchor="static-diffie-hellman-oracles">
        <name>Static Diffie-Hellman Oracles</name>
        <t>While one can expect the practical security of the OPRF function (namely,
the hardness of computing the function without knowing the key) to be in the
order of computing discrete logarithms or solving Diffie-Hellman, Brown and
Gallant <xref target="BG04"/> and Cheon <xref target="Cheon06"/> show an attack that slightly improves
on generic attacks. For typical curves, the attack requires an infeasible
number of calls to the OPRF or results in insignificant security loss;
see <xref target="OPRF"/> for more information. For OPAQUE, these attacks
are particularly impractical as they translate into an infeasible number of
failed authentication attempts directed at individual users.</t>
      </section>
      <section anchor="rkr-mac">
        <name>Random-Key Robust MACs</name>
        <t>The random-key robustness property for a MAC states
that, given two random keys k1 and k2, it is infeasible to find a message m
such that MAC(k1, m) = MAC(k2, m). Note that in general, not every MAC function
is key-robust. In particular, GMAC (which underlies GCM) does not satisfy
key-robustness, whereas HMAC with a collision-resistant hash function does
satisfy key-robustness.</t>
        <t>An application can choose to use a non-key-robust MAC within the AKE portion of
the protocol described in <xref target="protocol-3dh"/>, but it MUST use a key-robust MAC
for the creation of the <tt>auth_tag</tt> parameter in <xref target="envelope-creation"/>.</t>
      </section>
      <section anchor="validation">
        <name>Input Validation</name>
        <t>Both client and server MUST validate the other party's public key(s) used
for the execution of OPAQUE. This includes the keys shared during the
offline registration phase, as well as any keys shared during the online
key agreement phase. The validation procedure varies depending on the
type of key. For example, for OPAQUE instantiations
using 3DH with P-256, P-384, or P-521 as the underlying group, validation
is as specified in Section 5.6.2.3.4 of <xref target="keyagreement"/>. This includes
checking that the coordinates are in the correct range, that the point
is on the curve, and that the point is not the point at infinity.
Additionally, validation MUST ensure the Diffie-Hellman shared secret is
not the point at infinity.</t>
      </section>
      <section anchor="key-stretch">
        <name>OPRF Key Stretching</name>
        <t>Applying a key stretching function to the output of the OPRF greatly increases the cost of an offline
attack upon the compromise of the credential file at the server. Applications
SHOULD select parameters for the KSF that balance cost and complexity across
different client implementations and deployments. Note that in OPAQUE, the
key stretching function is executed by the client, as opposed to the server in
traditional password hashing scenarios. This means that applications must consider
a tradeoff between the performance of the protocol on clients (specifically low-end
devices) and protection against offline attacks after a server compromise.</t>
      </section>
      <section anchor="preventing-client-enumeration">
        <name>Client Enumeration</name>
        <t>Client enumeration refers to attacks where the attacker tries to learn whether
a given user identity is registered with a server or whether a re-registration
or change of password was performed for that user. OPAQUE counters these
attacks by requiring servers to act with unregistered client identities in a
way that is indistinguishable from their behavior with existing registered clients.
Servers do this by simulating a fake CredentialResponse as specified in
<xref target="create-credential-response"/> for unregistered users, and also encrypting
CredentialResponse using a masking key. In this way, real and fake CredentialResponse
messages are indistinguishable from one another.
Implementations must also take care to avoid side-channel leakage (e.g., timing
attacks) from helping differentiate these operations from a regular server
response. Note that this may introduce possible abuse vectors since the
server's cost of generating a CredentialResponse is less than that of the
client's cost of generating a CredentialRequest. Server implementations
may choose to forego the construction of a simulated credential response
message for an unregistered client if these client enumeration attacks can
be mitigated through other application-specific means or are otherwise not
applicable for their threat model.</t>
        <t>OPAQUE does not prevent against this type of attack during the registration flow.
Servers necessarily react differently during the registration flow between
registered and unregistered clients. This allows an attacker to use the server's
response during registration as an oracle for whether a given client identity is
registered. Applications should mitigate against this type of attack by rate
limiting or otherwise restricting the registration flow.</t>
      </section>
      <section anchor="protecting-the-registration-masking-key">
        <name>Protecting the Registration Masking Key</name>
        <t>The user enumeration prevention method described in this document uses a
symmetric encryption key, masking_key, generated and sent to the server
by the client during registration. This requires a confidential channel
between client and server during registration, e.g., using TLS <xref target="RFC8446"/>.
If the channel is only authenticated (this is a requirement for correct
identification of the parties), a confidential channel can be established
using public-key encryption, e.g., with HPKE <xref target="RFC9180"/>. However, the details
of this mechanism are out of scope of this document.</t>
      </section>
      <section anchor="password-salt-and-storage-implications">
        <name>Password Salt and Storage Implications</name>
        <t>In OPAQUE, the OPRF key acts as the secret salt value that ensures the infeasibility
of pre-computation attacks. No extra salt value is needed. Also, clients never
disclose their passwords to the server, even during registration. Note that a corrupted
server can run an exhaustive offline dictionary attack to validate guesses for the client's
password; this is inevitable in any (single-server) aPAKE protocol. It can be avoided in
the case of OPAQUE by resorting to a multi-server threshold OPRF implementation,
e.g., <xref target="TOPPSS"/>. Furthermore, if the server does not
sample the PRF seed with sufficiently high entropy, or if it is not kept hidden from an
adversary, then any derivatives from the client's password may also be susceptible to an
offline dictionary attack to recover the original password.</t>
        <t>Some applications may require learning the client's password for enforcing password
rules. Doing so invalidates this important security property of OPAQUE and is
NOT RECOMMENDED. Applications should move such checks to the client. Note that
limited checks at the server are possible to implement, e.g., detecting repeated
passwords upon re-registrations or password change.</t>
        <t>In general, passwords should be selected with sufficient entropy to avoid being susceptible
to recovery through dictionary attacks, both online and offline.</t>
      </section>
      <section anchor="ake-private-key-storage">
        <name>AKE Private Key Storage</name>
        <t>Server implementations of OPAQUE do not need access to the raw AKE private key. They only require
the ability to compute shared secrets as specified in <xref target="key-schedule-functions"/>. Thus, applications
may store the server AKE private key in a Hardware Security Module (HSM) or
similar. Upon compromise of the OPRF seed and client envelopes, this would prevent an
attacker from using this data to mount a server spoofing attack. Supporting implementations
need to consider allowing separate AKE and OPRF algorithms in cases where the HSM is
incompatible with the OPRF algorithm.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document makes no IANA requests.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="OPRF">
          <front>
            <title>Oblivious Pseudorandom Functions (OPRFs) using Prime-Order Groups</title>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Armando Faz-Hernandez" initials="A." surname="Faz-Hernandez">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <date day="21" month="February" year="2023"/>
            <abstract>
              <t>   An Oblivious Pseudorandom Function (OPRF) is a two-party protocol
   between client and server for computing the output of a Pseudorandom
   Function (PRF).  The server provides the PRF private key, and the
   client provides the PRF input.  At the end of the protocol, the
   client learns the PRF output without learning anything about the PRF
   private key, and the server learns neither the PRF input nor output.
   An OPRF can also satisfy a notion of 'verifiability', called a VOPRF.
   A VOPRF ensures clients can verify that the server used a specific
   private key during the execution of the protocol.  A VOPRF can also
   be partially-oblivious, called a POPRF.  A POPRF allows clients and
   servers to provide public input to the PRF computation.  This
   document specifies an OPRF, VOPRF, and POPRF instantiated within
   standard prime-order groups, including elliptic curves.  This
   document is a product of the Crypto Forum Research Group (CFRG) in
   the IRTF.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-voprf-21"/>
        </reference>
        <reference anchor="RFC2104">
          <front>
            <title>HMAC: Keyed-Hashing for Message Authentication</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="M. Bellare" initials="M." surname="Bellare"/>
            <author fullname="R. Canetti" initials="R." surname="Canetti"/>
            <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>
          <seriesInfo name="RFC" value="2104"/>
          <seriesInfo name="DOI" value="10.17487/RFC2104"/>
        </reference>
        <reference anchor="I-D.irtf-cfrg-voprf">
          <front>
            <title>Oblivious Pseudorandom Functions (OPRFs) using Prime-Order Groups</title>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Armando Faz-Hernandez" initials="A." surname="Faz-Hernandez">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <date day="21" month="February" year="2023"/>
            <abstract>
              <t>   An Oblivious Pseudorandom Function (OPRF) is a two-party protocol
   between client and server for computing the output of a Pseudorandom
   Function (PRF).  The server provides the PRF private key, and the
   client provides the PRF input.  At the end of the protocol, the
   client learns the PRF output without learning anything about the PRF
   private key, and the server learns neither the PRF input nor output.
   An OPRF can also satisfy a notion of 'verifiability', called a VOPRF.
   A VOPRF ensures clients can verify that the server used a specific
   private key during the execution of the protocol.  A VOPRF can also
   be partially-oblivious, called a POPRF.  A POPRF allows clients and
   servers to provide public input to the PRF computation.  This
   document specifies an OPRF, VOPRF, and POPRF instantiated within
   standard prime-order groups, including elliptic curves.  This
   document is a product of the Crypto Forum Research Group (CFRG) in
   the IRTF.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-voprf-21"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.krawczyk-cfrg-opaque-03" target="https://datatracker.ietf.org/doc/html/draft-krawczyk-cfrg-opaque-03">
          <front>
            <title>The OPAQUE Asymmetric PAKE Protocol</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="PAKE-Selection" target="https://github.com/cfrg/pake-selection">
          <front>
            <title>CFRG PAKE selection process repository</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Boyen09">
          <front>
            <title>HPAKE: Password Authentication Secure against Cross-Site User Impersonation</title>
            <author initials="X." surname="Boyen" fullname="Xavier Boyen">
              <organization/>
            </author>
            <date year="2009"/>
          </front>
          <seriesInfo name="Cryptology and Network Security (CANS)" value=""/>
        </reference>
        <reference anchor="BG04">
          <front>
            <title>The static Diffie-Hellman problem</title>
            <author initials="D." surname="Brown" fullname="Daniel R. L. Brown">
              <organization/>
            </author>
            <author initials="R." surname="Galant" fullname="Robert P. Galant">
              <organization/>
            </author>
            <date year="2004"/>
          </front>
          <seriesInfo name="http://eprint.iacr.org/2004/306" value=""/>
        </reference>
        <reference anchor="Canetti01">
          <front>
            <title>Universally composable security: A new paradigm for cryptographic protocols</title>
            <author initials="R." surname="Canetti" fullname="Ran Canetti">
              <organization/>
            </author>
            <date year="2001"/>
          </front>
          <seriesInfo name="IEEE Symposium on Foundations of Computer Science (FOCS)" value=""/>
        </reference>
        <reference anchor="Cheon06">
          <front>
            <title>Security analysis of the strong Diffie-Hellman problem</title>
            <author initials="J. H." surname="Cheon" fullname="Jung Hee Cheon">
              <organization/>
            </author>
            <date year="2006"/>
          </front>
          <seriesInfo name="Eurocrypt" value=""/>
        </reference>
        <reference anchor="FK00">
          <front>
            <title>Server-assisted generation of a strong secret from a password</title>
            <author initials="W." surname="Ford" fullname="Warwick Ford">
              <organization/>
            </author>
            <author initials="B. S." surname="Kaliski, Jr" fullname="Burton S. Kaliski, Jr">
              <organization/>
            </author>
            <date year="2000"/>
          </front>
          <seriesInfo name="WETICE" value=""/>
        </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="GMR06">
          <front>
            <title>A method for making password-based key exchange resilient to server compromise</title>
            <author initials="C." surname="Gentry" fullname="Craig Gentry">
              <organization/>
            </author>
            <author initials="P." surname="MacKenzie" fullname="Phil MacKenzie">
              <organization/>
            </author>
            <author initials="" surname="Z, Ramzan" fullname="Zulfikar Ramzan">
              <organization/>
            </author>
            <date year="2006"/>
          </front>
          <seriesInfo name="CRYPTO" value=""/>
        </reference>
        <reference anchor="HJKW23">
          <front>
            <title>Password-Authenticated TLS via OPAQUE and Post-Handshake Authentication</title>
            <author initials="J." surname="Hesse" fullname="Julia Hesse">
              <organization/>
            </author>
            <author initials="S." surname="Jarecki" fullname="Stanislaw Jarecki">
              <organization/>
            </author>
            <author initials="H." surname="Krawczyk" fullname="Hugo Krawczyk">
              <organization/>
            </author>
            <author initials="C." surname="Wood" fullname="Christopher Wood">
              <organization/>
            </author>
            <date year="2023"/>
          </front>
          <seriesInfo name="EUROCRYPT" value=""/>
        </reference>
        <reference anchor="AuCPace">
          <front>
            <title>AuCPace: Efficient verifier-based PAKE protocol tailored for the IIoT</title>
            <author initials="B." surname="Haase" fullname="Bjorn Haase">
              <organization/>
            </author>
            <author initials="B." surname="Labrique" fullname="Benoit Labrique">
              <organization/>
            </author>
            <date year="2018"/>
          </front>
          <seriesInfo name="http://eprint.iacr.org/2018/286" value=""/>
        </reference>
        <reference anchor="keyagreement">
          <front>
            <title>Recommendation for pair-wise key-establishment schemes using discrete logarithm cryptography</title>
            <author fullname="Elaine Barker" initials="E." surname="Barker">
              <organization/>
            </author>
            <author fullname="Lily Chen" initials="L." surname="Chen">
              <organization/>
            </author>
            <author fullname="Allen Roginsky" initials="A." surname="Roginsky">
              <organization/>
            </author>
            <author fullname="Apostol Vassilev" initials="A." surname="Vassilev">
              <organization/>
            </author>
            <author fullname="Richard Davis" initials="R." surname="Davis">
              <organization/>
            </author>
            <date month="April" year="2018"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.sp.800-56ar3"/>
          <refcontent>National Institute of Standards and Technology</refcontent>
        </reference>
        <reference anchor="JKX18">
          <front>
            <title>OPAQUE: An Asymmetric PAKE Protocol Secure Against Pre-Computation Attacks</title>
            <author initials="S." surname="Jarecki" fullname="Stanislaw Jarecki">
              <organization/>
            </author>
            <author initials="H." surname="Krawczyk" fullname="Hugo Krawczyk">
              <organization/>
            </author>
            <author initials="J." surname="Xu" fullname="Jiayu Xu">
              <organization/>
            </author>
            <date year="2018"/>
          </front>
          <seriesInfo name="Eurocrypt" value=""/>
        </reference>
        <reference anchor="JKKX16">
          <front>
            <title>Highly-efficient and composable password-protected secret sharing (or: how to protect your bitcoin wallet online)</title>
            <author initials="S." surname="Jarecki" fullname="Stanislaw Jarecki">
              <organization/>
            </author>
            <author initials="A." surname="Kiayias" fullname="Aggelos Kiayias">
              <organization/>
            </author>
            <author initials="H." surname="Krawczyk" fullname="Hugo Krawczyk">
              <organization/>
            </author>
            <author initials="J." surname="Xu" fullname="Jiayu Xu">
              <organization/>
            </author>
            <date year="2016"/>
          </front>
          <seriesInfo name="IEEE European Symposium on Security and Privacy" value=""/>
        </reference>
        <reference anchor="LGR20" target="https://eprint.iacr.org/2020/1491.pdf">
          <front>
            <title>Partitioning Oracle Attacks</title>
            <author initials="J." surname="Len" fullname="Julia Len">
              <organization/>
            </author>
            <author initials="P." surname="Grubbs" fullname="Paul Grubbs">
              <organization/>
            </author>
            <author initials="T." surname="Ristenpart" fullname="Thomas Ristenpart">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="HMQV">
          <front>
            <title>HMQV: A high-performance secure Diffie-Hellman protocol</title>
            <author initials="H." surname="Krawczyk" fullname="Hugo Krawczyk">
              <organization/>
            </author>
            <date year="2005"/>
          </front>
          <seriesInfo name="CRYPTO" value=""/>
        </reference>
        <reference anchor="SIGMA-I">
          <front>
            <title>SIGMA: The ‘SIGn-and-MAc’ Approach to Authenticated Diffie-Hellman and its Use in the IKE Protocols</title>
            <author initials="H." surname="Krawczyk" fullname="Hugo Krawczyk">
              <organization/>
            </author>
            <date year="2003"/>
          </front>
          <seriesInfo name="https://www.iacr.org/cryptodb/archive/2003/CRYPTO/1495/1495.pdf" value=""/>
        </reference>
        <reference anchor="SPAKE2plus">
          <front>
            <title>Security Analysis of SPAKE2+</title>
            <author initials="V." surname="Shoup" fullname="Victor Shoup">
              <organization/>
            </author>
            <date year="2020"/>
          </front>
          <seriesInfo name="http://eprint.iacr.org/2020/313" value=""/>
        </reference>
        <reference anchor="TripleDH">
          <front>
            <title>Simplifying OTR deniability</title>
            <author>
              <organization/>
            </author>
            <date year="2016"/>
          </front>
          <seriesInfo name="https://signal.org/blog/simplifying-otr-deniability" value=""/>
        </reference>
        <reference anchor="WhatsAppE2E" target="https://www.whatsapp.com/security/WhatsApp_Security_Encrypted_Backups_Whitepaper.pdf">
          <front>
            <title>Security of End-to-End Encrypted Backups</title>
            <author initials="" surname="WhatsApp" fullname="WhatsApp">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="TOPPSS">
          <front>
            <title>TOPPSS: Cost-minimal Password-Protected Secret Sharing based on Threshold OPRF</title>
            <author initials="S." surname="Jarecki" fullname="Stanislaw Jarecki">
              <organization/>
            </author>
            <author initials="A." surname="Kiayias" fullname="Aggelos Kiayias">
              <organization/>
            </author>
            <author initials="H." surname="Krawczyk" fullname="Hugo Krawczyk">
              <organization/>
            </author>
            <author initials="J." surname="Xu" fullname="Jiayu Xu">
              <organization/>
            </author>
            <date year="2017"/>
          </front>
          <seriesInfo name="Applied Cryptology and Network Security – ACNS 2017" value=""/>
        </reference>
        <reference anchor="RFC5869">
          <front>
            <title>HMAC-based Extract-and-Expand Key Derivation Function (HKDF)</title>
            <author fullname="H. Krawczyk" initials="H." surname="Krawczyk"/>
            <author fullname="P. Eronen" initials="P." surname="Eronen"/>
            <date month="May" year="2010"/>
            <abstract>
              <t>This document specifies a simple Hashed Message Authentication Code (HMAC)-based key derivation function (HKDF), which can be used as a building block in various protocols and applications. The key derivation function (KDF) is intended to support a wide range of applications and requirements, and is conservative in its use of cryptographic hash functions. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5869"/>
          <seriesInfo name="DOI" value="10.17487/RFC5869"/>
        </reference>
        <reference anchor="RFC8125">
          <front>
            <title>Requirements for Password-Authenticated Key Agreement (PAKE) Schemes</title>
            <author fullname="J. Schmidt" initials="J." surname="Schmidt"/>
            <date month="April" year="2017"/>
            <abstract>
              <t>Password-Authenticated Key Agreement (PAKE) schemes are interactive protocols that allow the participants to authenticate each other and derive shared cryptographic keys using a (weaker) shared password. This document reviews different types of PAKE schemes. Furthermore, it presents requirements and gives recommendations to designers of new schemes. It is a product of the Crypto Forum Research Group (CFRG).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8125"/>
          <seriesInfo name="DOI" value="10.17487/RFC8125"/>
        </reference>
        <reference anchor="RFC8017">
          <front>
            <title>PKCS #1: RSA Cryptography Specifications Version 2.2</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <author fullname="J. Jonsson" initials="J." surname="Jonsson"/>
            <author fullname="A. Rusch" initials="A." surname="Rusch"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering cryptographic primitives, encryption schemes, signature schemes with appendix, and ASN.1 syntax for representing keys and for identifying the schemes.</t>
              <t>This document represents a republication of PKCS #1 v2.2 from RSA Laboratories' Public-Key Cryptography Standards (PKCS) series. By publishing this RFC, change control is transferred to the IETF.</t>
              <t>This document also obsoletes RFC 3447.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8017"/>
          <seriesInfo name="DOI" value="10.17487/RFC8017"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RISTRETTO">
          <front>
            <title>The ristretto255 and decaf448 Groups</title>
            <author fullname="Henry de Valence" initials="H." surname="de Valence">
         </author>
            <author fullname="Jack Grigg" initials="J." surname="Grigg">
         </author>
            <author fullname="Mike Hamburg" initials="M." surname="Hamburg">
         </author>
            <author fullname="Isis Lovecruft" initials="I." surname="Lovecruft">
         </author>
            <author fullname="George Tankersley" initials="G." surname="Tankersley">
         </author>
            <author fullname="Filippo Valsorda" initials="F." surname="Valsorda">
         </author>
            <date day="5" month="September" year="2023"/>
            <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.

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

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-ristretto255-decaf448-08"/>
        </reference>
        <reference anchor="NISTCurves">
          <front>
            <title>Digital Signature Standard (DSS)</title>
            <author>
              <organization/>
            </author>
            <date month="July" year="2013"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.fips.186-4"/>
          <refcontent>National Institute of Standards and Technology</refcontent>
        </reference>
        <reference anchor="Curve25519">
          <front>
            <title>Elliptic Curves for Security</title>
            <author fullname="A. Langley" initials="A." surname="Langley"/>
            <author fullname="M. Hamburg" initials="M." surname="Hamburg"/>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <date month="January" year="2016"/>
            <abstract>
              <t>This memo specifies two elliptic curves over prime fields that offer a high level of practical security in cryptographic applications, including Transport Layer Security (TLS). These curves are intended to operate at the ~128-bit and ~224-bit security level, respectively, and are generated deterministically based on a list of required properties.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7748"/>
          <seriesInfo name="DOI" value="10.17487/RFC7748"/>
        </reference>
        <reference anchor="ARGON2">
          <front>
            <title>Argon2 Memory-Hard Function for Password Hashing and Proof-of-Work Applications</title>
            <author fullname="A. Biryukov" initials="A." surname="Biryukov"/>
            <author fullname="D. Dinu" initials="D." surname="Dinu"/>
            <author fullname="D. Khovratovich" initials="D." surname="Khovratovich"/>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="September" 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>
          <seriesInfo name="RFC" value="9106"/>
          <seriesInfo name="DOI" value="10.17487/RFC9106"/>
        </reference>
        <reference anchor="SCRYPT">
          <front>
            <title>The scrypt Password-Based Key Derivation Function</title>
            <author fullname="C. Percival" initials="C." surname="Percival"/>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <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>
          <seriesInfo name="RFC" value="7914"/>
          <seriesInfo name="DOI" value="10.17487/RFC7914"/>
        </reference>
        <reference anchor="PBKDF2">
          <front>
            <title>PKCS #5: Password-Based Cryptography Specification Version 2.0</title>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <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>
          <seriesInfo name="RFC" value="2898"/>
          <seriesInfo name="DOI" value="10.17487/RFC2898"/>
        </reference>
        <reference anchor="I-D.irtf-cfrg-hash-to-curve">
          <front>
            <title>Hashing to Elliptic Curves</title>
            <author fullname="Armando Faz-Hernandez" initials="A." surname="Faz-Hernandez">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Sam Scott" initials="S." surname="Scott">
              <organization>Cornell Tech</organization>
            </author>
            <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <author fullname="Riad S. Wahby" initials="R. S." surname="Wahby">
              <organization>Stanford University</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare, Inc.</organization>
            </author>
            <date day="15" month="June" year="2022"/>
            <abstract>
              <t>This document specifies a number of algorithms for encoding or hashing an arbitrary string to a point on an elliptic curve.  This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-hash-to-curve-16"/>
        </reference>
        <reference anchor="RFC2945">
          <front>
            <title>The SRP Authentication and Key Exchange System</title>
            <author fullname="T. Wu" initials="T." surname="Wu"/>
            <date month="September" year="2000"/>
            <abstract>
              <t>This document describes a cryptographically strong network authentication mechanism known as the Secure Remote Password (SRP) protocol. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2945"/>
          <seriesInfo name="DOI" value="10.17487/RFC2945"/>
        </reference>
        <reference anchor="RFC9180">
          <front>
            <title>Hybrid Public Key Encryption</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="K. Bhargavan" initials="K." surname="Bhargavan"/>
            <author fullname="B. Lipp" initials="B." surname="Lipp"/>
            <author fullname="C. Wood" initials="C." surname="Wood"/>
            <date month="February" year="2022"/>
            <abstract>
              <t>This document describes a scheme for hybrid public key encryption (HPKE). This scheme provides a variant of public key encryption of arbitrary-sized plaintexts for a recipient public key. It also includes three authenticated variants, including one that authenticates possession of a pre-shared key and two optional ones that authenticate possession of a key encapsulation mechanism (KEM) private key. HPKE works for any combination of an asymmetric KEM, key derivation function (KDF), and authenticated encryption with additional data (AEAD) encryption function. Some authenticated variants may not be supported by all KEMs. We provide instantiations of the scheme using widely used and efficient primitives, such as Elliptic Curve Diffie-Hellman (ECDH) key agreement, HMAC-based key derivation function (HKDF), and SHA2.</t>
              <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9180"/>
          <seriesInfo name="DOI" value="10.17487/RFC9180"/>
        </reference>
      </references>
    </references>
    <?line 2282?>

<section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>We are indebted to the OPAQUE reviewers during CFRG's
aPAKE selection process, particularly Julia Hesse and Bjorn Tackmann.
This draft has benefited from comments by multiple people. Special thanks
to Richard Barnes, Dan Brown, Matt Campagna, Eric Crockett, Paul Grubbs,
Fredrik Kuivinen, Payman Mohassel, Jason Resch, Greg Rubin, and Nick Sullivan.
Hugo Krawczyk wishes to thank his OPAQUE co-authors Stas Jarecki and Jiayu Xu
without whom this work would have not been possible.</t>
    </section>
    <section anchor="alternate-key-recovery">
      <name>Alternate Key Recovery Mechanisms</name>
      <t>Client authentication material can be stored and retrieved using different key
recovery mechanisms. Any key recovery mechanism that encrypts data
in the envelope MUST use an authenticated encryption scheme with random
key-robustness (or key-committing). Deviating from the key-robustness
requirement may open the protocol to attacks, e.g., <xref target="LGR20"/>.
This specification enforces this property by using a MAC over the envelope
contents.</t>
      <t>We remark that export_key for authentication or encryption requires
no special properties from the authentication or encryption schemes
as long as export_key is used only after authentication material is successfully
recovered, i.e., after the MAC in RecoverCredentials passes verification.</t>
    </section>
    <section anchor="alternate-akes">
      <name>Alternate AKE Instantiations</name>
      <t>It is possible to instantiate OPAQUE with other AKEs, such as HMQV <xref target="HMQV"/> and <xref target="SIGMA-I"/>.
HMQV is similar to 3DH but varies in its key schedule. SIGMA-I uses digital signatures
rather than static DH keys for authentication. Specification of these instantiations is
left to future documents. A sketch of how these instantiations might change is included
in the next subsection for posterity.</t>
      <t>OPAQUE may also be instantiated with any post-quantum (PQ) AKE protocol that has the message
flow above and security properties (KCI resistance and forward secrecy) outlined
in <xref target="security-considerations"/>. Note that such an instantiation is not quantum-safe unless
the OPRF is quantum-safe. However, an OPAQUE instantiation where the AKE is quantum-safe,
but the OPRF is not, would still ensure the confidentiality and integrity of application data encrypted
under session_key (or a key derived from it) with a quantum-safe encryption function.
However, the only effect of a break of the OPRF by a future quantum attacker would be
the ability of this attacker to run at that time an exhaustive dictionary
attack against the old user's password and only for users whose envelopes were
harvested while in use (in the case of OPAQUE run over a TLS channel with the
server, harvesting such envelopes requires targeted active attacks).</t>
      <section anchor="hmqv-sketch">
        <name>HMQV Instantiation Sketch</name>
        <t>An HMQV instantiation would work similar to OPAQUE-3DH, differing primarily in the key
schedule <xref target="HMQV"/>. First, the key schedule <tt>preamble</tt> value would use a different constant prefix
-- "HMQV" instead of "3DH" -- as shown below.</t>
        <artwork><![CDATA[
preamble = concat("HMQV",
                  I2OSP(len(client_identity), 2), client_identity,
                  KE1,
                  I2OSP(len(server_identity), 2), server_identity,
                  KE2.credential_response,
                  KE2.auth_response.server_nonce,
                  KE2.auth_response.server_public_keyshare)
]]></artwork>
        <t>Second, the IKM derivation would change. Assuming HMQV is instantiated with a cyclic
group of prime order p with bit length L, clients would compute <tt>IKM</tt> as follows:</t>
        <artwork><![CDATA[
u' = (eskU + u \* skU) mod p
IKM = (epkS \* pkS^s)^u'
]]></artwork>
        <t>Likewise, servers would compute <tt>IKM</tt> as follows:</t>
        <artwork><![CDATA[
s' = (eskS + s \* skS) mod p
IKM = (epkU \* pkU^u)^s'
]]></artwork>
        <t>In both cases, <tt>u</tt> would be computed as follows:</t>
        <artwork><![CDATA[
hashInput = concat(I2OSP(len(epkU), 2), epkU,
                   I2OSP(len(info), 2), info,
                   I2OSP(len("client"), 2), "client")
u = Hash(hashInput) mod L
]]></artwork>
        <t>Likewise, <tt>s</tt> would be computed as follows:</t>
        <artwork><![CDATA[
hashInput = concat(I2OSP(len(epkS), 2), epkS,
                   I2OSP(len(info), 2), info,
                   I2OSP(len("server"), 2), "server")
s = Hash(hashInput) mod L
]]></artwork>
        <t>Hash is the same hash function used in the main OPAQUE protocol for key derivation.
Its output length (in bits) must be at least L.</t>
        <t>Both parties should perform validation (as in <xref target="validation"/>) on each other's
public keys before computing the above parameters.</t>
      </section>
      <section anchor="sigma-i-instantiation-sketch">
        <name>SIGMA-I Instantiation Sketch</name>
        <t>A <xref target="SIGMA-I"/> instantiation differs more drastically from OPAQUE-3DH since authentication
uses digital signatures instead of Diffie-Hellman. In particular, both KE2 and KE3
would carry a digital signature, computed using the server and client private keys
established during registration, respectively, as well as a MAC, where the MAC is
computed as in OPAQUE-3DH.</t>
        <t>The key schedule would also change. Specifically, the key schedule <tt>preamble</tt> value would
use a different constant prefix -- "SIGMA-I" instead of "3DH" -- and the <tt>IKM</tt> computation
would use only the ephemeral public keys exchanged between client and server.</t>
      </section>
    </section>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>This section contains real and fake test vectors for the OPAQUE-3DH specification.
Each real test vector in <xref target="real-vectors"/> specifies the configuration information,
protocol inputs, intermediate values computed during registration and authentication,
and protocol outputs.</t>
      <t>Similarly, each fake test vector in <xref target="fake-vectors"/> specifies
the configuration information, protocol inputs, and protocol
outputs computed during the authentication of an unknown or unregistered user. Note that <tt>masking_key</tt>,
<tt>client_private_key</tt>, and <tt>client_public_key</tt> are used as additional inputs as described in
<xref target="create-credential-response"/>. <tt>client_public_key</tt> is used as the fake record's public key, and
<tt>masking_key</tt> for the fake record's masking key parameter.</t>
      <t>All values are encoded in hexadecimal strings. The configuration information
includes the (OPRF, Hash, KSF, KDF, MAC, Group, Context) tuple, where the Group
matches that which is used in the OPRF. These test vectors were generated using
draft-21 of <xref target="OPRF"/>. The KSF used for each test vector is the identity function
(denoted Identity), which returns as output the input message supplied to the function
without any modification, i.e., msg = Stretch(msg).</t>
      <section anchor="real-vectors">
        <name>Real Test Vectors</name>
        <section anchor="opaque-3dh-real-test-vector-1">
          <name>OPAQUE-3DH Real Test Vector 1</name>
          <section anchor="configuration">
            <name>Configuration</name>
            <artwork><![CDATA[
OPRF: ristretto255-SHA512
Hash: SHA512
KSF: Identity
KDF: HKDF-SHA512
MAC: HMAC-SHA512
Group: ristretto255
Context: 4f50415155452d504f43
Nh: 64
Npk: 32
Nsk: 32
Nm: 64
Nx: 64
Nok: 32
]]></artwork>
          </section>
          <section anchor="input-values">
            <name>Input Values</name>
            <artwork><![CDATA[
oprf_seed: f433d0227b0b9dd54f7c4422b600e764e47fb503f1f9a0f0a47c6606b0
54a7fdc65347f1a08f277e22358bbabe26f823fca82c7848e9a75661f4ec5d5c1989e
f
credential_identifier: 31323334
password: 436f7272656374486f72736542617474657279537461706c65
envelope_nonce: ac13171b2f17bc2c74997f0fce1e1f35bec6b91fe2e12dbd323d2
3ba7a38dfec
masking_nonce: 38fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80
f612fdfc6d
server_private_key: 47451a85372f8b3537e249d7b54188091fb18edde78094b43
e2ba42b5eb89f0d
server_public_key: b2fe7af9f48cc502d016729d2fe25cdd433f2c4bc904660b2a
382c9b79df1a78
server_nonce: 71cd9960ecef2fe0d0f7494986fa3d8b2bb01963537e60efb13981e
138e3d4a1
client_nonce: da7e07376d6d6f034cfa9bb537d11b8c6b4238c334333d1f0aebb38
0cae6a6cc
client_keyshare_seed: 82850a697b42a505f5b68fcdafce8c31f0af2b581f063cf
1091933541936304b
server_keyshare_seed: 05a4f54206eef1ba2f615bc0aa285cb22f26d1153b5b40a
1e85ff80da12f982f
blind_registration: 76cfbfe758db884bebb33582331ba9f159720ca8784a2a070
a265d9c2d6abe01
blind_login: 6ecc102d2e7a7cf49617aad7bbe188556792d4acd60a1a8a8d2b65d4
b0790308
]]></artwork>
          </section>
          <section anchor="intermediate-values">
            <name>Intermediate Values</name>
            <artwork><![CDATA[
client_public_key: 76a845464c68a5d2f7e442436bb1424953b17d3e2e289ccbac
cafb57ac5c3675
auth_key: 6cd32316f18d72a9a927a83199fa030663a38ce0c11fbaef82aa9003773
0494fc555c4d49506284516edd1628c27965b7555a4ebfed2223199f6c67966dde822
randomized_password: aac48c25ab036e30750839d31d6e73007344cb1155289fb7
d329beb932e9adeea73d5d5c22a0ce1952f8aba6d66007615cd1698d4ac85ef1fcf15
0031d1435d9
envelope: ac13171b2f17bc2c74997f0fce1e1f35bec6b91fe2e12dbd323d23ba7a3
8dfec634b0f5b96109c198a8027da51854c35bee90d1e1c781806d07d49b76de6a28b
8d9e9b6c93b9f8b64d16dddd9c5bfb5fea48ee8fd2f75012a8b308605cdd8ba5
handshake_secret: 81263cb85a0cfa12450f0f388de4e92291ec4c7c7a0878b6245
50ff528726332f1298fc6cc822a432c89504347c7a2ccd70316ae3da6a15e0399e6db
3f7c1b12
server_mac_key: 0d36b26cfe38f51f804f0a9361818f32ee1ce2a4e5578653b5271
84af058d3b2d8075c296fd84d24677913d1baa109290cd81a13ed383f9091a3804e65
298dfc
client_mac_key: 91750adbac54a5e8e53b4c233cc8d369fe83b0de1b6a3cd85575e
eb0bb01a6a90a086a2cf5fe75fff2a9379c30ba9049510a33b5b0b1444a88800fc3ee
e2260d
oprf_key: 5d4c6a8b7c7138182afb4345d1fae6a9f18a1744afbcc3854f8f5a2b4b4
c6d05
]]></artwork>
          </section>
          <section anchor="output-values">
            <name>Output Values</name>
            <artwork><![CDATA[
registration_request: 5059ff249eb1551b7ce4991f3336205bde44a105a032e74
7d21bf382e75f7a71
registration_response: 7408a268083e03abc7097fc05b587834539065e86fb0c7
b6342fcf5e01e5b019b2fe7af9f48cc502d016729d2fe25cdd433f2c4bc904660b2a3
82c9b79df1a78
registration_upload: 76a845464c68a5d2f7e442436bb1424953b17d3e2e289ccb
accafb57ac5c36751ac5844383c7708077dea41cbefe2fa15724f449e535dd7dd562e
66f5ecfb95864eadddec9db5874959905117dad40a4524111849799281fefe3c51fa8
2785c5ac13171b2f17bc2c74997f0fce1e1f35bec6b91fe2e12dbd323d23ba7a38dfe
c634b0f5b96109c198a8027da51854c35bee90d1e1c781806d07d49b76de6a28b8d9e
9b6c93b9f8b64d16dddd9c5bfb5fea48ee8fd2f75012a8b308605cdd8ba5
KE1: c4dedb0ba6ed5d965d6f250fbe554cd45cba5dfcce3ce836e4aee778aa3cd44d
da7e07376d6d6f034cfa9bb537d11b8c6b4238c334333d1f0aebb380cae6a6cc6e29b
ee50701498605b2c085d7b241ca15ba5c32027dd21ba420b94ce60da326
KE2: 7e308140890bcde30cbcea28b01ea1ecfbd077cff62c4def8efa075aabcbb471
38fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80f612fdfc6dd6ec6
0bcdb26dc455ddf3e718f1020490c192d70dfc7e403981179d8073d1146a4f9aa1ced
4e4cd984c657eb3b54ced3848326f70331953d91b02535af44d9fedc80188ca46743c
52786e0382f95ad85c08f6afcd1ccfbff95e2bdeb015b166c6b20b92f832cc6df01e0
b86a7efd92c1c804ff865781fa93f2f20b446c8371b671cd9960ecef2fe0d0f749498
6fa3d8b2bb01963537e60efb13981e138e3d4a1c4f62198a9d6fa9170c42c3c71f197
1b29eb1d5d0bd733e40816c91f7912cc4a660c48dae03e57aaa38f3d0cffcfc21852e
bc8b405d15bd6744945ba1a93438a162b6111699d98a16bb55b7bdddfe0fc5608b23d
a246e7bd73b47369169c5c90
KE3: 4455df4f810ac31a6748835888564b536e6da5d9944dfea9e34defb9575fe5e2
661ef61d2ae3929bcf57e53d464113d364365eb7d1a57b629707ca48da18e442
export_key: 1ef15b4fa99e8a852412450ab78713aad30d21fa6966c9b8c9fb3262a
970dc62950d4dd4ed62598229b1b72794fc0335199d9f7fcc6eaedde92cc04870e63f
16
session_key: 42afde6f5aca0cfa5c163763fbad55e73a41db6b41bc87b8e7b62214
a8eedc6731fa3cb857d657ab9b3764b89a84e91ebcb4785166fbb02cedfcbdfda215b
96f
]]></artwork>
          </section>
        </section>
        <section anchor="opaque-3dh-real-test-vector-2">
          <name>OPAQUE-3DH Real Test Vector 2</name>
          <section anchor="configuration-1">
            <name>Configuration</name>
            <artwork><![CDATA[
OPRF: ristretto255-SHA512
Hash: SHA512
KSF: Identity
KDF: HKDF-SHA512
MAC: HMAC-SHA512
Group: ristretto255
Context: 4f50415155452d504f43
Nh: 64
Npk: 32
Nsk: 32
Nm: 64
Nx: 64
Nok: 32
]]></artwork>
          </section>
          <section anchor="input-values-1">
            <name>Input Values</name>
            <artwork><![CDATA[
client_identity: 616c696365
server_identity: 626f62
oprf_seed: f433d0227b0b9dd54f7c4422b600e764e47fb503f1f9a0f0a47c6606b0
54a7fdc65347f1a08f277e22358bbabe26f823fca82c7848e9a75661f4ec5d5c1989e
f
credential_identifier: 31323334
password: 436f7272656374486f72736542617474657279537461706c65
envelope_nonce: ac13171b2f17bc2c74997f0fce1e1f35bec6b91fe2e12dbd323d2
3ba7a38dfec
masking_nonce: 38fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80
f612fdfc6d
server_private_key: 47451a85372f8b3537e249d7b54188091fb18edde78094b43
e2ba42b5eb89f0d
server_public_key: b2fe7af9f48cc502d016729d2fe25cdd433f2c4bc904660b2a
382c9b79df1a78
server_nonce: 71cd9960ecef2fe0d0f7494986fa3d8b2bb01963537e60efb13981e
138e3d4a1
client_nonce: da7e07376d6d6f034cfa9bb537d11b8c6b4238c334333d1f0aebb38
0cae6a6cc
client_keyshare_seed: 82850a697b42a505f5b68fcdafce8c31f0af2b581f063cf
1091933541936304b
server_keyshare_seed: 05a4f54206eef1ba2f615bc0aa285cb22f26d1153b5b40a
1e85ff80da12f982f
blind_registration: 76cfbfe758db884bebb33582331ba9f159720ca8784a2a070
a265d9c2d6abe01
blind_login: 6ecc102d2e7a7cf49617aad7bbe188556792d4acd60a1a8a8d2b65d4
b0790308
]]></artwork>
          </section>
          <section anchor="intermediate-values-1">
            <name>Intermediate Values</name>
            <artwork><![CDATA[
client_public_key: 76a845464c68a5d2f7e442436bb1424953b17d3e2e289ccbac
cafb57ac5c3675
auth_key: 6cd32316f18d72a9a927a83199fa030663a38ce0c11fbaef82aa9003773
0494fc555c4d49506284516edd1628c27965b7555a4ebfed2223199f6c67966dde822
randomized_password: aac48c25ab036e30750839d31d6e73007344cb1155289fb7
d329beb932e9adeea73d5d5c22a0ce1952f8aba6d66007615cd1698d4ac85ef1fcf15
0031d1435d9
envelope: ac13171b2f17bc2c74997f0fce1e1f35bec6b91fe2e12dbd323d23ba7a3
8dfec1ac902dc5589e9a5f0de56ad685ea8486210ef41449cd4d8712828913c5d2b68
0b2b3af4a26c765cff329bfb66d38ecf1d6cfa9e7a73c222c6efe0d9520f7d7c
handshake_secret: 5e723bed1e5276de2503419eba9da61ead573109c4012268323
98c7e08155b885bfe7bc93451f9d887a0c1d0c19233e40a8e47b347a9ac3907f94032
a4cff64f
server_mac_key: dad66bb9251073d17a13f8e5500f36e5998e3cde520ca0738e708
5af62fd97812eb79a745c94d0bf8a6ac17f980cf435504cf64041eeb6bb237796d2c7
f81e9a
client_mac_key: f816fe2914f7c5b29852385615d7c7f31ac122adf202d7ccd4976
06d7aabd48930323d1d02b1cc9ecd456c4de6f46c7950becb18bffd921dd5876381b5
486ffe
oprf_key: 5d4c6a8b7c7138182afb4345d1fae6a9f18a1744afbcc3854f8f5a2b4b4
c6d05
]]></artwork>
          </section>
          <section anchor="output-values-1">
            <name>Output Values</name>
            <artwork><![CDATA[
registration_request: 5059ff249eb1551b7ce4991f3336205bde44a105a032e74
7d21bf382e75f7a71
registration_response: 7408a268083e03abc7097fc05b587834539065e86fb0c7
b6342fcf5e01e5b019b2fe7af9f48cc502d016729d2fe25cdd433f2c4bc904660b2a3
82c9b79df1a78
registration_upload: 76a845464c68a5d2f7e442436bb1424953b17d3e2e289ccb
accafb57ac5c36751ac5844383c7708077dea41cbefe2fa15724f449e535dd7dd562e
66f5ecfb95864eadddec9db5874959905117dad40a4524111849799281fefe3c51fa8
2785c5ac13171b2f17bc2c74997f0fce1e1f35bec6b91fe2e12dbd323d23ba7a38dfe
c1ac902dc5589e9a5f0de56ad685ea8486210ef41449cd4d8712828913c5d2b680b2b
3af4a26c765cff329bfb66d38ecf1d6cfa9e7a73c222c6efe0d9520f7d7c
KE1: c4dedb0ba6ed5d965d6f250fbe554cd45cba5dfcce3ce836e4aee778aa3cd44d
da7e07376d6d6f034cfa9bb537d11b8c6b4238c334333d1f0aebb380cae6a6cc6e29b
ee50701498605b2c085d7b241ca15ba5c32027dd21ba420b94ce60da326
KE2: 7e308140890bcde30cbcea28b01ea1ecfbd077cff62c4def8efa075aabcbb471
38fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80f612fdfc6dd6ec6
0bcdb26dc455ddf3e718f1020490c192d70dfc7e403981179d8073d1146a4f9aa1ced
4e4cd984c657eb3b54ced3848326f70331953d91b02535af44d9fea502150b67fe367
95dd8914f164e49f81c7688a38928372134b7dccd50e09f8fed9518b7b2f94835b3c4
fe4c8475e7513f20eb97ff0568a39caee3fd6251876f71cd9960ecef2fe0d0f749498
6fa3d8b2bb01963537e60efb13981e138e3d4a1c4f62198a9d6fa9170c42c3c71f197
1b29eb1d5d0bd733e40816c91f7912cc4a292371e7809a9031743e943fb3b56f51de9
03552fc91fba4e7419029951c3970b2e2f0a9dea218d22e9e4e0000855bb6421aa361
0d6fc0f4033a6517030d4341
KE3: 7a026de1d6126905736c3f6d92463a08d209833eb793e46d0f7f15b3e0f62c76
43763c02bbc6b8d3d15b63250cae98171e9260f1ffa789750f534ac11a0176d5
export_key: 1ef15b4fa99e8a852412450ab78713aad30d21fa6966c9b8c9fb3262a
970dc62950d4dd4ed62598229b1b72794fc0335199d9f7fcc6eaedde92cc04870e63f
16
session_key: ae7951123ab5befc27e62e63f52cf472d6236cb386c968cc47b7e34f
866aa4bc7638356a73cfce92becf39d6a7d32a1861f12130e824241fe6cab34fbd471
a57
]]></artwork>
          </section>
        </section>
        <section anchor="opaque-3dh-real-test-vector-3">
          <name>OPAQUE-3DH Real Test Vector 3</name>
          <section anchor="configuration-2">
            <name>Configuration</name>
            <artwork><![CDATA[
OPRF: ristretto255-SHA512
Hash: SHA512
KSF: Identity
KDF: HKDF-SHA512
MAC: HMAC-SHA512
Group: curve25519
Context: 4f50415155452d504f43
Nh: 64
Npk: 32
Nsk: 32
Nm: 64
Nx: 64
Nok: 32
]]></artwork>
          </section>
          <section anchor="input-values-2">
            <name>Input Values</name>
            <artwork><![CDATA[
oprf_seed: a78342ab84d3d30f08d5a9630c79bf311c31ed7f85d9d4959bf492ec67
a0eec8a67dfbf4497248eebd49e878aab173e5e4ff76354288fdd53e949a5f7c9f7f1
b
credential_identifier: 31323334
password: 436f7272656374486f72736542617474657279537461706c65
envelope_nonce: 40d6b67fdd7da7c49894750754514dbd2070a407166bd2a5237cc
a9bf44d6e0b
masking_nonce: 38fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80
f612fdfc6d
server_private_key: c06139381df63bfc91c850db0b9cfbec7a62e86d80040a41a
a7725bf0e79d564
server_public_key: a41e28269b4e97a66468cc00c5a57753e192e1527669897706
88aa90486ef031
server_nonce: 71cd9960ecef2fe0d0f7494986fa3d8b2bb01963537e60efb13981e
138e3d4a1
client_nonce: da7e07376d6d6f034cfa9bb537d11b8c6b4238c334333d1f0aebb38
0cae6a6cc
client_keyshare_seed: 82850a697b42a505f5b68fcdafce8c31f0af2b581f063cf
1091933541936304b
server_keyshare_seed: 05a4f54206eef1ba2f615bc0aa285cb22f26d1153b5b40a
1e85ff80da12f982f
blind_registration: c575731ffe1cb0ca5ba63b42c4699767b8b9ab78ba39316ee
04baddb2034a70a
blind_login: 6ecc102d2e7a7cf49617aad7bbe188556792d4acd60a1a8a8d2b65d4
b0790308
]]></artwork>
          </section>
          <section anchor="intermediate-values-2">
            <name>Intermediate Values</name>
            <artwork><![CDATA[
client_public_key: 0936ea94ab030ec332e29050d266c520e916731a052d05ced7
e0cfe751142b48
auth_key: 7e880ab484f750e80e6f839d975aff476070ce65066d85ea62523d1d576
4739d91307fac47186a4ab935e6a5c7f70cb47faa9473311947502c022cc67ae9440c
randomized_password: 3a602c295a9c323d9362fe286f104567ed6862b25dbe30fa
da844f19e41cf40047424b7118e15dc2c1a815a70fea5c8de6c30aa61440cd4b4b5e8
f3963fbb2e1
envelope: 40d6b67fdd7da7c49894750754514dbd2070a407166bd2a5237cca9bf44
d6e0b20c1e81fef28e92e897ca8287d49a55075b47c3988ff0fff367d79a3e350ccac
150b4a3ff48b4770c8e84e437b3d4e68d2b95833f7788f7eb93fa6a8afb85ecb
handshake_secret: 178c8c15e025252380c3edb1c6ad8ac52573b38d536099e2f86
5786f5e31c642608550c0c6f281c37ce259667dd72768af31630e0eb36f1096a2e642
1c2aa163
server_mac_key: f3c6a8e069c54bb0d8905139f723c9e22f5c662dc08848243a665
4c8223800019b9823523d84da2ef67ca1c14277630aace464c113be8a0a658c39e181
a8bb71
client_mac_key: b1ee7ce52dbd0ab72872924ff11596cb196bbabfc319e74aca78a
de54a0f74dd15dcf5621f6d2e79161b0c9b701381d494836dedbb86e584a65b34267a
370e01
oprf_key: 62ef7f7d9506a14600c34f642aaf6ef8019cc82a6755db4fded5248ea14
6030a
]]></artwork>
          </section>
          <section anchor="output-values-2">
            <name>Output Values</name>
            <artwork><![CDATA[
registration_request: 26f3dbfd76b8e5f85b4da604f42889a7d4b1bc919f65538
1a67de02c59fd5436
registration_response: 506e8f1b89c098fb89b5b6210a05f7898cafdaea221761
e8d5272fc39e0f9f08a41e28269b4e97a66468cc00c5a57753e192e15276698977068
8aa90486ef031
registration_upload: 0936ea94ab030ec332e29050d266c520e916731a052d05ce
d7e0cfe751142b486d23c6ed818882f9bdfdcf91389fcbc0b7a3faf92bd0bd6be4a1e
7730277b694fc7c6ba327fbe786af18487688e0f7c148bbd54dc2fc80c28e7a976d9e
f53c3540d6b67fdd7da7c49894750754514dbd2070a407166bd2a5237cca9bf44d6e0
b20c1e81fef28e92e897ca8287d49a55075b47c3988ff0fff367d79a3e350ccac150b
4a3ff48b4770c8e84e437b3d4e68d2b95833f7788f7eb93fa6a8afb85ecb
KE1: c4dedb0ba6ed5d965d6f250fbe554cd45cba5dfcce3ce836e4aee778aa3cd44d
da7e07376d6d6f034cfa9bb537d11b8c6b4238c334333d1f0aebb380cae6a6cc10a83
b9117d3798cb2957fbdb0268a0d63dbf9d66bde5c00c78affd80026c911
KE2: 9a0e5a1514f62e005ea098b0d8cf6750e358c4389e6add1c52aed9500fa19d00
38fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80f612fdfc6d22cc3
1127d6f0096755be3c3d2dd6287795c317aeea10c9485bf4f419a786642c19a8f151c
eb5e8767d175248c62c017de94057398d28bf0ed00d1b50ee4f812fd9afddf98af8cd
58067ca43b0633b6cadd0e9d987f89623fed4d3583bdf6910c425600e90dab3c6b351
3188a465461a67f6bbc47aeba808f7f7e2c6d66f5c3271cd9960ecef2fe0d0f749498
6fa3d8b2bb01963537e60efb13981e138e3d4a141f55f0bef355cfb34ccd468fdacad
75865ee7efef95f4cb6c25d477f720502676f06a3b806da262139bf3fa76a1090b94d
ac78bc3bc6f8747d5b35acf94eff3ec2ebe7d49b8cf16be64120b279fe92664e47be5
da7e60f08f12e91192652f79
KE3: 550e923829a544496d8316c490da2b979b78c730dd75be3a17f237a26432c19f
bba54b6a0467b1c22ecbd6794bc5fa5b04215ba1ef974c6b090baa42c5bb984f
export_key: 9dec51d6d0f6ce7e4345f10961053713b07310cc2e45872f57bbd2fe5
070fdf0fb5b77c7ddaa2f3dc5c35132df7417ad7fefe0f690ad266e5a54a21d045c9c
38
session_key: fd2fdd07c1bcc88e81c1b1d1de5ad62dfdef1c0b8209ff9d671e1fac
55ce9c34d381c1fb2703ff53a797f77daccbe33047ccc167b8105171e10ec962eea20
3aa
]]></artwork>
          </section>
        </section>
        <section anchor="opaque-3dh-real-test-vector-4">
          <name>OPAQUE-3DH Real Test Vector 4</name>
          <section anchor="configuration-3">
            <name>Configuration</name>
            <artwork><![CDATA[
OPRF: ristretto255-SHA512
Hash: SHA512
KSF: Identity
KDF: HKDF-SHA512
MAC: HMAC-SHA512
Group: curve25519
Context: 4f50415155452d504f43
Nh: 64
Npk: 32
Nsk: 32
Nm: 64
Nx: 64
Nok: 32
]]></artwork>
          </section>
          <section anchor="input-values-3">
            <name>Input Values</name>
            <artwork><![CDATA[
client_identity: 616c696365
server_identity: 626f62
oprf_seed: a78342ab84d3d30f08d5a9630c79bf311c31ed7f85d9d4959bf492ec67
a0eec8a67dfbf4497248eebd49e878aab173e5e4ff76354288fdd53e949a5f7c9f7f1
b
credential_identifier: 31323334
password: 436f7272656374486f72736542617474657279537461706c65
envelope_nonce: 40d6b67fdd7da7c49894750754514dbd2070a407166bd2a5237cc
a9bf44d6e0b
masking_nonce: 38fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80
f612fdfc6d
server_private_key: c06139381df63bfc91c850db0b9cfbec7a62e86d80040a41a
a7725bf0e79d564
server_public_key: a41e28269b4e97a66468cc00c5a57753e192e1527669897706
88aa90486ef031
server_nonce: 71cd9960ecef2fe0d0f7494986fa3d8b2bb01963537e60efb13981e
138e3d4a1
client_nonce: da7e07376d6d6f034cfa9bb537d11b8c6b4238c334333d1f0aebb38
0cae6a6cc
client_keyshare_seed: 82850a697b42a505f5b68fcdafce8c31f0af2b581f063cf
1091933541936304b
server_keyshare_seed: 05a4f54206eef1ba2f615bc0aa285cb22f26d1153b5b40a
1e85ff80da12f982f
blind_registration: c575731ffe1cb0ca5ba63b42c4699767b8b9ab78ba39316ee
04baddb2034a70a
blind_login: 6ecc102d2e7a7cf49617aad7bbe188556792d4acd60a1a8a8d2b65d4
b0790308
]]></artwork>
          </section>
          <section anchor="intermediate-values-3">
            <name>Intermediate Values</name>
            <artwork><![CDATA[
client_public_key: 0936ea94ab030ec332e29050d266c520e916731a052d05ced7
e0cfe751142b48
auth_key: 7e880ab484f750e80e6f839d975aff476070ce65066d85ea62523d1d576
4739d91307fac47186a4ab935e6a5c7f70cb47faa9473311947502c022cc67ae9440c
randomized_password: 3a602c295a9c323d9362fe286f104567ed6862b25dbe30fa
da844f19e41cf40047424b7118e15dc2c1a815a70fea5c8de6c30aa61440cd4b4b5e8
f3963fbb2e1
envelope: 40d6b67fdd7da7c49894750754514dbd2070a407166bd2a5237cca9bf44
d6e0bb4c0eab6143959a650c5f6b32acf162b1fbe95bb36c5c4f99df53865c4d3537d
69061d80522d772cd0efdbe91f817f6bf7259a56e20b4eb9cbe9443702f4b759
handshake_secret: 13e7dc6afa5334b9dfffe26bee3caf744ef4add176caee464cd
eb3d37303b90de35a8bf095df84471ac77d705f12fe232f1571de1d6a001d3e808998
73a142dc
server_mac_key: a58135acfb2bde92d506cf59119729a6404ad94eba294e4b52a63
baf58cfe03f21bcf735222c7f2c27a60bd958be7f6aed50dc03a78f64e7ae4ac1ff07
1b95aa
client_mac_key: 1e1a8ba156aadc4a302f707d2193c9dab477b355f430d450dd407
ce40dc75613f76ec33dec494f8a6bfdcf951eb060dac33e6572c693954fe92e33730c
9ab0a2
oprf_key: 62ef7f7d9506a14600c34f642aaf6ef8019cc82a6755db4fded5248ea14
6030a
]]></artwork>
          </section>
          <section anchor="output-values-3">
            <name>Output Values</name>
            <artwork><![CDATA[
registration_request: 26f3dbfd76b8e5f85b4da604f42889a7d4b1bc919f65538
1a67de02c59fd5436
registration_response: 506e8f1b89c098fb89b5b6210a05f7898cafdaea221761
e8d5272fc39e0f9f08a41e28269b4e97a66468cc00c5a57753e192e15276698977068
8aa90486ef031
registration_upload: 0936ea94ab030ec332e29050d266c520e916731a052d05ce
d7e0cfe751142b486d23c6ed818882f9bdfdcf91389fcbc0b7a3faf92bd0bd6be4a1e
7730277b694fc7c6ba327fbe786af18487688e0f7c148bbd54dc2fc80c28e7a976d9e
f53c3540d6b67fdd7da7c49894750754514dbd2070a407166bd2a5237cca9bf44d6e0
bb4c0eab6143959a650c5f6b32acf162b1fbe95bb36c5c4f99df53865c4d3537d6906
1d80522d772cd0efdbe91f817f6bf7259a56e20b4eb9cbe9443702f4b759
KE1: c4dedb0ba6ed5d965d6f250fbe554cd45cba5dfcce3ce836e4aee778aa3cd44d
da7e07376d6d6f034cfa9bb537d11b8c6b4238c334333d1f0aebb380cae6a6cc10a83
b9117d3798cb2957fbdb0268a0d63dbf9d66bde5c00c78affd80026c911
KE2: 9a0e5a1514f62e005ea098b0d8cf6750e358c4389e6add1c52aed9500fa19d00
38fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80f612fdfc6d22cc3
1127d6f0096755be3c3d2dd6287795c317aeea10c9485bf4f419a786642c19a8f151c
eb5e8767d175248c62c017de94057398d28bf0ed00d1b50ee4f812699bff7663be3c5
d59de94d8e7e58817c7da005b39c25d25555c929e1c5cf6c1b82837b1367c839aab56
a422c0d97719426a79a16f9869cf852100597b23b5a071cd9960ecef2fe0d0f749498
6fa3d8b2bb01963537e60efb13981e138e3d4a141f55f0bef355cfb34ccd468fdacad
75865ee7efef95f4cb6c25d477f72050267cc22c87edbf3ecaca64cb33bc60dc3bfc5
51e365f0d46a7fed0e09d96f9afbb48868f5bb3c3e05a86ed8c9476fc22c58306c5a2
91be34388e09548ba9d70f39
KE3: d16344e791c3f18594d22ba068984fa18ec1e9bead662b75f66826ffd627932f
cd1ec40cd01dcf5f63f4055ebe45c7717a57a833aad360256cf1e1c20c0eae1c
export_key: 9dec51d6d0f6ce7e4345f10961053713b07310cc2e45872f57bbd2fe5
070fdf0fb5b77c7ddaa2f3dc5c35132df7417ad7fefe0f690ad266e5a54a21d045c9c
38
session_key: f6116d3aa0e4089a179713bad4d98ed5cb57e5443cae8d36ef78996f
a60f3dc6e9fcdd63c001596b06dbc1285d80211035cc0e485506b3f7a650cbf78c5bf
fc9
]]></artwork>
          </section>
        </section>
        <section anchor="opaque-3dh-real-test-vector-5">
          <name>OPAQUE-3DH Real Test Vector 5</name>
          <section anchor="configuration-4">
            <name>Configuration</name>
            <artwork><![CDATA[
OPRF: P256-SHA256
Hash: SHA256
KSF: Identity
KDF: HKDF-SHA256
MAC: HMAC-SHA256
Group: P256_XMD:SHA-256_SSWU_RO_
Context: 4f50415155452d504f43
Nh: 32
Npk: 33
Nsk: 32
Nm: 32
Nx: 32
Nok: 32
]]></artwork>
          </section>
          <section anchor="input-values-4">
            <name>Input Values</name>
            <artwork><![CDATA[
oprf_seed: 62f60b286d20ce4fd1d64809b0021dad6ed5d52a2c8cf27ae6582543a0
a8dce2
credential_identifier: 31323334
password: 436f7272656374486f72736542617474657279537461706c65
envelope_nonce: a921f2a014513bd8a90e477a629794e89fec12d12206dde662ebd
cf65670e51f
masking_nonce: 38fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80
f612fdfc6d
server_private_key: c36139381df63bfc91c850db0b9cfbec7a62e86d80040a41a
a7725bf0e79d5e5
server_public_key: 035f40ff9cf88aa1f5cd4fe5fd3da9ea65a4923a5594f84fd9
f2092d6067784874
server_nonce: 71cd9960ecef2fe0d0f7494986fa3d8b2bb01963537e60efb13981e
138e3d4a1
client_nonce: ab3d33bde0e93eda72392346a7a73051110674bbf6b1b7ffab8be4f
91fdaeeb1
client_keyshare_seed: 633b875d74d1556d2a2789309972b06db21dfcc4f5ad51d
7e74d783b7cfab8dc
server_keyshare_seed: 05a4f54206eef1ba2f615bc0aa285cb22f26d1153b5b40a
1e85ff80da12f982f
blind_registration: 411bf1a62d119afe30df682b91a0a33d777972d4f2daa4b34
ca527d597078153
blind_login: c497fddf6056d241e6cf9fb7ac37c384f49b357a221eb0a802c989b9
942256c1
]]></artwork>
          </section>
          <section anchor="intermediate-values-4">
            <name>Intermediate Values</name>
            <artwork><![CDATA[
client_public_key: 03b218507d978c3db570ca994aaf36695a731ddb2db272c817
f79746fc37ae5214
auth_key: 5bd4be1602516092dc5078f8d699f5721dc1720a49fb80d8e5c16377abd
0987b
randomized_password: 06be0a1a51d56557a3adad57ba29c5510565dcd8b5078fa3
19151b9382258fb0
envelope: a921f2a014513bd8a90e477a629794e89fec12d12206dde662ebdcf6567
0e51fad30bbcfc1f8eda0211553ab9aaf26345ad59a128e80188f035fe4924fad67b8
handshake_secret: 83a932431a8f25bad042f008efa2b07c6cd0faa8285f335b636
3546a9f9b235f
server_mac_key: 13e928581febfad28855e3e7f03306d61bd69489686f621535d44
a1365b73b0d
client_mac_key: afdc53910c25183b08b930e6953c35b3466276736d9de2e9c5efa
f150f4082c5
oprf_key: 2dfb5cb9aa1476093be74ca0d43e5b02862a05f5d6972614d7433acdc66
f7f31
]]></artwork>
          </section>
          <section anchor="output-values-4">
            <name>Output Values</name>
            <artwork><![CDATA[
registration_request: 029e949a29cfa0bf7c1287333d2fb3dc586c41aa652f507
0d26a5315a1b50229f8
registration_response: 0350d3694c00978f00a5ce7cd08a00547e4ab5fb5fc2b2
f6717cdaa6c89136efef035f40ff9cf88aa1f5cd4fe5fd3da9ea65a4923a5594f84fd
9f2092d6067784874
registration_upload: 03b218507d978c3db570ca994aaf36695a731ddb2db272c8
17f79746fc37ae52147f0ed53532d3ae8e505ecc70d42d2b814b6b0e48156def71ea0
29148b2803aafa921f2a014513bd8a90e477a629794e89fec12d12206dde662ebdcf6
5670e51fad30bbcfc1f8eda0211553ab9aaf26345ad59a128e80188f035fe4924fad6
7b8
KE1: 037342f0bcb3ecea754c1e67576c86aa90c1de3875f390ad599a26686cdfee6e
07ab3d33bde0e93eda72392346a7a73051110674bbf6b1b7ffab8be4f91fdaeeb1022
ed3f32f318f81bab80da321fecab3cd9b6eea11a95666dfa6beeaab321280b6
KE2: 0246da9fe4d41d5ba69faa6c509a1d5bafd49a48615a47a8dd4b0823cc147648
1138fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80f612fdfc6d2f0
c547f70deaeca54d878c14c1aa5e1ab405dec833777132eea905c2fbb12504a67dcbe
0e66740c76b62c13b04a38a77926e19072953319ec65e41f9bfd2ae26837b6ce688bf
9af2542f04eec9ab96a1b9328812dc2f5c89182ed47fead61f09f71cd9960ecef2fe0
d0f7494986fa3d8b2bb01963537e60efb13981e138e3d4a103c1701353219b53acf33
7bf6456a83cefed8f563f1040b65afbf3b65d3bc9a19b50a73b145bc87a157e8c58c0
342e2047ee22ae37b63db17e0a82a30fcc4ecf7b
KE3: e97cab4433aa39d598e76f13e768bba61c682947bdcf9936035e8a3a3ebfb66e
export_key: c3c9a1b0e33ac84dd83d0b7e8af6794e17e7a3caadff289fbd9dc769a
853c64b
session_key: 484ad345715ccce138ca49e4ea362c6183f0949aaaa1125dc3bc3f80
876e7cd1
]]></artwork>
          </section>
        </section>
        <section anchor="opaque-3dh-real-test-vector-6">
          <name>OPAQUE-3DH Real Test Vector 6</name>
          <section anchor="configuration-5">
            <name>Configuration</name>
            <artwork><![CDATA[
OPRF: P256-SHA256
Hash: SHA256
KSF: Identity
KDF: HKDF-SHA256
MAC: HMAC-SHA256
Group: P256_XMD:SHA-256_SSWU_RO_
Context: 4f50415155452d504f43
Nh: 32
Npk: 33
Nsk: 32
Nm: 32
Nx: 32
Nok: 32
]]></artwork>
          </section>
          <section anchor="input-values-5">
            <name>Input Values</name>
            <artwork><![CDATA[
client_identity: 616c696365
server_identity: 626f62
oprf_seed: 62f60b286d20ce4fd1d64809b0021dad6ed5d52a2c8cf27ae6582543a0
a8dce2
credential_identifier: 31323334
password: 436f7272656374486f72736542617474657279537461706c65
envelope_nonce: a921f2a014513bd8a90e477a629794e89fec12d12206dde662ebd
cf65670e51f
masking_nonce: 38fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80
f612fdfc6d
server_private_key: c36139381df63bfc91c850db0b9cfbec7a62e86d80040a41a
a7725bf0e79d5e5
server_public_key: 035f40ff9cf88aa1f5cd4fe5fd3da9ea65a4923a5594f84fd9
f2092d6067784874
server_nonce: 71cd9960ecef2fe0d0f7494986fa3d8b2bb01963537e60efb13981e
138e3d4a1
client_nonce: ab3d33bde0e93eda72392346a7a73051110674bbf6b1b7ffab8be4f
91fdaeeb1
client_keyshare_seed: 633b875d74d1556d2a2789309972b06db21dfcc4f5ad51d
7e74d783b7cfab8dc
server_keyshare_seed: 05a4f54206eef1ba2f615bc0aa285cb22f26d1153b5b40a
1e85ff80da12f982f
blind_registration: 411bf1a62d119afe30df682b91a0a33d777972d4f2daa4b34
ca527d597078153
blind_login: c497fddf6056d241e6cf9fb7ac37c384f49b357a221eb0a802c989b9
942256c1
]]></artwork>
          </section>
          <section anchor="intermediate-values-5">
            <name>Intermediate Values</name>
            <artwork><![CDATA[
client_public_key: 03b218507d978c3db570ca994aaf36695a731ddb2db272c817
f79746fc37ae5214
auth_key: 5bd4be1602516092dc5078f8d699f5721dc1720a49fb80d8e5c16377abd
0987b
randomized_password: 06be0a1a51d56557a3adad57ba29c5510565dcd8b5078fa3
19151b9382258fb0
envelope: a921f2a014513bd8a90e477a629794e89fec12d12206dde662ebdcf6567
0e51f4d7773a36a208a866301dbb2858e40dc5638017527cf91aef32d3848eebe0971
handshake_secret: 80bdcc498f22de492e90ee8101fcc7c101e158dd49c77f7c283
816ae329ed62f
server_mac_key: 0f82432fbdb5b90daf27a91a3acc42299a9590dba1b77932c2207
b4cb3d4a157
client_mac_key: 7f629eb0b1b69979b07ca1f564b3e92ed22f07569fd1d11725d93
e46731fbe71
oprf_key: 2dfb5cb9aa1476093be74ca0d43e5b02862a05f5d6972614d7433acdc66
f7f31
]]></artwork>
          </section>
          <section anchor="output-values-5">
            <name>Output Values</name>
            <artwork><![CDATA[
registration_request: 029e949a29cfa0bf7c1287333d2fb3dc586c41aa652f507
0d26a5315a1b50229f8
registration_response: 0350d3694c00978f00a5ce7cd08a00547e4ab5fb5fc2b2
f6717cdaa6c89136efef035f40ff9cf88aa1f5cd4fe5fd3da9ea65a4923a5594f84fd
9f2092d6067784874
registration_upload: 03b218507d978c3db570ca994aaf36695a731ddb2db272c8
17f79746fc37ae52147f0ed53532d3ae8e505ecc70d42d2b814b6b0e48156def71ea0
29148b2803aafa921f2a014513bd8a90e477a629794e89fec12d12206dde662ebdcf6
5670e51f4d7773a36a208a866301dbb2858e40dc5638017527cf91aef32d3848eebe0
971
KE1: 037342f0bcb3ecea754c1e67576c86aa90c1de3875f390ad599a26686cdfee6e
07ab3d33bde0e93eda72392346a7a73051110674bbf6b1b7ffab8be4f91fdaeeb1022
ed3f32f318f81bab80da321fecab3cd9b6eea11a95666dfa6beeaab321280b6
KE2: 0246da9fe4d41d5ba69faa6c509a1d5bafd49a48615a47a8dd4b0823cc147648
1138fe59af0df2c79f57b8780278f5ae47355fe1f817119041951c80f612fdfc6d2f0
c547f70deaeca54d878c14c1aa5e1ab405dec833777132eea905c2fbb12504a67dcbe
0e66740c76b62c13b04a38a77926e19072953319ec65e41f9bfd2ae268d7f10604202
1c80300e4c6f585980cf39fc51a4a6bba41b0729f9b240c729e5671cd9960ecef2fe0
d0f7494986fa3d8b2bb01963537e60efb13981e138e3d4a103c1701353219b53acf33
7bf6456a83cefed8f563f1040b65afbf3b65d3bc9a19b84922c7e5d074838a8f27859
2c53f61fb59f031e85ad480c0c71086b871e1b24
KE3: 46833578cee137775f6be3f01b80748daac5a694101ad0e9e7025480552da56a
export_key: c3c9a1b0e33ac84dd83d0b7e8af6794e17e7a3caadff289fbd9dc769a
853c64b
session_key: 27766fabd8dd88ff37fbd0ef1a491e601d10d9f016c2b28c4bd1b0fb
7511a3c3
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="fake-vectors">
        <name>Fake Test Vectors</name>
        <section anchor="opaque-3dh-fake-test-vector-1">
          <name>OPAQUE-3DH Fake Test Vector 1</name>
          <section anchor="configuration-6">
            <name>Configuration</name>
            <artwork><![CDATA[
OPRF: ristretto255-SHA512
Hash: SHA512
KSF: Identity
KDF: HKDF-SHA512
MAC: HMAC-SHA512
Group: ristretto255
Context: 4f50415155452d504f43
Nh: 64
Npk: 32
Nsk: 32
Nm: 64
Nx: 64
Nok: 32
]]></artwork>
          </section>
          <section anchor="input-values-6">
            <name>Input Values</name>
            <artwork><![CDATA[
client_identity: 616c696365
server_identity: 626f62
oprf_seed: 743fc168d1f826ad43738933e5adb23da6fb95f95a1b069f0daa0522d0
a78b617f701fc6aa46d3e7981e70de7765dfcd6b1e13e3369a582eb8dc456b10aa53b
0
credential_identifier: 31323334
masking_nonce: 9c035896a043e70f897d87180c543e7a063b83c1bb728fbd189c61
9e27b6e5a6
client_private_key: 2b98980aa95ab53a0f39f0291903d2fdf04b00c167f081416
9922df873002409
client_public_key: 84f43f9492e19c22d8bdaa4447cc3d4db1cdb5427a9f852c47
07921212c36251
server_private_key: c788585ae8b5ba2942b693b849be0c0426384e41977c18d2e
81fbe30fd7c9f06
server_public_key: 825f832667480f08b0c9069da5083ac4d0e9ee31b49c4e0310
031fea04d52966
server_nonce: 1e10f6eeab2a7a420bf09da9b27a4639645622c46358de9cf7ae813
055ae2d12
client_keyshare_seed: a270dc715dc2b4612bc7864312a05c3e9788ee1bad1f276
d1e15bdeb4c355e94
server_keyshare_seed: 360b0937f47d45f6123a4d8f0d0c0814b6120d840ebb8bc
5b4f6b62df07f78c2
masking_key: 39ebd51f0e39a07a1c2d2431995b0399bca9996c5d10014d6ebab445
3dc10ce5cef38ed3df6e56bfff40c2d8dd4671c2b4cf63c3d54860f31fe40220d690b
b71
KE1: b0a26dcaca2230b8f5e4b1bcab9c84b586140221bb8b2848486874b0be448905
42d4e61ed3f8d64cdd3b9d153343eca15b9b0d5e388232793c6376bd2d9cfd0ab641d
7f20a245a09f1d4dbb6e301661af7f352beb0791d055e48d3645232f77f
]]></artwork>
          </section>
          <section anchor="output-values-6">
            <name>Output Values</name>
            <artwork><![CDATA[
KE2: 928f79ad8df21963e91411b9f55165ba833dea918f441db967cdc09521d22925
9c035896a043e70f897d87180c543e7a063b83c1bb728fbd189c619e27b6e5a632b5a
b1bff96636144faa4f9f9afaac75dd88ea99cf5175902ae3f3b2195693f165f11929b
a510a5978e64dcdabecbd7ee1e4380ce270e58fea58e6462d92964a1aaef72698bca1
c673baeb04cc2bf7de5f3c2f5553464552d3a0f7698a9ca7f9c5e70c6cb1f706b2f17
5ab9d04bbd13926e816b6811a50b4aafa9799d5ed7971e10f6eeab2a7a420bf09da9b
27a4639645622c46358de9cf7ae813055ae2d1298251c5ba55f6b0b2d58d9ff0c88fe
4176484be62a96db6e2a8c4d431bd1bf27fe6c1d0537603835217d42ebf7b25819827
32e74892fd28211b31ed33863f0beaf75ba6f59474c0aaf9d78a60a9b2f4cd24d7ab5
4131b3c8efa192df6b72db4c
]]></artwork>
          </section>
        </section>
        <section anchor="opaque-3dh-fake-test-vector-2">
          <name>OPAQUE-3DH Fake Test Vector 2</name>
          <section anchor="configuration-7">
            <name>Configuration</name>
            <artwork><![CDATA[
OPRF: ristretto255-SHA512
Hash: SHA512
KSF: Identity
KDF: HKDF-SHA512
MAC: HMAC-SHA512
Group: curve25519
Context: 4f50415155452d504f43
Nh: 64
Npk: 32
Nsk: 32
Nm: 64
Nx: 64
Nok: 32
]]></artwork>
          </section>
          <section anchor="input-values-7">
            <name>Input Values</name>
            <artwork><![CDATA[
client_identity: 616c696365
server_identity: 626f62
oprf_seed: 66e650652a8266b2205f31fdd68adeb739a05b5e650b19e7edc75e734a
1296d6088188ca46c31ae8ccbd42a52ed338c06e53645387a7efbc94b6a0449526155
e
credential_identifier: 31323334
masking_nonce: 9c035896a043e70f897d87180c543e7a063b83c1bb728fbd189c61
9e27b6e5a6
client_private_key: 288bf63470199221847bb035d99f96531adf8badd14cb1571
b48f7a506649660
client_public_key: 3c64a3153854cc9f0c23aab3c1a19106ec8bab4730736d1d00
3880a1d5a59005
server_private_key: 30fbe7e830be1fe8d2187c97414e3826040cbe49b893b6422
9bab5e85a588846
server_public_key: 78b3040047ff26572a7619617601a61b9c81899bee92f00cfc
aa5eed96863555
server_nonce: 1e10f6eeab2a7a420bf09da9b27a4639645622c46358de9cf7ae813
055ae2d12
client_keyshare_seed: a270dc715dc2b4612bc7864312a05c3e9788ee1bad1f276
d1e15bdeb4c355e94
server_keyshare_seed: 360b0937f47d45f6123a4d8f0d0c0814b6120d840ebb8bc
5b4f6b62df07f78c2
masking_key: 79ad2621b0757a447dff7108a8ae20a068ce67872095620f415ea611
c9dcc04972fa359538cd2fd6528775ca775487b2b56db642049b8a90526b975a38484
c6a
KE1: b0a26dcaca2230b8f5e4b1bcab9c84b586140221bb8b2848486874b0be448905
42d4e61ed3f8d64cdd3b9d153343eca15b9b0d5e388232793c6376bd2d9cfd0ac059b
7ba2aec863933ae48816360c7a9022e83d822704f3b0b86c0502a66e574
]]></artwork>
          </section>
          <section anchor="output-values-7">
            <name>Output Values</name>
            <artwork><![CDATA[
KE2: 6606b6fedbb33f19a81a1feb5149c600fe77252f58acd3080d7504d3dad4922f
9c035896a043e70f897d87180c543e7a063b83c1bb728fbd189c619e27b6e5a67db39
8c0f65d8c298eac430abdae4c80e82b552fb940c00f0cbcea853c0f96c1c15099f3d4
b0e83ecc249613116d605b8d77bb68bdf76994c2bc507e2dcae4176f00afed68ad25c
f3040a0e991acece31ca532117f5c12816997372ff031ad04ebcdce06c501da24e7b4
db95343456e2ed260895ec362694230a1fa20e24a9c71e10f6eeab2a7a420bf09da9b
27a4639645622c46358de9cf7ae813055ae2d122d9055eb8f83e1b497370adad5cc2a
417bf9be436a792def0c7b7ccb92b9e275d7c663104ea4655bd70570d975c05351655
d55fbfb392286edb55600a23b55ce18f8c60e0d1960c960412dd08eabc81ba7ca8ae2
b04aad65462321f51c298010
]]></artwork>
          </section>
        </section>
        <section anchor="opaque-3dh-fake-test-vector-3">
          <name>OPAQUE-3DH Fake Test Vector 3</name>
          <section anchor="configuration-8">
            <name>Configuration</name>
            <artwork><![CDATA[
OPRF: P256-SHA256
Hash: SHA256
KSF: Identity
KDF: HKDF-SHA256
MAC: HMAC-SHA256
Group: P256_XMD:SHA-256_SSWU_RO_
Context: 4f50415155452d504f43
Nh: 32
Npk: 33
Nsk: 32
Nm: 32
Nx: 32
Nok: 32
]]></artwork>
          </section>
          <section anchor="input-values-8">
            <name>Input Values</name>
            <artwork><![CDATA[
client_identity: 616c696365
server_identity: 626f62
oprf_seed: bb1cd59e16ac09bc0cb6d528541695d7eba2239b1613a3db3ade77b362
80f725
credential_identifier: 31323334
masking_nonce: 9c035896a043e70f897d87180c543e7a063b83c1bb728fbd189c61
9e27b6e5a6
client_private_key: d423b87899fc61d014fc8330a4e26190fcfa470a3afe59243
24294af7dbbc1dd
client_public_key: 03b81708eae026a9370616c22e1e8542fe9dbebd36ce8a2661
b708e9628f4a57fc
server_private_key: 34fbe7e830be1fe8d2187c97414e3826040cbe49b893b6422
9bab5e85a5888c7
server_public_key: 0221e034c0e202fe883dcfc96802a7624166fed4cfcab4ae30
cf5f3290d01c88bf
server_nonce: 1e10f6eeab2a7a420bf09da9b27a4639645622c46358de9cf7ae813
055ae2d12
client_keyshare_seed: a270dc715dc2b4612bc7864312a05c3e9788ee1bad1f276
d1e15bdeb4c355e94
server_keyshare_seed: 360b0937f47d45f6123a4d8f0d0c0814b6120d840ebb8bc
5b4f6b62df07f78c2
masking_key: caecc6ccb4cae27cb54d8f3a1af1bac52a3d53107ce08497cdd362b1
992e4e5e
KE1: 0396875da2b4f7749bba411513aea02dc514a48d169d8a9531bd61d3af3fa9ba
ae42d4e61ed3f8d64cdd3b9d153343eca15b9b0d5e388232793c6376bd2d9cfd0a021
47a6583983cc9973b5082db5f5070890cb373d70f7ac1b41ed2305361009784
]]></artwork>
          </section>
          <section anchor="output-values-8">
            <name>Output Values</name>
            <artwork><![CDATA[
KE2: 0201198dcd13f9792eb75dcfa815f61b049abfe2e3e9456d4bbbceec5f442efd
049c035896a043e70f897d87180c543e7a063b83c1bb728fbd189c619e27b6e5a6fac
da65ce0a97b9085e7af07f61fd3fdd046d257cbf2183ce8766090b8041a8bf28d79dd
4c9031ddc75bb6ddb4c291e639937840e3d39fc0d5a3d6e7723c09f7945df485bcf9a
efe3fe82d149e84049e259bb5b33d6a2ff3b25e4bfb7eff0962821e10f6eeab2a7a42
0bf09da9b27a4639645622c46358de9cf7ae813055ae2d12023f82bbb24e75b8683fd
13b843cd566efae996cd0016cffdcc24ee2bc937d026f80144878749a69565b433c10
40aff67e94f79345de888a877422b9bbe21ec329
]]></artwork>
          </section>
        </section>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
