<?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.19 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-irtf-cfrg-opaque-17" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.1 -->
  <front>
    <title abbrev="OPAQUE">The OPAQUE Augmented PAKE Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-opaque-17"/>
    <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="2024" month="September" day="27"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 258?>

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

<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>Augmented (or Asymmetric) 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"/>. This document represents the consensus of the Crypto Forum
Research Group (CFRG). It is not an IETF product and is not a standard.</t>
      <section 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
Section 3 of <xref 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
as <tt>modeOPRF</tt> (<tt>0x00</tt>) from Section 3.1 of <xref target="RFC9497"/>.</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 Section 3.3.1 of <xref target="RFC9497"/>, 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> and <tt>info</tt> parameter, as described in Section 3.2 of <xref target="RFC9497"/>.</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 Section 2.1 of <xref target="RFC9497"/>
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 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 a different seed for each client
(i.e. each client can be assigned a single seed), 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="registration">
        <name>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, and the process is described in more detail in
<xref target="registration-phase"/>:</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="registration-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

  cleartext_credentials = CleartextCredentials {
    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 envelope_nonce[Nn];
  uint8 auth_tag[Nm];
} Envelope;
]]></artwork>
          <t>envelope_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
<tt>envelope_nonce</tt> 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))

  envelope = Envelope {
    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="registration-phase">
      <name>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(password,
                                                    blind,
                                                    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"/>
for the justification behind this, along with a description of the exception in which
applications may choose to avoid the use of a global <tt>oprf_seed</tt> value across clients
and instead sample OPRF keys uniquely for each client. 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 negligible 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)
  request = RegistrationRequest {
    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, applications 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)

  response = RegistrationResponse {
    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)

  record = RegistrationRecord {
    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="registration-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 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)

  ke2 = KE2 {
    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 negligible 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)
  request = CredentialRequest {
    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))

  response = CredentialResponse {
    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 Section 3.2 of <xref target="RFC9497"/>. The public value from DeriveKeyPair
is encoded using SerializeElement from Section 2.1 of <xref target="RFC9497"/>.</t>
              </li>
              <li>
                <t>DiffieHellman(k, B): Implemented as scalar multiplication as described in
Section 4 of <xref target="RISTRETTO"/> after decoding <tt>B</tt> from its encoded input using
the Decode function in Section 4.3.1 of <xref target="RISTRETTO"/>. The output is then
encoded using the SerializeElement function of the OPRF group described in
Section 2.1 of <xref target="RFC9497"/>.</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 Section 3.2 of <xref target="RFC9497"/>. The public value from DeriveKeyPair
is encoded using SerializeElement from Section 2.1 of <xref target="RFC9497"/>.</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 Section 2.1 of <xref target="RFC9497"/>.</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 Section 5 of <xref 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 Section 5 of <xref 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)

  auth_request = AuthRequest {
    client_nonce,
    client_public_keyshare
  }

  ke1 = KE1 {
    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)))
  ke3 = KE3 {
    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

  auth_response = AuthResponse {
    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 <tt>modeOPRF</tt> configuration of Section 3.1 of <xref target="RFC9497"/> 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="registration-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 that 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
that 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>
        <li>
          <t>Handling password changes: In the event of a password change, the client and
server can run the registration phase using the new password as a
fresh instance (ensuring to resample all random values). The resulting
registration record can then replace the previous record corresponding to
the client's old password registration.</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="registration-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. Furthermore, it is RECOMMENDED to incorporate
<tt>server_identity</tt> alongside the password as input to the OPRF. These
additions provide domain separation for clients and servers; see
<xref target="security-analysis"/>.</t>
      </section>
      <section anchor="handling-online-guessing-attacks">
        <name>Handling Online Guessing Attacks</name>
        <t>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>
        <t>Additionally, note that a client participating in the online login stage
will learn whether or not authentication is successful after receiving the
<tt>KE2</tt> message. This means that the server should treat any client which fails to
send a subsequent <tt>KE3</tt> message as an authentication failure. This can be handled
in applications that wish to track authentication failures by, for example,
assuming by default that any client authentication attempt is a failure unless a <tt>KE3</tt>
message is received by the server and passes <tt>ServerFinish</tt> without error.</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>
      </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-06"/>, 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="registration-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. Note that the derivation of the
OPRF key via a PRF keyed by <tt>oprf_seed</tt> and applied to the unique
<tt>credential_identifier</tt> ensures the critical requirement of the per-user OPRF keys
being unique per client.</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 AKE describes a 3-message protocol where the third message includes client
authentication material that the server is required to verify. This change
(from the original 2-message protocol) was made to provide explicit client
authentication and full forward security. The 3-message protocol is analyzed
in <xref target="JKX18Full"/>.</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 dictionary 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-06"/> 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
Section 2.1 of <xref target="RFC9497"/>. This specification also delegates OPRF group
choice and operations to Section 4 of <xref target="RFC9497"/>. 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 Section 3.3.1 of <xref target="RFC9497"/>, which
is identical to the DH-OPRF functionality in <xref target="JKX18"/> and, concretely, uses
the hash-to-curve functions in <xref target="RFC9380"/>. All hash-to-curve
methods in <xref target="RFC9380"/> 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-06"/> 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-06"/>, 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-06"/> 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>
        <t>As stated in <xref target="implementation-safeguards"/>, incorporating <tt>client_identity</tt>
adds domain separation, in particular against servers that choose the same
OPRF key for multiple clients. The <tt>client_identity</tt> as input to the OPRF
also acts as a key identifier that would be required for a proof of the
protocol in the multi-key setting; the OPAQUE analysis in <xref target="JKX18"/> assumes
single server-key instances. Adding <tt>server_identity</tt> to the OPRF input
provides domain separation for clients that reuse the same <tt>client_identity</tt>
across different server instantiations.</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 Section 7.2.3 of <xref target="RFC9497"/> 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
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 on 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 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>
        <t>Finally, applications that do not require protection against
client enumeration attacks can choose to derive independent OPRF keys for different
clients. The advantage to using independently-derived OPRF keys is that the server
avoids keeping the <tt>oprf_seed</tt> value across different clients, which if leaked would
compromise the security for all clients reliant on <tt>oprf_seed</tt>, as noted in <xref target="DL24"/>.</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 for 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 to enforce password
rules. Doing so invalidates this important security property of OPAQUE and is
NOT RECOMMENDED, unless it is not possible for applications to 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 anchor="client-authentication-using-credentials">
        <name>Client Authentication Using Credentials</name>
        <t>For scenarios in which the client has access to private state that can be persisted across
registration and login, the client can back up the <tt>randomized_password</tt> variable (as
computed in <xref target="finalize-request"/>) so that upon a future login attempt, the client can
authenticate to the server using <tt>randomized_password</tt> instead of the original password.
This can be achieved by supplying an arbitrary password as input to
<tt>CreateCredentialRequest</tt> in the login phase, and then using <tt>randomized_password</tt> from
the backup in <tt>RecoverCredentials</tt> (invoked by <tt>GenerateKE3</tt>) rather than computing it from
the password.</t>
        <t>This provides an advantage over the regular authentication flow for login
in that if <tt>randomized_password</tt> is compromised, an adversary cannot use this value to
successfully impersonate the server to the client during login. The drawback is that it is
only applicable to settings where <tt>randomized_password</tt> can be treated as a credential
which can be stored securely after registration and retrieved upon login.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document makes no IANA requests.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-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="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="RFC9497">
          <front>
            <title>Oblivious Pseudorandom Functions (OPRFs) Using Prime-Order Groups</title>
            <author fullname="A. Davidson" initials="A." surname="Davidson"/>
            <author fullname="A. Faz-Hernandez" initials="A." surname="Faz-Hernandez"/>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <author fullname="C. A. Wood" initials="C. A." surname="Wood"/>
            <date month="December" year="2023"/>
            <abstract>
              <t>An Oblivious Pseudorandom Function (OPRF) is a two-party protocol between a client and a 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="RFC" value="9497"/>
          <seriesInfo name="DOI" value="10.17487/RFC9497"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.krawczyk-cfrg-opaque-06" target="https://datatracker.ietf.org/doc/html/draft-krawczyk-cfrg-opaque-06">
          <front>
            <title>The OPAQUE Asymmetric PAKE Protocol</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="DL24">
          <front>
            <title>(Strong) aPAKE Revisited: Capturing Multi-User Security and Salting</title>
            <author initials="D." surname="Dayanikli" fullname="Dennis Dayanikli">
              <organization/>
            </author>
            <author initials="A." surname="Lehmann" fullname="Anja Lehmann">
              <organization/>
            </author>
            <date year="2024"/>
          </front>
          <seriesInfo name="https://eprint.iacr.org/2024/756" 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="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="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="JKX18Full">
          <front>
            <title>OPAQUE: An Asymmetric PAKE Protocol Secure Against Pre-Computation Attacks (Full Version)</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="https://eprint.iacr.org/2018/163" 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="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 year="2013"/>
          </front>
          <seriesInfo name="DOI" value="10.6028/nist.fips.186-4"/>
          <refcontent>National Institute of Standards and Technology (U.S.)</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.1</title>
            <author fullname="K. Moriarty" initials="K." role="editor" surname="Moriarty"/>
            <author fullname="B. Kaliski" initials="B." surname="Kaliski"/>
            <author fullname="A. Rusch" initials="A." surname="Rusch"/>
            <date month="January" year="2017"/>
            <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.</t>
              <t>This document represents a republication of PKCS #5 v2.1 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 2898.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8018"/>
          <seriesInfo name="DOI" value="10.17487/RFC8018"/>
        </reference>
        <reference anchor="RFC9380">
          <front>
            <title>Hashing to Elliptic Curves</title>
            <author fullname="A. Faz-Hernandez" initials="A." surname="Faz-Hernandez"/>
            <author fullname="S. Scott" initials="S." surname="Scott"/>
            <author fullname="N. Sullivan" initials="N." surname="Sullivan"/>
            <author fullname="R. S. Wahby" initials="R. S." surname="Wahby"/>
            <author fullname="C. A. Wood" initials="C. A." surname="Wood"/>
            <date month="August" year="2023"/>
            <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="RFC" value="9380"/>
          <seriesInfo name="DOI" value="10.17487/RFC9380"/>
        </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 2414?>

<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, Stefan Marsiske, Payman Mohassel, Marta Mularczyk,
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 similarly 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. 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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
N6/VDYEEcKtAJy2xqUWOF2Nljw6X7TlpI4eM65UXVqOs1fcdhN4cDdJdFcen
8gX4RBw/SBCi/3Fcr8rgE4bGzXdhkxgvEUE4nd8pxV0SMhKo54P2poLjH5JP
TxpUKFgnhRMkNuliwA4m2BG0vkXI2OYMUGSfcahMN5K44gBgEam1iFnxpaEy
gPkdW9E79eqquz1F6s4wCq8+79b5cxhZWW6ds6s12Bc1EMR3zZHgpLeus+2s
7HuX83aMN10OgY8uZxZWpqxXtrkkwFlFcs5NmIjf7kYPcXnsnu0jWv2CgCN6
qKSsEyVyffPKmdPW62oDN9SKlaB79FvW88mRQcv0YAe6jzeQAwnV2xKETw6Z
PQN32jQN7E5Qe6tCiLiFLDHSR1pgaegQg2l8LJR5x0fFn4w4X9XBe2hI7LCc
Yu/lc9Dt8EW9fJSNBnpf+AsLcqSdovYnxBKY8GgiX/i4NL+1B56flQSxwPg9
CSUJy2169VSlV3pid1p2Rf7FvGls8SOMnPc2YEOYdIEtd+Fz2V4U6x2miBFz
DXyuvKDvukHMlMyFx8bvwCdkJzS/yGFPJXpO0SHaTUGqh8zTtoDi7neMtzW2
Xhn9iDZKOICtcNueCcP1ZZWzMXKNTsMnP6m8HVzKtnBvL12he5fRg4IhERQL
9jZBHFYxh0+pgWER8kp7jXouduW4l0Ur6Q3h3kkdgtyjSLqvviFh6VKywtRv
4QP6pCiv8G4KSxQzLLqdUbRI1bUJsI/tuv6Odh8lyk+w7/Xxev3k6An7aN+J
q85ZeX4/HedntVos3LnK1uBzUAHe6KbDOsQyekEML1sPdwM+AkEc7BYiFJsW
9FFjcv1gW1VQWVdv18w4lWS59J1KnGZDm9KyCUh1oi4z6E9U66cwittN+3g6
WxHEQuun+uS9THdZ1RbWtGwOmZmAsVJE9tqOmgFIN0Zj2RBR1fSgq6DZxPDn
UfIoZzdDtEWb0ue7DHjHnRRmQh42sZuZEsPWMFHdRn5vna0IwUlA7ZDyh16G
Ujtmxe2t3MW9uoFod23b7BKQIxUP2eGO1VUHV2MS1Qwrr8Odv0IfzCCYZd+D
owlTjXhOrUgh1dK6CKkrYbEB+nftTw31xh6W8+GEd9Sem8ubDFtwNuEUEsdA
HdNqBxG7qkMK0GSbVYanktcr36qjjVnBrthjxoBDjeYggjmnbOR0TsNNAukn
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
wbfXprl3L1yT9fi65m5q376JJ9nokkspJr/494nB/Jyb5Wh+/j+/fvsmePPz
3979/fXt5T/c/vrN7dVLUV1dut919nvt1dXr90sN377humFZ78uwo62V4ikz
Ru9HtnaXHHcsZyQbjjut22N7LDNnm4c1KfZy1swp8B7XbT2+lO19SHWMPrbP
p/pwZq9+lhrrbr2knN2Je6aVpmu1bXPMs99wQR9c8CGEeL8QilEJ+RRffE45
lBjr9VPIKfrsSiwxJ35uid/xs800zbyrCdxs3Ns3fbrgihv+uDImDYutlWPP
3G67E9LYM4/mzvbb+TUWbVjehNFLD3WdPc072Li7YKhnp9aPXYertZPKqKVa
X+pJndELKR2uXLmpa8xpS25Wa052/qwz8/sd9+9BlJ6WmFyvdMWfOgJ/bx/b
KiNFV6ulgcPVvdbmVi0OgmP70aMfaY/aaMzTffxv39DpXfppJ9Y5k/XLulx8
W7zs01yLUKAPcUzayRwP301g7toobTHBpZqHlvjtm+Lmai3bPffhGnbZw3DG
xrz0sOrwY1jX8tV63kWTQ6tuGxfqDit29+6chrvrrV62LaHkxf+ODXGe3sbg
48u5UZmY6EOdxARxsRzBuMcI1djZd+55znfXe+e872K8+ppsz63w+Z5sOmnk
eubqzDqX04UOI1f5Rw7zGMf4thAY6hZysHG86/cH17Wpk6fR27z3caN7JjWN
aXvnhnN4f3ym5SmMNKLtxu2azql2dea+VX8Mc/Pf66uHEoNRzfMMJirVNWqN
Q30kpcgFbtGOS614ekyQxe67LdZ0EmK16Vcm66y7u+r1/BZI2HM65toz9WWe
2EiN3omksYmklHJpnrmYK9tOxPW6yP20ohm2NBtsfYQkD/TSQ0B5wsXqRq8x
xRxnrj0RY2WDK2TwGI6/ydLhygrkma9tztGZvQ7UlD7TDLmka9nF7Vp5Kg9d
Pq6u4nvrzZdeg2vtdJqYcyA557bTkRd9Azu9N2tDKcFYIvLMlNKMi7va7GmW
y+SO458TvMhpFH7f42bYlwfAdGHQg19lUqx6b555Bg+W9Ekm+dSHDXkHW5Kt
oa3gVt4lWEI5xjkIgEQXzyiGXjTmswUPFq69ewlLSOiZRwCoJZK9j070g76F
YJo0slVNT02E2JlMv6FjbrkYmPN7ePtMYLvhmrmALYc4LKlBgNgmcO5CsdWT
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

-->

</rfc>
