<?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.29 (Ruby 3.4.7) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-pham-cfrg-hiae-03" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.29.0 -->
  <front>
    <title abbrev="HiAE">The HiAE Authenticated Encryption Algorithm</title>
    <seriesInfo name="Internet-Draft" value="draft-pham-cfrg-hiae-03"/>
    <author initials="F." surname="Denis" fullname="Frank Denis">
      <organization>Fastly Inc.</organization>
      <address>
        <email>fd@00f.net</email>
      </address>
    </author>
    <author initials="P." surname="Pham" fullname="Phuong Pham">
      <organization>Huawei</organization>
      <address>
        <email>pham.phuong@huawei.com</email>
      </address>
    </author>
    <author initials="L." surname="Prabel" fullname="Lucas Prabel">
      <organization>Huawei</organization>
      <address>
        <email>lucas.prabel@huawei.com</email>
      </address>
    </author>
    <author initials="S." surname="Sun" fullname="Shuzhou Sun">
      <organization>Huawei</organization>
      <address>
        <email>sunshuzhou@huawei.com</email>
      </address>
    </author>
    <date year="2025" month="November" day="13"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 168?>

<t>This document describes HiAE, a high-throughput authenticated encryption algorithm designed for next-generation wireless systems (6G) and high-speed data transmission applications.</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/hiae-aead/draft-pham-hiae"/>.</t>
    </note>
  </front>
  <middle>
    <?line 172?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>The evolution of wireless networks toward 6G, alongside the growing demands of cloud service providers and CDN operators, requires cryptographic algorithms capable of delivering unprecedented throughput while maintaining strong security guarantees. Current high-performance authenticated encryption schemes achieve impressive speeds by leveraging platform-specific SIMD instructions, particularly AES-NI on x86 architectures <xref target="AES-NI"/>. Notable examples include AEGIS <xref target="I-D.irtf-cfrg-aegis-aead"/>, SNOW-V <xref target="SNOW-V"/>, and Rocca-S <xref target="ROCCA-S"/>.</t>
      <t>While these platform-specific optimizations deliver high performance on their target architectures, they create a significant performance disparity across different hardware platforms. These algorithms excel on x86 processors equipped with AES-NI but exhibit substantially degraded performance on ARM architectures that implement SIMD functionality through NEON instructions. This inconsistency poses a critical challenge for modern network deployments where ARM processors dominate mobile devices, edge computing nodes, and increasingly, data center environments.</t>
      <t>The architectural differences between x86 and ARM extend beyond instruction set variations. They encompass fundamental distinctions in how AES round functions are implemented in hardware, pipeline structures, and memory subsystems. These differences mean that algorithms optimized for one architecture may inadvertently create bottlenecks on another, resulting in unpredictable performance characteristics across heterogeneous deployments.</t>
      <t>The transition to 6G networks amplifies these challenges. Next-generation wireless systems will rely heavily on software-defined networking (SDN) and cloud radio access networks (Cloud RAN), requiring cryptographic algorithms that perform consistently across diverse hardware platforms. The stringent latency requirements and massive data rates anticipated for 6G, potentially exceeding 1 Tbps, demand encryption schemes that can leverage the full capabilities of both x86 and ARM architectures without compromise.</t>
      <t>This document presents HiAE (High-throughput Authenticated Encryption), an authenticated encryption algorithm explicitly designed to address these cross-platform performance challenges. Through careful algorithmic design, HiAE delivers high performance on both x86 and ARM architectures by efficiently utilizing the capabilities of each platform without being overly dependent on architecture-specific features.</t>
      <t>The remainder of this document is organized as follows: Section 2 establishes notation and conventions. Section 3 provides the complete specification of the HiAE algorithm for authenticated encryption. Section 4 describes encoding of ciphertext and authentication tags. Section 5 details alternative operating modes as a stream cipher and MAC. Section 6 analyzes security considerations, while Section 7 discusses implementation aspects. The appendix provides comprehensive test vectors for validation.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words “<bcp14>MUST</bcp14>”, “<bcp14>MUST NOT</bcp14>”, “<bcp14>REQUIRED</bcp14>”, “<bcp14>SHALL</bcp14>”, “<bcp14>SHALL
NOT</bcp14>”, “<bcp14>SHOULD</bcp14>”, “<bcp14>SHOULD NOT</bcp14>”, “<bcp14>RECOMMENDED</bcp14>”, “<bcp14>NOT RECOMMENDED</bcp14>”,
“<bcp14>MAY</bcp14>”, and “<bcp14>OPTIONAL</bcp14>” in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

<t>Throughout this document, “byte” is used interchangeably with “octet” and refers to an 8-bit sequence.</t>
      <t>Basic operations:</t>
      <ul spacing="normal">
        <li>
          <t><tt>{}</tt>: an empty bit array.</t>
        </li>
        <li>
          <t><tt>|x|</tt>: the length of <tt>x</tt> in bits.</t>
        </li>
        <li>
          <t><tt>a ^ b</tt>: the bitwise exclusive OR operation between <tt>a</tt> and <tt>b</tt>.</t>
        </li>
        <li>
          <t><tt>a || b</tt>: the concatenation of <tt>a</tt> and <tt>b</tt>.</t>
        </li>
        <li>
          <t><tt>a mod b</tt>: the remainder of the Euclidean division between <tt>a</tt> as the dividend and <tt>b</tt> as the divisor.</t>
        </li>
      </ul>
      <t>Data manipulation:</t>
      <ul spacing="normal">
        <li>
          <t><tt>LE64(x)</tt>: returns the little-endian encoding of unsigned 64-bit integer <tt>x</tt>.</t>
        </li>
        <li>
          <t><tt>ZeroPad(x, n)</tt>: returns <tt>x</tt> after appending zeros until its length is a multiple of <tt>n</tt> bits. No padding is added if the length of <tt>x</tt> is already a multiple of <tt>n</tt>, including when <tt>x</tt> is empty.</t>
        </li>
        <li>
          <t><tt>Truncate(x, n)</tt>: returns the first <tt>n</tt> bits of <tt>x</tt>.</t>
        </li>
        <li>
          <t><tt>Tail(x, n)</tt>: returns the last <tt>n</tt> bits of <tt>x</tt>.</t>
        </li>
        <li>
          <t><tt>Split(x, n)</tt>: returns <tt>x</tt> split into <tt>n</tt>-bit blocks, ignoring partial blocks.</t>
        </li>
      </ul>
      <t>Cryptographic operations:</t>
      <ul spacing="normal">
        <li>
          <t><tt>AESL(x)</tt>: A single AES round function without key addition. Given a 128-bit AES state <tt>x</tt>, this function applies the following AES transformations in sequence:
          </t>
          <ol spacing="normal" type="1"><li>
              <t>SubBytes: Apply the AES S-box to each byte</t>
            </li>
            <li>
              <t>ShiftRows: Cyclically shift the rows of the state</t>
            </li>
            <li>
              <t>MixColumns: Mix the columns of the state</t>
            </li>
          </ol>
          <t>
Formally: <tt>AESL(x) = MixColumns(ShiftRows(SubBytes(x)))</tt>  </t>
          <t>
These transformations are as specified in Section 5 of <xref target="FIPS-AES"/>. This is NOT the full AES encryption algorithm. It is a single round without the AddRoundKey operation (equivalent to using a zero round key). A test vector for this function is provided in the Test Vectors section.</t>
        </li>
      </ul>
      <t>Control flow and comparison:</t>
      <ul spacing="normal">
        <li>
          <t><tt>Repeat(n, F)</tt>: <tt>n</tt> sequential evaluations of the function <tt>F</tt>.</t>
        </li>
        <li>
          <t><tt>CtEq(a, b)</tt>: compares <tt>a</tt> and <tt>b</tt> in constant-time, returning <tt>True</tt> for an exact match and <tt>False</tt> otherwise.</t>
        </li>
      </ul>
      <t>AES blocks:</t>
      <ul spacing="normal">
        <li>
          <t><tt>Si</tt>: the <tt>i</tt>-th AES block of the current state.</t>
        </li>
        <li>
          <t><tt>S'i</tt>: the <tt>i</tt>-th AES block of the next state.</t>
        </li>
        <li>
          <t><tt>{Si, ...Sj}</tt>: the vector of the <tt>i</tt>-th AES block of the current state to the <tt>j</tt>-th block of the current state.</t>
        </li>
        <li>
          <t><tt>C0</tt>: an AES block built from the following bytes in hexadecimal format: <tt>{ 0x32, 0x43, 0xf6, 0xa8, 0x88, 0x5a, 0x30, 0x8d, 0x31, 0x31, 0x98, 0xa2, 0xe0, 0x37, 0x07, 0x34 }</tt>.</t>
        </li>
        <li>
          <t><tt>C1</tt>: an AES block built from the following bytes in hexadecimal format: <tt>{ 0x4a, 0x40, 0x93, 0x82, 0x22, 0x99, 0xf3, 0x1d, 0x00, 0x82, 0xef, 0xa9, 0x8e, 0xc4, 0xe6, 0xc8 }</tt>.</t>
        </li>
      </ul>
      <t>The constants C0 and C1 are domain separation constants derived from the fractional parts of π and e, respectively.</t>
      <t>Input and output values:</t>
      <ul spacing="normal">
        <li>
          <t><tt>key</tt>: the encryption key (256 bits).</t>
        </li>
        <li>
          <t><tt>nonce</tt>: the public nonce (128 bits).</t>
        </li>
        <li>
          <t><tt>ad</tt>: the associated data.</t>
        </li>
        <li>
          <t><tt>msg</tt>: the plaintext.</t>
        </li>
        <li>
          <t><tt>ct</tt>: the ciphertext.</t>
        </li>
        <li>
          <t><tt>tag</tt>: the authentication tag (128 bits).</t>
        </li>
      </ul>
    </section>
    <section anchor="the-hiae-algorithm">
      <name>The HiAE Algorithm</name>
      <t>This section provides the complete specification of HiAE. The algorithm operates on a 2048-bit internal state organized as sixteen 128-bit blocks, combining AES round functions with an efficient update mechanism to achieve both high security and cross-platform performance.</t>
      <section anchor="algorithm-parameters">
        <name>Algorithm Parameters</name>
        <t>HiAE maintains a 2048-bit state organized as sixteen 128-bit blocks denoted <tt>{S0, S1, S2, ..., S15}</tt>. Each block Si represents a 128-bit AES state that can be processed independently by AES round functions. This large state size provides security margins while enabling efficient parallel processing on modern architectures.</t>
        <t>The parameters for this algorithm, whose meaning is defined in <xref section="4" sectionFormat="comma" target="RFC5116"/>, are:</t>
        <ul spacing="normal">
          <li>
            <t><tt>K_LEN</tt> (key length) is 32 bytes (256 bits).</t>
          </li>
          <li>
            <t><tt>P_MAX</tt> (maximum length of the plaintext) is 2<sup>61</sup> - 1 bytes (2<sup>64</sup> - 8 bits).</t>
          </li>
          <li>
            <t><tt>A_MAX</tt> (maximum length of the associated data) is 2<sup>61</sup> - 1 bytes (2<sup>64</sup> - 8 bits).</t>
          </li>
          <li>
            <t><tt>N_MIN</tt> (minimum nonce length) = <tt>N_MAX</tt> (maximum nonce length) = 16 bytes (128 bits).</t>
          </li>
          <li>
            <t><tt>C_MAX</tt> (maximum ciphertext length) = <tt>P_MAX</tt> + tag length = (2<sup>61</sup> - 1) + 16 bytes (in bits: (2<sup>64</sup> - 8) + 128 bits).</t>
          </li>
        </ul>
        <t>Distinct associated data inputs, as described in <xref section="3" sectionFormat="comma" target="RFC5116"/>, <bcp14>MUST</bcp14> be unambiguously encoded as a single input.
It is up to the application to create a structure in the associated data input if needed.</t>
      </section>
      <section anchor="authenticated-encryption">
        <name>Authenticated Encryption</name>
        <artwork><![CDATA[
Encrypt(msg, ad, key, nonce)
]]></artwork>
        <t>The <tt>Encrypt</tt> function encrypts a message and returns the ciphertext along with an authentication tag that verifies the authenticity of the message and associated data, if provided.</t>
        <t>Security:</t>
        <ul spacing="normal">
          <li>
            <t>For a given key, the nonce <bcp14>MUST NOT</bcp14> be reused under any circumstances; doing so allows an attacker to recover the internal state.</t>
          </li>
          <li>
            <t>The key <bcp14>MUST</bcp14> be randomly chosen from a uniform distribution.</t>
          </li>
        </ul>
        <t>Inputs:</t>
        <ul spacing="normal">
          <li>
            <t><tt>msg</tt>: the message to be encrypted (length <bcp14>MUST</bcp14> be less than or equal to <tt>P_MAX</tt>).</t>
          </li>
          <li>
            <t><tt>ad</tt>: the associated data to authenticate (length <bcp14>MUST</bcp14> be less than or equal to <tt>A_MAX</tt>).</t>
          </li>
          <li>
            <t><tt>key</tt>: the encryption key.</t>
          </li>
          <li>
            <t><tt>nonce</tt>: the public nonce.</t>
          </li>
        </ul>
        <t>Outputs:</t>
        <ul spacing="normal">
          <li>
            <t><tt>ct</tt>: the ciphertext.</t>
          </li>
          <li>
            <t><tt>tag</tt>: the authentication tag.</t>
          </li>
        </ul>
        <t>Steps:</t>
        <artwork><![CDATA[
Init(key, nonce)

ct = {}

ad_blocks = Split(ZeroPad(ad, 128), 128)
for ai in ad_blocks:
    Absorb(ai)

msg_blocks = Split(ZeroPad(msg, 128), 128)
for xi in msg_blocks:
    ct = ct || Enc(xi)

tag = Finalize(|ad|, |msg|)
ct = Truncate(ct, |msg|)

return (ct, tag)
]]></artwork>
      </section>
      <section anchor="authenticated-decryption">
        <name>Authenticated Decryption</name>
        <artwork><![CDATA[
Decrypt(ct, tag, ad, key, nonce)
]]></artwork>
        <t>The <tt>Decrypt</tt> function decrypts a ciphertext, verifies that the authentication tag is correct, and returns the message on success or an error if tag verification fails.</t>
        <t>Security:</t>
        <ul spacing="normal">
          <li>
            <t>If tag verification fails, the decrypted message and incorrect authentication tag <bcp14>MUST NOT</bcp14> be given as output. The decrypted message <bcp14>MUST</bcp14> be overwritten with zeros before the function returns.</t>
          </li>
          <li>
            <t>The comparison of the input <tt>tag</tt> with the <tt>expected_tag</tt> <bcp14>MUST</bcp14> be done in constant time.</t>
          </li>
        </ul>
        <t>Inputs:</t>
        <ul spacing="normal">
          <li>
            <t><tt>ct</tt>: the ciphertext to decrypt (length <bcp14>MUST</bcp14> be less than or equal to <tt>C_MAX</tt>).</t>
          </li>
          <li>
            <t><tt>tag</tt>: the authentication tag.</t>
          </li>
          <li>
            <t><tt>ad</tt>: the associated data to authenticate (length <bcp14>MUST</bcp14> be less than or equal to <tt>A_MAX</tt>).</t>
          </li>
          <li>
            <t><tt>key</tt>: the encryption key.</t>
          </li>
          <li>
            <t><tt>nonce</tt>: the public nonce.</t>
          </li>
        </ul>
        <t>Outputs:</t>
        <ul spacing="normal">
          <li>
            <t>Either the decrypted message <tt>msg</tt> or an error indicating that the authentication tag is invalid for the given inputs.</t>
          </li>
        </ul>
        <t>Steps:</t>
        <artwork><![CDATA[
Init(key, nonce)

msg = {}

ad_blocks = Split(ZeroPad(ad, 128), 128)
for ai in ad_blocks:
    Absorb(ai)

ct_blocks = Split(ct, 128)
cn = Tail(ct, |ct| mod 128)

for ci in ct_blocks:
    msg = msg || Dec(ci)

if cn is not empty:
    msg = msg || DecPartial(cn)

expected_tag = Finalize(|ad|, |msg|)

if CtEq(tag, expected_tag) is False:
    erase msg
    erase expected_tag
    return "verification failed" error
else:
    return msg
]]></artwork>
      </section>
      <section anchor="core-functions">
        <name>Core Functions</name>
        <t>The following sections describe the fundamental operations that form the building blocks of HiAE. These functions manipulate the 2048-bit state to provide confusion, diffusion, and the absorption of input data.</t>
        <section anchor="the-state-rotation-function">
          <name>The State Rotation Function</name>
          <artwork><![CDATA[
Rol()
]]></artwork>
          <t>The <tt>Rol</tt> function provides diffusion by rotating the sixteen 128-bit blocks of the state one position to the left. This ensures that local changes propagate throughout the entire state over multiple rounds.</t>
          <t>Modifies:</t>
          <ul spacing="normal">
            <li>
              <t><tt>{S0, ...S15}</tt>: the state.</t>
            </li>
          </ul>
          <t>Steps:</t>
          <artwork><![CDATA[
  t = S0
 S0 = S1
 S1 = S2
 S2 = S3
 S3 = S4
 S4 = S5
 S5 = S6
 S6 = S7
 S7 = S8
 S8 = S9
 S9 = S10
S10 = S11
S11 = S12
S12 = S13
S13 = S14
S14 = S15
S15 = t
]]></artwork>
        </section>
        <section anchor="the-state-update-functions">
          <name>The State Update Functions</name>
          <t>The state update functions form the cryptographic core of HiAE. They combine the AESL transformation with XOR operations and state rotation to achieve both security and efficiency.</t>
          <section anchor="the-update-function">
            <name>The Update Function</name>
            <artwork><![CDATA[
Update(xi)
]]></artwork>
            <t>The <tt>Update</tt> function is the core of the HiAE algorithm.
It updates the state <tt>{S0, ...S15}</tt> using a 128-bit value.</t>
            <t>Inputs:</t>
            <ul spacing="normal">
              <li>
                <t><tt>xi</tt>: the 128-bit block to be absorbed.</t>
              </li>
            </ul>
            <t>Modifies:</t>
            <ul spacing="normal">
              <li>
                <t><tt>{S0, ...S15}</tt>: the state.</t>
              </li>
            </ul>
            <t>Steps:</t>
            <artwork><![CDATA[
  t = AESL(S0 ^ S1) ^ xi
 S0 = AESL(S13) ^ t
 S3 =  S3 ^ xi
S13 = S13 ^ xi

Rol()
]]></artwork>
          </section>
          <section anchor="the-updateenc-function">
            <name>The UpdateEnc Function</name>
            <artwork><![CDATA[
UpdateEnc(mi)
]]></artwork>
            <t>The <tt>UpdateEnc</tt> function extends the basic <tt>Update</tt> function to provide encryption. It absorbs a plaintext block while simultaneously generating the corresponding ciphertext block through an additional XOR with state block S9.</t>
            <t>Inputs:</t>
            <ul spacing="normal">
              <li>
                <t><tt>mi</tt>: a 128-bit block to be encrypted.</t>
              </li>
            </ul>
            <t>Outputs:</t>
            <ul spacing="normal">
              <li>
                <t><tt>ci</tt>: the encrypted 128-bit block.</t>
              </li>
            </ul>
            <t>Modifies:</t>
            <ul spacing="normal">
              <li>
                <t><tt>{S0, ...S15}</tt>: the state.</t>
              </li>
            </ul>
            <t>Steps:</t>
            <artwork><![CDATA[
  t = AESL(S0 ^ S1) ^ mi
 ci = t ^ S9
 S0 = AESL(S13) ^ t
 S3 =  S3 ^ mi
S13 = S13 ^ mi

Rol()

return ci
]]></artwork>
          </section>
          <section anchor="the-updatedec-function">
            <name>The UpdateDec Function</name>
            <artwork><![CDATA[
UpdateDec(ci)
]]></artwork>
            <t>The <tt>UpdateDec</tt> function provides the inverse operation of <tt>UpdateEnc</tt>. It processes a ciphertext block to recover the plaintext while maintaining the same state update pattern, ensuring that encryption and decryption produce identical internal states.</t>
            <t>Inputs:</t>
            <ul spacing="normal">
              <li>
                <t><tt>ci</tt>: a 128-bit block to be decrypted.</t>
              </li>
            </ul>
            <t>Outputs:</t>
            <ul spacing="normal">
              <li>
                <t><tt>mi</tt>: the decrypted 128-bit block.</t>
              </li>
            </ul>
            <t>Modifies:</t>
            <ul spacing="normal">
              <li>
                <t><tt>{S0, ...S15}</tt>: the state.</t>
              </li>
            </ul>
            <t>Steps:</t>
            <artwork><![CDATA[
  t = ci ^ S9
 mi = AESL(S0 ^ S1) ^ t
 S0 = AESL(S13) ^ t
 S3 =  S3 ^ mi
S13 = S13 ^ mi

Rol()

return mi
]]></artwork>
          </section>
          <section anchor="the-diffuse-function">
            <name>The Diffuse Function</name>
            <artwork><![CDATA[
Diffuse(x0, x1)
]]></artwork>
            <t>The <tt>Diffuse</tt> function ensures full state mixing by performing 32 consecutive update operations, alternating between two input values. This function is critical for security during initialization and finalization phases, guaranteeing that every bit of the key and nonce influences the entire state, and that the authentication tag depends on all state bits.</t>
            <t>Inputs:</t>
            <ul spacing="normal">
              <li>
                <t><tt>x0</tt>: a 128-bit input value for even-numbered updates (updates 0, 2, 4, ..., 30).</t>
              </li>
              <li>
                <t><tt>x1</tt>: a 128-bit input value for odd-numbered updates (updates 1, 3, 5, ..., 31).</t>
              </li>
            </ul>
            <t>Modifies:</t>
            <ul spacing="normal">
              <li>
                <t><tt>{S0, ...S15}</tt>: the state.</t>
              </li>
            </ul>
            <t>Steps:</t>
            <artwork><![CDATA[
Repeat(16,
  Update(x0)
  Update(x1)
)
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="initialization-and-processing-functions">
        <name>Initialization and Processing Functions</name>
        <t>The following functions implement the high-level operations of HiAE: initialization, data absorption, encryption/decryption, and finalization.</t>
        <section anchor="the-init-function">
          <name>The Init Function</name>
          <artwork><![CDATA[
Init(key, nonce)
]]></artwork>
          <t>The <tt>Init</tt> function constructs the initial state <tt>{S0, ...S15}</tt> from the encryption key and nonce. The initialization process carefully distributes key material across the state and applies the Diffuse function to ensure all state bits are cryptographically mixed before processing begins.</t>
          <t>Inputs:</t>
          <ul spacing="normal">
            <li>
              <t><tt>key</tt>: the encryption key.</t>
            </li>
            <li>
              <t><tt>nonce</tt>: the public nonce.</t>
            </li>
          </ul>
          <t>Defines:</t>
          <ul spacing="normal">
            <li>
              <t><tt>{S0, ...S15}</tt>: the initial state.</t>
            </li>
          </ul>
          <t>Steps:</t>
          <artwork><![CDATA[
k0, k1 = Split(key, 128)

 S0 = C0
 S1 = k0
 S2 = C0
 S3 = nonce
 S4 = ZeroPad({ 0 }, 128)
 S5 = k0
 S6 = ZeroPad({ 0 }, 128)
 S7 = C1
 S8 = k1
 S9 = ZeroPad({ 0 }, 128)
S10 = nonce ^ k1
S11 = C0
S12 = C1
S13 = k1
S14 = ZeroPad({ 0 }, 128)
S15 = C0 ^ C1

Diffuse(k0, k1)
]]></artwork>
        </section>
        <section anchor="the-absorb-function">
          <name>The Absorb Function</name>
          <artwork><![CDATA[
Absorb(ai)
]]></artwork>
          <t>The <tt>Absorb</tt> function processes associated data by incorporating 128-bit blocks into the internal state. This function is used exclusively for authenticated data that should influence the authentication tag but not produce ciphertext output.</t>
          <t>Inputs:</t>
          <ul spacing="normal">
            <li>
              <t><tt>ai</tt>: the 128-bit input block.</t>
            </li>
          </ul>
          <t>Steps:</t>
          <artwork><![CDATA[
Update(ai)
]]></artwork>
        </section>
        <section anchor="the-enc-function">
          <name>The Enc Function</name>
          <artwork><![CDATA[
Enc(mi)
]]></artwork>
          <t>The <tt>Enc</tt> function encrypts a single 128-bit plaintext block. It serves as a simple wrapper around <tt>UpdateEnc</tt>, providing a clean interface for the block-by-block encryption process.</t>
          <t>Inputs:</t>
          <ul spacing="normal">
            <li>
              <t><tt>mi</tt>: the 128-bit input block.</t>
            </li>
          </ul>
          <t>Outputs:</t>
          <ul spacing="normal">
            <li>
              <t><tt>ci</tt>: the 128-bit encrypted block.</t>
            </li>
          </ul>
          <t>Steps:</t>
          <artwork><![CDATA[
ci = UpdateEnc(mi)
return ci
]]></artwork>
        </section>
        <section anchor="the-dec-function">
          <name>The Dec Function</name>
          <artwork><![CDATA[
Dec(ci)
]]></artwork>
          <t>The <tt>Dec</tt> function decrypts a single 128-bit ciphertext block. Like <tt>Enc</tt>, it provides a clean interface by wrapping the <tt>UpdateDec</tt> function.</t>
          <t>Inputs:</t>
          <ul spacing="normal">
            <li>
              <t><tt>ci</tt>: the 128-bit encrypted block.</t>
            </li>
          </ul>
          <t>Outputs:</t>
          <ul spacing="normal">
            <li>
              <t><tt>mi</tt>: the 128-bit decrypted block.</t>
            </li>
          </ul>
          <t>Steps:</t>
          <artwork><![CDATA[
mi = UpdateDec(ci)
return mi
]]></artwork>
        </section>
        <section anchor="the-decpartial-function">
          <name>The DecPartial Function</name>
          <artwork><![CDATA[
DecPartial(cn)
]]></artwork>
          <t>The <tt>DecPartial</tt> function handles the special case of decrypting a partial block at the end of a ciphertext. This function carefully reconstructs the keystream to decrypt blocks smaller than 128 bits while maintaining the same state evolution as encryption.</t>
          <t>Inputs:</t>
          <ul spacing="normal">
            <li>
              <t><tt>cn</tt>: the encrypted input.</t>
            </li>
          </ul>
          <t>Outputs:</t>
          <ul spacing="normal">
            <li>
              <t><tt>mn</tt>: the decryption of <tt>cn</tt>.</t>
            </li>
          </ul>
          <t>Steps:</t>
          <artwork><![CDATA[
# Step 1: Recover the keystream that would encrypt a full zero block
ks = AESL(S0 ^ S1) ^ ZeroPad(cn, 128) ^ S9

# Step 2: Construct a full 128-bit ciphertext block
# by appending the appropriate keystream bits
ci = cn || Tail(ks, 128 - |cn|)

# Step 3: Decrypt the full block using standard UpdateDec
mi = UpdateDec(ci)

# Step 4: Extract only the decrypted bytes corresponding to the partial input
mn = Truncate(mi, |cn|)

return mn
]]></artwork>
        </section>
        <section anchor="the-finalize-function">
          <name>The Finalize Function</name>
          <artwork><![CDATA[
Finalize(ad_len_bits, msg_len_bits)
]]></artwork>
          <t>The <tt>Finalize</tt> function completes the authentication process by generating a 128-bit tag. It incorporates the lengths of both the associated data and message (each encoded as 8 bytes in little-endian format), applies the Diffuse function for final mixing, and combines all state blocks to produce the authentication tag.</t>
          <t>Inputs:</t>
          <ul spacing="normal">
            <li>
              <t><tt>ad_len_bits</tt>: the length of the associated data in bits.</t>
            </li>
            <li>
              <t><tt>msg_len_bits</tt>: the length of the message in bits.</t>
            </li>
          </ul>
          <t>Outputs:</t>
          <ul spacing="normal">
            <li>
              <t><tt>tag</tt>: the authentication tag.</t>
            </li>
          </ul>
          <t>Steps:</t>
          <artwork><![CDATA[
t = (LE64(ad_len_bits) || LE64(msg_len_bits))
Diffuse(t, t)

tag = S0 ^ S1 ^ S2 ^ S3 ^ S4 ^ S5 ^ S6 ^ S7 ^
      S8 ^ S9 ^ S10 ^ S11 ^ S12 ^ S13 ^ S14 ^ S15

return tag
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="encoding-ct-tag-tuples">
      <name>Encoding (ct, tag) Tuples</name>
      <t>Applications <bcp14>MAY</bcp14> keep the ciphertext and the authentication tag in distinct structures or encode both as a single string.</t>
      <t>In the latter case, the tag <bcp14>MUST</bcp14> immediately follow the ciphertext:</t>
      <artwork><![CDATA[
combined_ct = ct || tag
]]></artwork>
    </section>
    <section anchor="alternative-operating-modes">
      <name>Alternative Operating Modes</name>
      <t>While HiAE is primarily designed as an authenticated encryption algorithm, its flexible structure allows it to operate in two additional modes: as a stream cipher for keystream generation and as a message authentication code (MAC) for data authentication without encryption.</t>
      <section anchor="hiae-as-a-stream-cipher">
        <name>HiAE as a Stream Cipher</name>
        <t>The stream cipher mode of HiAE generates a keystream by encrypting an all-zero message.</t>
        <artwork><![CDATA[
Stream(len, key, nonce)
]]></artwork>
        <t>The <tt>Stream</tt> function expands a key and an optional nonce into a variable-length keystream.</t>
        <t>Inputs:</t>
        <ul spacing="normal">
          <li>
            <t><tt>len</tt>: the length of the keystream to generate in bits.</t>
          </li>
          <li>
            <t><tt>key</tt>: the HiAE key.</t>
          </li>
          <li>
            <t><tt>nonce</tt>: the HiAE nonce. If unspecified, it is set to <tt>N_MAX</tt> zero bytes.</t>
          </li>
        </ul>
        <t>Outputs:</t>
        <ul spacing="normal">
          <li>
            <t><tt>stream</tt>: the keystream.</t>
          </li>
        </ul>
        <t>Steps:</t>
        <artwork><![CDATA[
if len == 0:
    return {}
else:
    stream, tag = Encrypt(ZeroPad({ 0 }, len), {}, key, nonce)
    return stream
]]></artwork>
        <t>This is equivalent to encrypting a message of <tt>len</tt> zero bits without associated data and discarding the authentication tag.</t>
        <t>Instead of relying on the generic <tt>Encrypt</tt> function, implementations can omit the <tt>Finalize</tt> function.</t>
        <t>After initialization, the <tt>Update</tt> function is called with constant parameters, allowing further optimizations.</t>
      </section>
      <section anchor="hiae-as-a-message-authentication-code">
        <name>HiAE as a Message Authentication Code</name>
        <t>In MAC mode, HiAE processes input data without generating ciphertext, producing only an authentication tag. This mode is useful when data authenticity is required without confidentiality.</t>
        <artwork><![CDATA[
Mac(data, key, nonce)
]]></artwork>
        <t>Security:</t>
        <ul spacing="normal">
          <li>
            <t>This is the only function that allows the reuse of <tt>(key, nonce)</tt> pairs with different inputs.</t>
          </li>
          <li>
            <t>HiAE-based MAC functions <bcp14>MUST NOT</bcp14> be used as hash functions: if the key is known, inputs causing state collisions can easily be crafted.</t>
          </li>
          <li>
            <t>Unlike hash-based MACs, tags <bcp14>MUST NOT</bcp14> be used for key derivation as there is no guarantee that they are uniformly random.</t>
          </li>
        </ul>
        <t>Inputs:</t>
        <ul spacing="normal">
          <li>
            <t><tt>data</tt>: the input data to authenticate (length <bcp14>MUST</bcp14> be less than or equal to <tt>A_MAX</tt>).</t>
          </li>
          <li>
            <t><tt>key</tt>: the secret key.</t>
          </li>
          <li>
            <t><tt>nonce</tt>: the public nonce.</t>
          </li>
        </ul>
        <t>Outputs:</t>
        <ul spacing="normal">
          <li>
            <t><tt>tag</tt>: the authentication tag.</t>
          </li>
        </ul>
        <t>Steps:</t>
        <artwork><![CDATA[
Init(key, nonce)
data_blocks = Split(ZeroPad(data, 128), 128)
for di in data_blocks:
    Absorb(di)
tag = Finalize(|data|, 0)
return tag
]]></artwork>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="classic-setting">
        <name>Classic Setting</name>
        <t>HiAE provides 256-bit security against key recovery and state recovery attacks, along with 128-bit security for integrity against forgery attempts.</t>
        <t>It is important to note that the encryption security assumes the attacker cannot successfully forge messages through repeated trials <xref target="HiAE-Clarification"/>.</t>
        <t>Regarding keystream bias attacks, analysis shows that at least 150-bit security is guaranteed by HiAE.</t>
        <t>Finally, HiAE is assumed to be secure against key-committing attacks, but it has not been proven to be secure in the everything-committing setting.</t>
      </section>
      <section anchor="quantum-setting">
        <name>Quantum Setting</name>
        <t>HiAE targets a security strength of 128 bits against key recovery attacks and forgery attacks in the quantum setting. Security is not claimed against online superposition queries to cryptographic oracles, as such attacks are highly impractical in real-world applications.</t>
      </section>
      <section anchor="attack-considerations">
        <name>Attack Considerations</name>
        <t>HiAE is assumed to be secure against the following attacks:</t>
        <ol spacing="normal" type="1"><li>
            <t>Key-Recovery Attack: 256-bit security against key recovery attacks.</t>
          </li>
          <li>
            <t>Differential Attack: 256-bit security against differential attacks in the initialization phase.</t>
          </li>
          <li>
            <t>Forgery Attack: 128-bit security against forgery attacks.</t>
          </li>
          <li>
            <t>Integral Attack: Secure against integral attacks.</t>
          </li>
          <li>
            <t>State-Recovery Attack:
            </t>
            <ul spacing="normal">
              <li>
                <t>Guess-and-Determine Attack: The time complexity of the guess-and-determine attack cannot be lower than 2<sup>256</sup>.</t>
              </li>
              <li>
                <t>Algebraic Attack: The system of equations to recover HiAE states cannot be solved with time complexity lower than 2<sup>256</sup>.</t>
              </li>
            </ul>
          </li>
          <li>
            <t>Linear Bias: At least 150-bit security against statistical attacks.</t>
          </li>
          <li>
            <t>Key-Committing Attacks: Secure in the FROB, CMT1, and CMT2 models.</t>
          </li>
          <li>
            <t>Everything-Committing Attacks: Security is not claimed in the CMT3 model.</t>
          </li>
        </ol>
        <t>The details of the cryptanalysis can be found in the paper <xref target="HiAE"/>.</t>
      </section>
    </section>
    <section anchor="implementation-considerations">
      <name>Implementation Considerations</name>
      <t>HiAE is designed to balance the performance of XOR and AES instructions across both ARM and x86 architectures while being optimized to push performance to its limits. The algorithm’s XAXX structure enables platform-specific optimizations by exploiting the fundamental differences in how ARM and Intel processors implement AES round functions.</t>
      <section anchor="state-rotation-optimization">
        <name>State Rotation Optimization</name>
        <t>Instead of performing physical rotations with the <tt>Rol()</tt> function, implementations can use a cycling index (offset) approach to avoid copying the entire 2048-bit state on every rotation. This optimization provides significant performance improvements across all platforms.</t>
        <section anchor="cycling-index-approach">
          <name>Cycling Index Approach</name>
          <t>The standard <tt>Rol()</tt> function requires copying all sixteen 128-bit blocks:</t>
          <artwork><![CDATA[
  t = S0
 S0 = S1
 S1 = S2
 ...
S15 = t
]]></artwork>
          <t>This approach copies 2048 bits of data on every rotation. An optimized implementation can instead:</t>
          <ol spacing="normal" type="1"><li>
              <t>Keep the state blocks in a fixed array position</t>
            </li>
            <li>
              <t>Maintain an <tt>offset</tt> variable tracking the logical position of S0</t>
            </li>
            <li>
              <t>Map logical state block Si to physical position <tt>(i + offset) mod 16</tt></t>
            </li>
            <li>
              <t>Replace the entire <tt>Rol()</tt> operation with: <tt>offset = (offset + 1) mod 16</tt></t>
            </li>
          </ol>
        </section>
        <section anchor="state-access-pattern">
          <name>State Access Pattern</name>
          <t>With this optimization, the logical-to-physical state block mapping becomes:</t>
          <ul spacing="normal">
            <li>
              <t>Logical <tt>S0</tt> maps to physical position <tt>offset mod 16</tt></t>
            </li>
            <li>
              <t>Logical <tt>S3</tt> maps to physical position <tt>(3 + offset) mod 16</tt></t>
            </li>
            <li>
              <t>Logical <tt>S9</tt> maps to physical position <tt>(9 + offset) mod 16</tt></t>
            </li>
            <li>
              <t>Logical <tt>S13</tt> maps to physical position <tt>(13 + offset) mod 16</tt></t>
            </li>
          </ul>
          <t>This approach is mathematically equivalent to the specification but eliminates the expensive memory operations associated with state rotation. Since <tt>Rol()</tt> is called in every <tt>Update()</tt>, <tt>UpdateEnc()</tt>, and <tt>UpdateDec()</tt> operation, this optimization provides substantial performance benefits during encryption and decryption operations.</t>
        </section>
        <section anchor="batch-processing-optimization">
          <name>Batch Processing Optimization</name>
          <t>Since the offset cycles back to zero every 16 operations (<tt>offset mod 16</tt>), implementations may benefit from processing data in batches of 16 blocks. After processing 16 consecutive input blocks, the logical state mapping returns to its original configuration, which can simplify implementation and potentially enable further optimizations such as loop unrolling or vectorization of the batch processing logic.</t>
          <t>When the offset is aligned to zero at the start of a batch, implementations can hardcode the specific offset values for each operation within the unrolled batch processing function, eliminating the need for modular arithmetic during the inner loop and providing additional performance benefits.</t>
        </section>
      </section>
      <section anchor="platform-specific-optimizations">
        <name>Platform-Specific Optimizations</name>
        <t>The key to HiAE’s cross-platform efficiency lies in understanding how different architectures implement AES operations.</t>
        <t>The following optimizations leverage architectural differences between ARM and Intel processors to maximize HiAE’s performance while maintaining cryptographic correctness.</t>
        <section anchor="arm-neon-optimizations">
          <name>ARM NEON Optimizations</name>
          <t>ARM processors with NEON SIMD extensions can efficiently compute <tt>AESL(x^y)</tt> and (with SHA3 extensions) three-way XOR operations. For convenience, the following additional primitives can be defined:</t>
          <ul spacing="normal">
            <li>
              <t><tt>XAESL(x,y)</tt>: Computes <tt>AESL(x^y)</tt> in a single fused operation (assembly instruction <tt>AESE ∘ AESMC</tt>, or equivalently C intrinsic <tt>vaesmcq_u8(vaeseq_u8(x,y))</tt>)</t>
            </li>
            <li>
              <t><tt>XOR3(x,y,z)</tt>: Computes <tt>x^y^z</tt> in a single three-way XOR instruction (assembly instruction <tt>EOR3</tt>, or equivalently C intrinsic <tt>veor3q_u8(x,y,z)</tt>)</t>
            </li>
          </ul>
          <section anchor="arm-optimized-update-function">
            <name>ARM-Optimized Update Function</name>
            <t>Original implementation:</t>
            <artwork><![CDATA[
Update(xi)
  t = AESL(S0 ^ S1) ^ xi
 S0 = AESL(S13) ^ t
 S3 =  S3 ^ xi
S13 = S13 ^ xi
Rol()
]]></artwork>
            <t>ARM-optimized implementation:</t>
            <artwork><![CDATA[
Update_ARM(xi)
  t = XAESL(S0, S1) ^ xi
 S0 = AESL(S13) ^ t
 S3 = S3 ^ xi
S13 = S13 ^ xi
Rol()
]]></artwork>
          </section>
          <section anchor="arm-optimized-updateenc-function">
            <name>ARM-Optimized UpdateEnc Function</name>
            <t>Original implementation:</t>
            <artwork><![CDATA[
UpdateEnc(mi)
  t = AESL(S0 ^ S1) ^ mi
 ci = t ^ S9
 S0 = AESL(S13) ^ t
 S3 =  S3 ^ mi
S13 = S13 ^ mi
Rol()
return ci
]]></artwork>
            <t>ARM-optimized implementation:</t>
            <artwork><![CDATA[
UpdateEnc_ARM(mi)
  t = XAESL(S0, S1) ^ mi
 ci = t ^ S9
 S0 = AESL(S13) ^ t
 S3 = S3 ^ mi
S13 = S13 ^ mi
Rol()
return ci
]]></artwork>
          </section>
          <section anchor="arm-optimized-decpartial-function">
            <name>ARM-Optimized DecPartial Function</name>
            <t>Original implementation:</t>
            <artwork><![CDATA[
DecPartial(cn)
ks = AESL(S0 ^ S1) ^ ZeroPad(cn, 128) ^ S9
ci = cn || Tail(ks, 128 - |cn|)
mi = UpdateDec(ci)
mn = Truncate(mi, |cn|)
return mn
]]></artwork>
            <t>ARM-optimized implementation:</t>
            <artwork><![CDATA[
DecPartial_ARM(cn)
ks = XOR3(XAESL(S0, S1), ZeroPad(cn, 128), S9)
ci = cn || Tail(ks, 128 - |cn|)
mi = UpdateDec_ARM(ci)
mn = Truncate(mi, |cn|)
return mn
]]></artwork>
          </section>
          <section anchor="arm-optimized-updatedec-function">
            <name>ARM-Optimized UpdateDec Function</name>
            <t>Original implementation:</t>
            <artwork><![CDATA[
UpdateDec(ci)
  t = ci ^ S9
 mi = AESL(S0 ^ S1) ^ t
 S0 = AESL(S13) ^ t
 S3 =  S3 ^ mi
S13 = S13 ^ mi
Rol()
return mi
]]></artwork>
            <t>ARM-optimized implementation:</t>
            <artwork><![CDATA[
UpdateDec_ARM(ci)
  t = ci ^ S9
 mi = XAESL(S0, S1) ^ t
 S0 = AESL(S13) ^ t
 S3 =  S3 ^ mi
S13 = S13 ^ mi
Rol()
return mi
]]></artwork>
          </section>
        </section>
        <section anchor="intel-aes-ni-optimizations">
          <name>Intel AES-NI Optimizations</name>
          <t>Intel processors with AES-NI can efficiently compute <tt>AESL(y)^z</tt> patterns. We can define the following additional function:</t>
          <ul spacing="normal">
            <li>
              <t><tt>AESLX(y,z)</tt>: Computes <tt>AESL(y) ^ z</tt> using a single instruction (assembly instruction <tt>AESENC</tt>, or equivalently C intrinsic <tt>_mm_aesenc_si128(y, z)</tt>)</t>
            </li>
          </ul>
          <section anchor="intel-optimized-update-function">
            <name>Intel-Optimized Update Function</name>
            <t>Original implementation:</t>
            <artwork><![CDATA[
Update(xi)
  t = AESL(S0 ^ S1) ^ xi
 S0 = AESL(S13) ^ t
 S3 =  S3 ^ xi
S13 = S13 ^ xi
Rol()
]]></artwork>
            <t>Intel-optimized implementation:</t>
            <artwork><![CDATA[
Update_Intel(xi)
  t = AESL(S0 ^ S1) ^ xi
 S0 = AESLX(S13, t)
 S3 =  S3 ^ xi
S13 = S13 ^ xi
Rol()
]]></artwork>
          </section>
          <section anchor="intel-optimized-updateenc-function">
            <name>Intel-Optimized UpdateEnc Function</name>
            <t>Original implementation:</t>
            <artwork><![CDATA[
UpdateEnc(mi)
  t = AESL(S0 ^ S1) ^ mi
 ci = t ^ S9
 S0 = AESL(S13) ^ t
 S3 =  S3 ^ mi
S13 = S13 ^ mi
Rol()
return ci
]]></artwork>
            <t>Intel-optimized implementation:</t>
            <artwork><![CDATA[
UpdateEnc_Intel(mi)
  t = AESL(S0 ^ S1) ^ mi
 ci = t ^ S9
 S0 = AESLX(S13, t)
 S3 =  S3 ^ mi
S13 = S13 ^ mi
Rol()
return ci
]]></artwork>
          </section>
          <section anchor="intel-optimized-decpartial-function">
            <name>Intel-Optimized DecPartial Function</name>
            <t>Original implementation:</t>
            <artwork><![CDATA[
DecPartial(cn)
ks = AESL(S0 ^ S1) ^ ZeroPad(cn, 128) ^ S9
ci = cn || Tail(ks, 128 - |cn|)
mi = UpdateDec(ci)
mn = Truncate(mi, |cn|)
return mn
]]></artwork>
            <t>Intel-optimized implementation:</t>
            <artwork><![CDATA[
DecPartial_Intel(cn)
ks = AESL(S0 ^ S1) ^ ZeroPad(cn, 128) ^ S9
ci = cn || Tail(ks, 128 - |cn|)
mi = UpdateDec_Intel(ci)
mn = Truncate(mi, |cn|)
return mn
]]></artwork>
          </section>
          <section anchor="intel-optimized-updatedec-function">
            <name>Intel-Optimized UpdateDec Function</name>
            <t>Original implementation:</t>
            <artwork><![CDATA[
UpdateDec(ci)
  t = ci ^ S9
 mi = AESL(S0 ^ S1) ^ t
 S0 = AESL(S13) ^ t
 S3 =  S3 ^ mi
S13 = S13 ^ mi
Rol()
return mi
]]></artwork>
            <t>Intel-optimized implementation:</t>
            <artwork><![CDATA[
UpdateDec_Intel(ci)
  t = ci ^ S9
 mi = AESL(S0 ^ S1) ^ t
 S0 = AESLX(S13, t)
 S3 =  S3 ^ mi
S13 = S13 ^ mi
Rol()
return mi
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="decryption-performance">
        <name>Decryption Performance</name>
        <t>It is expected that HiAE decryption will be slower than encryption due to inherent data dependencies in the algorithm. While encryption can process keystream generation and state updates in parallel, decryption must first recover the plaintext before performing any state updates. This sequential dependency chain is a consequence of HiAE’s design, which incorporates plaintext into the internal state to provide strong authentication properties.</t>
      </section>
      <section anchor="security-considerations-for-implementations">
        <name>Security Considerations for Implementations</name>
        <t>The security of HiAE against timing and physical attacks is limited by the implementation of the underlying <tt>AESL</tt> function. Failure to implement <tt>AESL</tt> in a fashion safe against timing and physical attacks, such as differential power analysis, timing analysis, or fault injection attacks, may lead to leakage of secret key material or state information. The exact mitigations required for timing and physical attacks depend on the threat model in question.</t>
        <t>When implementing the platform-specific optimizations described above, care must be taken to ensure that:</t>
        <ul spacing="normal">
          <li>
            <t>All operations complete in constant time</t>
          </li>
          <li>
            <t>No secret-dependent memory accesses occur</t>
          </li>
          <li>
            <t>The optimization does not introduce timing variations based on input data</t>
          </li>
        </ul>
      </section>
      <section anchor="validation">
        <name>Validation</name>
        <t>A complete list of known implementations and integrations is available at https://github.com/hiae-aead/draft-pham-hiae, including reference implementations. A comprehensive comparison of HiAE’s performance with other high-throughput authenticated encryption schemes on ARM and x86 architectures is also provided, demonstrating the effectiveness of these platform-specific optimizations.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>IANA is requested to register the following entry in the AEAD Algorithms Registry:</t>
      <table>
        <thead>
          <tr>
            <th align="left">Algorithm Name</th>
            <th align="left">ID</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">
              <tt>AEAD_HIAE</tt></td>
            <td align="left"> </td>
          </tr>
        </tbody>
      </table>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="FIPS-AES" target="https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.197.pdf">
          <front>
            <title>Advanced encryption standard (AES)</title>
            <author>
              <organization>National Institute of Standards and Technology (NIST)</organization>
            </author>
            <date year="2001" month="November"/>
          </front>
          <refcontent>Federal Information Processing Standards Publication 197</refcontent>
        </reference>
        <reference anchor="I-D.irtf-cfrg-aegis-aead">
          <front>
            <title>The AEGIS Family of Authenticated Encryption Algorithms</title>
            <author fullname="Frank Denis" initials="F." surname="Denis">
              <organization>Fastly Inc.</organization>
            </author>
            <author fullname="Samuel Lucas" initials="S." surname="Lucas">
              <organization>Individual Contributor</organization>
            </author>
            <date day="5" month="October" year="2025"/>
            <abstract>
              <t>   This document describes the AEGIS-128L, AEGIS-256, AEGIS-128X, and
   AEGIS-256X AES-based authenticated encryption algorithms designed for
   high-performance applications.

   The document is a product of the Crypto Forum Research Group (CFRG).
   It is not an IETF product and is not a standard.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Source for this draft and an issue tracker can be found at
   https://github.com/cfrg/draft-irtf-cfrg-aegis-aead.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-irtf-cfrg-aegis-aead-18"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <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="RFC5116">
          <front>
            <title>An Interface and Algorithms for Authenticated Encryption</title>
            <author fullname="D. McGrew" initials="D." surname="McGrew"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document defines algorithms for Authenticated Encryption with Associated Data (AEAD), and defines a uniform interface and a registry for such algorithms. The interface and registry can be used as an application-independent set of cryptoalgorithm suites. This approach provides advantages in efficiency and security, and promotes the reuse of crypto implementations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5116"/>
          <seriesInfo name="DOI" value="10.17487/RFC5116"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="ROCCA-S">
          <front>
            <title>An Ultra-High Throughput AES-Based Authenticated Encryption Scheme for 6G: Design and Implementation</title>
            <author initials="R." surname="Anand" fullname="Ravi Anand">
              <organization/>
            </author>
            <author initials="S." surname="Banik" fullname="Subhadeep Banik">
              <organization/>
            </author>
            <author initials="A." surname="Caforio" fullname="Andrea Caforio">
              <organization/>
            </author>
            <author initials="K." surname="Fukushima" fullname="Kazuhide Fukushima">
              <organization/>
            </author>
            <author initials="T." surname="Isobe" fullname="Takanori Isobe">
              <organization/>
            </author>
            <author initials="S." surname="Kiyomoto" fullname="Shisaku Kiyomoto">
              <organization/>
            </author>
            <author initials="F." surname="Liu" fullname="Fukang Liu">
              <organization/>
            </author>
            <author initials="Y." surname="Nakano" fullname="Yuto Nakano">
              <organization/>
            </author>
            <author initials="K." surname="Sakamoto" fullname="Kosei Sakamoto">
              <organization/>
            </author>
            <author initials="N." surname="Takeuchi" fullname="Nobuyuki Takeuchi">
              <organization/>
            </author>
            <date year="2024"/>
          </front>
          <seriesInfo name="DOI" value="10.1007/978-3-031-50594-2_12"/>
          <refcontent>Cryptology and Network Security (CANS 2023)</refcontent>
        </reference>
        <reference anchor="SNOW-V">
          <front>
            <title>SNOW-V: an AES-based Stream Cipher for 5G and 6G Communication Systems</title>
            <author initials="P." surname="Ekdahl" fullname="Patrik Ekdahl">
              <organization>Ericsson Research</organization>
            </author>
            <author initials="T." surname="Johansson" fullname="Thomas Johansson">
              <organization>Lund University</organization>
            </author>
            <author initials="A." surname="Maximov" fullname="Alexander Maximov">
              <organization>Ericsson Research</organization>
            </author>
            <author initials="J." surname="Yang" fullname="Jing Yang">
              <organization>Ericsson Research</organization>
            </author>
            <date year="2019"/>
          </front>
          <seriesInfo name="DOI" value="10.13154/tosc.v2019.i3.1-42"/>
          <refcontent>IACR Transactions on Symmetric Cryptology, 2019(3)</refcontent>
        </reference>
        <reference anchor="AES-NI" target="https://www.intel.com/content/dam/doc/white-paper/advanced-encryption-standard-new-instructions-set-paper.pdf">
          <front>
            <title>Intel Advanced Encryption Standard (AES) New Instructions Set</title>
            <author initials="S." surname="Gueron" fullname="Shay Gueron">
              <organization>Intel Corporation</organization>
            </author>
            <date year="2010"/>
          </front>
        </reference>
        <reference anchor="HiAE" target="https://eprint.iacr.org/2025/377">
          <front>
            <title>HiAE: A High-Throughput Authenticated Encryption Algorithm for Cross-Platform Efficiency</title>
            <author initials="H." surname="Chen" fullname="Han Chen">
              <organization>Huawei International Pte., Ltd.</organization>
            </author>
            <author initials="T." surname="Huang" fullname="Tao Huang">
              <organization>Huawei International Pte., Ltd.</organization>
            </author>
            <author initials="P." surname="Pham" fullname="Phuong Pham">
              <organization>Huawei International Pte., Ltd.</organization>
            </author>
            <author initials="S." surname="Wu" fullname="Shuang Wu">
              <organization>Huawei International Pte., Ltd.</organization>
            </author>
            <date year="2025"/>
          </front>
          <refcontent>Cryptology ePrint Archive, Paper 2025/377</refcontent>
        </reference>
        <reference anchor="NIST-LWC" target="https://csrc.nist.gov/projects/lightweight-cryptography">
          <front>
            <title>NIST Lightweight Cryptography (LWC)</title>
            <author>
              <organization>National Institute of Standards and Technology (NIST)</organization>
            </author>
            <date year="2025"/>
          </front>
        </reference>
        <reference anchor="HiAE-Clarification" target="https://eprint.iacr.org/2025/1235">
          <front>
            <title>HiAE Remains Secure in Its Intended Model: A Clarification of Claimed Attacks</title>
            <author initials="P." surname="Pham" fullname="Phuong Pham">
              <organization>Huawei International Pte., Ltd.</organization>
            </author>
            <author initials="L." surname="Prabel" fullname="Lucas Prabel">
              <organization>Huawei International Pte., Ltd.</organization>
            </author>
            <author initials="S." surname="Wu" fullname="Shuang Wu">
              <organization>Huawei International Pte., Ltd.</organization>
            </author>
            <date year="2025"/>
          </front>
          <refcontent>Cryptology ePrint Archive, Paper 2025/1235</refcontent>
        </reference>
      </references>
    </references>
    <?line 1137?>

<section anchor="test-vectors">
      <name>Test Vectors</name>
      <section anchor="test-vector-1-empty-plaintext-no-ad">
        <name>Test Vector 1 - Empty plaintext, no AD</name>
        <sourcecode type="test-vectors"><![CDATA[
key   : 4b7a9c3ef8d2165a0b3e5f8c9d4a7b1e
        2c5f8a9d3b6e4c7f0a1d2e5b8c9f4a7d

nonce : a5b8c2d9e3f4a7b1c8d5e9f2a3b6c7d8

ad    :

msg   :

ct    :

tag   : a25049aa37deea054de461d10ce7840b
]]></sourcecode>
      </section>
      <section anchor="test-vector-2-single-block-plaintext-no-ad">
        <name>Test Vector 2 - Single block plaintext, no AD</name>
        <sourcecode type="test-vectors"><![CDATA[
key   : 2f8e4d7c3b9a5e1f8d2c6b4a9f3e7d5c
        1b8a6f4e3d2c9b5a8f7e6d4c3b2a1f9e

nonce : 7c3e9f5a1d8b4c6f2e9a5d7b3f8c1e4a

ad    :

msg   : 55f00fcc339669aa55f00fcc339669aa

ct    : af9bd1865daa6fc351652589abf70bff

tag   : ed9e2edc8241c3184fc08972bd8e9952
]]></sourcecode>
      </section>
      <section anchor="test-vector-3-empty-plaintext-with-ad">
        <name>Test Vector 3 - Empty plaintext with AD</name>
        <sourcecode type="test-vectors"><![CDATA[
key   : 9f3e7d5c4b8a2f1e9d8c7b6a5f4e3d2c
        1b0a9f8e7d6c5b4a3f2e1d0c9b8a7f6e

nonce : 3d8c7f2a5b9e4c1f8a6d3b7e5c2f9a4d

ad    : 394a5b6c7d8e9fb0c1d2e3f405162738
        495a6b7c8d9eafc0d1e2f30415263748

msg   :

ct    :

tag   : 7e19c04f68f5af633bf67529cfb5e5f4
]]></sourcecode>
      </section>
      <section anchor="test-vector-4-rate-aligned-plaintext-256-bytes">
        <name>Test Vector 4 - Rate-aligned plaintext (256 bytes)</name>
        <sourcecode type="test-vectors"><![CDATA[
key   : 6c8f2d5a9e3b7f4c1d8a5e9f3c7b2d6a
        4f8e1c9b5d3a7e2f4c8b6d9a1e5f3c7d

nonce : 9a5c7e3f1b8d4a6c2e9f5b7d3a8c1e6f

ad    :

msg   : ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff
        ffffffffffffffffffffffffffffffff

ct    : cf9f118ccc3ae98998ddaae1a5d1f9a1
        69e4ca3e732baf7178cdd9a353057166
        8fe403e77111eac3da34bf2f25719cea
        09445cc58197b1c6ac490626724e7372
        707cfb60cdba8262f0e33a1ef8adda1f
        2e390a80c58e5c055d9be9bbccdc06ad
        af74f1dcaa372204bf42e5e0e0ac5943
        7a353978298837023f79fac6daa1fe8f
        6bcaaaf060ae2e37ed7b7da0577a7643
        5f0403b8e277b6bc2ea99682f2d0d577
        77fec6d901e0d8fc7cf46bb97336812a
        2d8cfd39053993288cce2c077fce0c6c
        00e99cf919281b261acf86b058164f10
        1d9c24e8f40b4fa0ed60955eeeb4e33f
        f1087519c13db8e287199a7df7e94b0d
        368da9ccf3d2ecebfa46f860348f8e3c

tag   : 4f42c3042cba3973153673156309dd69
]]></sourcecode>
      </section>
      <section anchor="test-vector-5-rate-1-byte-plaintext">
        <name>Test Vector 5 - Rate + 1 byte plaintext</name>
        <sourcecode type="test-vectors"><![CDATA[
key   : 3e9d6c5b4a8f7e2d1c9b8a7f6e5d4c3b
        2a1f0e9d8c7b6a5f4e3d2c1b0a9f8e7d

nonce : 6f2e8a5c9b3d7f1e4a8c5b9d3f7e2a6c

ad    : 6778899aabbccddeef00112233445566

msg   : cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc339669aa55f00fcc339669aa55f00f
        cc

ct    : 522e4cd9b0881809d80e149bb4ed8b8a
        dd70b7257afca6c2bc38e4da11e290cf
        cabd9dd1d4ed8c514482f444f903e42e
        c21a7a605ee37f95a504ec667fabec40
        66eb4521cdaf9c4eb7b62d659ab0a936
        3b145f1120c1b2e589ab9cb893d01be0
        d22182fc7de4932f1e8652b50e4a0d48
        c49a8a1232b201e2e535cd95c15cf0ee
        389b75e372653579c72c4dd1906fd81c
        2b9fc2483fab8b4df5a09d59753b5bd4
        1334be2e5085e349b6e5aac0c555a0a8
        3e94eab974052131f8d451c9d85389a3
        6126f93464e6f93119c6b1bf15b4c0a9
        e6c9beb52e82c846c472f87c15ac49e9
        9d59248ba7e6b97ca04327769d6b8c1f
        751d95dba709fb335183c21476836ea1
        ab

tag   : 61bac11505dd8bbf55e7fbb7489de7b0
]]></sourcecode>
      </section>
      <section anchor="test-vector-6-rate-1-byte-plaintext">
        <name>Test Vector 6 - Rate - 1 byte plaintext</name>
        <sourcecode type="test-vectors"><![CDATA[
key   : 8a7f6e5d4c3b2a1f0e9d8c7b6a5f4e3d
        2c1b0a9f8e7d6c5b4a3f2e1d0c9b8a7f

nonce : 4d8b2f6a9c3e7f5d1b8a4c6e9f3d5b7a

ad    :

msg   : 00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        000000000000000000000000000000

ct    : 2ba49be54eb675efe446fd597721d4cd
        ca6e01f1a51728a859d8f206d13cdb08
        ba4f0fe78fbbd6885964ed54e9beceed
        1ff306642c4761e67efa7a2620e57128
        15b5e9f066b42e879cd62e7adc2821e5
        08311b88a6ee14bedcbac7ce339994c0
        09bbbadf9444748e4ab9a91acbbc7301
        742dab74aa1be6847ad8e9f08c170359
        b87e0ccd480812aaaf847aff03c2e858
        1c55848c2b50f6c6608540fe82627a2c
        0f5ee37fbe9cdeab5f6c9799702bd303
        2bf733e2108d03247cd20edaa2c322e5
        bf086bfecc4ac97b61096f016c57d5d0
        1c24d398cefd5ae8131c1f51f172ce9c
        6d3b8395d396dcbd70b4af790018796b
        31f0b0ad6198f86e5e1f26e9258492

tag   : 221dd1b69afb4e0c149e0a058e471a4a
]]></sourcecode>
      </section>
      <section anchor="test-vector-7-medium-plaintext-with-ad">
        <name>Test Vector 7 - Medium plaintext with AD</name>
        <sourcecode type="test-vectors"><![CDATA[
key   : 5d9c3b7a8f2e6d4c1b9a8f7e6d5c4b3a
        2f1e0d9c8b7a6f5e4d3c2b1a0f9e8d7c

nonce : 8c5a7d3f9b1e6c4a2f8d5b9e3c7a1f6d

ad    : 95a6b7c8d9eafb0c1d2e3f5061728394
        a5b6c7d8e9fa0b1c2d3e4f60718293a4
        b5c6d7e8f90a1b2c3d4e5f708192a3b4
        c5d6e7f8091a2b3c4d5e6f8091a2b3c4

msg   : 32e14453e7a776781d4c4e2c3b23bca2
        441ee4213bc3df25021b5106c22c98e8
        a7b310142252c8dcff70a91d55cdc910
        3c1eccd9b5309ef21793a664e0d4b63c
        83530dcd1a6ad0feda6ff19153e9ee62
        0325c1cb979d7b32e54f41da3af1c169
        a24c47c1f6673e115f0cb73e8c507f15
        eedf155261962f2d175c9ba3832f4933
        fb330d28ad6aae787f12788706f45c92
        e72aea146959d2d4fa01869f7d072a7b
        f43b2e75265e1a000dde451b64658919
        e93143d2781955fb4ca2a38076ac9eb4
        9adc2b92b05f0ec7

ct    : 1d8d56867870574d1c4ac114620c6a2a
        bb44680fe321dd116601e2c92540f85a
        11c41dcac9814397b8f37b812cd52c93
        2db6ecbaa247c3e14f228bd792334570
        2fc43ad1eb1b8086e2c3c57bb602971c
        29772a35dfb1c45c66f81633e67fdc8d
        8005457ddbe4179312abab981049eb0a
        0a555b9fa01378878d7349111e2446fd
        e89ce64022d032cbf0cf2672e00d7999
        ed8b631c1b9bee547cbe464673464a4b
        80e8f72ad2b91a40fdcee5357980c090
        b34ab5e732e2a7df7613131ee42e42ec
        6ae9b05ac5683ebe

tag   : e93686b266c481196d44536eb51b5f2d
]]></sourcecode>
      </section>
      <section anchor="test-vector-8-single-byte-plaintext">
        <name>Test Vector 8 - Single byte plaintext</name>
        <sourcecode type="test-vectors"><![CDATA[
key   : 7b6a5f4e3d2c1b0a9f8e7d6c5b4a3f2e
        1d0c9b8a7f6e5d4c3b2a1f0e9d8c7b6a

nonce : 2e7c9f5d3b8a4c6f1e9b5d7a3f8c2e4a

ad    :

msg   : ff

ct    : 21

tag   : 3cf9020bd1cc59cc5f2f6ce19f7cbf68
]]></sourcecode>
      </section>
      <section anchor="test-vector-9-two-blocks-plaintext">
        <name>Test Vector 9 - Two blocks plaintext</name>
        <sourcecode type="test-vectors"><![CDATA[
key   : 4c8b7a9f3e5d2c6b1a8f9e7d6c5b4a3f
        2e1d0c9b8a7f6e5d4c3b2a1f0e9d8c7b

nonce : 7e3c9a5f1d8b4e6c2a9f5d7b3e8c1a4f

ad    : c3d4e5f60718293a4b5c6d7e8fa0b1c2
        d3e4f5061728394a5b6c7d8e9fb0c1d2
        e3f405162738495a6b7c8d9eafc0d1e2

msg   : aa55f00fcc339669aa55f00fcc339669
        aa55f00fcc339669aa55f00fcc339669

ct    : c2e199ac8c23ce6e3778e7fd0b4f8f75
        2badd4b67be0cdc3f6c98ae5f6fb0d25

tag   : 7aea3fbce699ceb1d0737e0483217745
]]></sourcecode>
      </section>
      <section anchor="test-vector-10-all-zeros-plaintext">
        <name>Test Vector 10 - All zeros plaintext</name>
        <sourcecode type="test-vectors"><![CDATA[
key   : 9e8d7c6b5a4f3e2d1c0b9a8f7e6d5c4b
        3a2f1e0d9c8b7a6f5e4d3c2b1a0f9e8d

nonce : 5f9d3b7e2c8a4f6d1b9e5c7a3d8f2b6e

ad    : daebfc0d1e2f405162738495a6b7c8d9

msg   : 00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000
        00000000000000000000000000000000

ct    : fc7f1142f681399099c5008980e73420
        65b4e62a9b9cb301bdf441d3282b6aa9
        3bd7cd735ef77755b4109f86b7c09083
        8e7b05f08ef4947946155a03ff483095
        152ef3dec8bdddae3990d00d41d5ee6c
        90dcf65dbed4b7ebbe9bb4ef096e1238
        d388bf15faacdb7a68be19dddc8a5b74
        216f4442bfa32d1dfccdc9c4020baec9

tag   : ad0b841c3d145a6ee86dc7b67338f113
]]></sourcecode>
      </section>
    </section>
    <section anchor="function-by-function-example">
      <name>Function-by-Function Example</name>
      <t>This appendix provides step-by-step examples of HiAE internal functions for implementers. All values are in hexadecimal.</t>
      <section anchor="initial-values-for-example">
        <name>Initial Values for Example</name>
        <artwork><![CDATA[
Key:   0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef
Nonce: 00112233445566778899aabbccddeeff
AD:    48656c6c6f (5 bytes: "Hello")
Msg:   576f726c64 (5 bytes: "World")
]]></artwork>
      </section>
      <section anchor="aesl-function-example">
        <name>AESL Function Example</name>
        <t>The AESL function performs a single AES encryption round with a zero round key.</t>
        <artwork><![CDATA[
Input Block:  00112233445566778899aabbccddeeff

Output Block: 6379e6d9f467fb76ad063cf4d2eb8aa3
]]></artwork>
      </section>
      <section anchor="initialize-function-example">
        <name>Initialize Function Example</name>
        <t>The Initialize function sets up the initial state from key and nonce.</t>
        <artwork><![CDATA[
Key:   0123456789abcdef0123456789abcdef
       0123456789abcdef0123456789abcdef
Nonce: 00112233445566778899aabbccddeeff

Initial State (before diffusion rounds):
  S0:  3243f6a8885a308d313198a2e0370734
  S1:  0123456789abcdef0123456789abcdef
  S2:  3243f6a8885a308d313198a2e0370734
  S3:  00112233445566778899aabbccddeeff
  S4:  00000000000000000000000000000000
  S5:  0123456789abcdef0123456789abcdef
  S6:  00000000000000000000000000000000
  S7:  4a4093822299f31d0082efa98ec4e6c8
  S8:  0123456789abcdef0123456789abcdef
  S9:  00000000000000000000000000000000
  S10: 01326754cdfeab9889baefdc45762310
  S11: 3243f6a8885a308d313198a2e0370734
  S12: 4a4093822299f31d0082efa98ec4e6c8
  S13: 0123456789abcdef0123456789abcdef
  S14: 00000000000000000000000000000000
  S15: 7803652aaac3c39031b3770b6ef3e1fc

State after Init (after diffusion):
  S0:  2a622bda4d229c9fc4b7d1a25399e321
  S1:  a04980e6407654f2760e59be74c05f9c
  S2:  308859e5787ab6c1705abbaecebfc316
  S3:  04782e5069799e9f3e325836a2ff3bcc
  S4:  007a12163596057152dc58a0f78cef2c
  S5:  7ce304cf04de20f8116cef51eea19e24
  S6:  c554da7a91164fc30e38c76ec038e66a
  S7:  3edcba33d2a5d02a4b598c5ffa003513
  S8:  50db6b4f18b7e282b8918311685abc18
  S9:  4253eebe1b72fec70ac3ec478cf9f2f2
  S10: 6bc09743dc45ba191c18a0d275ef9a8f
  S11: 251524aba97200f5b31eeeecb0f0a1c1
  S12: e1a99d3dd105e14085d6a0200f1d0c35
  S13: a4730f9d0f36ad7c67880342deed5310
  S14: 7d6ca34814e6e065c8cb4fa11ba2f8c4
  S15: 2b545cefe484f2e0ba5fb6359faffeca
]]></artwork>
      </section>
      <section anchor="update-function-example">
        <name>Update Function Example</name>
        <t>The Update function modifies the internal state with an input block.</t>
        <artwork><![CDATA[
Initial state (after initialization):
  S0:  2a622bda4d229c9fc4b7d1a25399e321
  S1:  a04980e6407654f2760e59be74c05f9c
  S2:  308859e5787ab6c1705abbaecebfc316
  S3:  04782e5069799e9f3e325836a2ff3bcc
  S4:  007a12163596057152dc58a0f78cef2c
  S5:  7ce304cf04de20f8116cef51eea19e24
  S6:  c554da7a91164fc30e38c76ec038e66a
  S7:  3edcba33d2a5d02a4b598c5ffa003513
  S8:  50db6b4f18b7e282b8918311685abc18
  S9:  4253eebe1b72fec70ac3ec478cf9f2f2
  S10: 6bc09743dc45ba191c18a0d275ef9a8f
  S11: 251524aba97200f5b31eeeecb0f0a1c1
  S12: e1a99d3dd105e14085d6a0200f1d0c35
  S13: a4730f9d0f36ad7c67880342deed5310
  S14: 7d6ca34814e6e065c8cb4fa11ba2f8c4
  S15: 2b545cefe484f2e0ba5fb6359faffeca

Input block: 48656c6c6f0000000000000000000000

After applying the Update function:
  S0:  a04980e6407654f2760e59be74c05f9c
  S1:  308859e5787ab6c1705abbaecebfc316
  S2:  4c1d423c06799e9f3e325836a2ff3bcc
  S3:  007a12163596057152dc58a0f78cef2c
  S4:  7ce304cf04de20f8116cef51eea19e24
  S5:  c554da7a91164fc30e38c76ec038e66a
  S6:  3edcba33d2a5d02a4b598c5ffa003513
  S7:  50db6b4f18b7e282b8918311685abc18
  S8:  4253eebe1b72fec70ac3ec478cf9f2f2
  S9:  6bc09743dc45ba191c18a0d275ef9a8f
  S10: 251524aba97200f5b31eeeecb0f0a1c1
  S11: e1a99d3dd105e14085d6a0200f1d0c35
  S12: ec1663f16036ad7c67880342deed5310
  S13: 7d6ca34814e6e065c8cb4fa11ba2f8c4
  S14: 2b545cefe484f2e0ba5fb6359faffeca
  S15: 4672d0d4a6a8fc93fe85701ff61a9e10
]]></artwork>
      </section>
      <section anchor="enc-function-example">
        <name>Enc Function Example</name>
        <t>The Enc function encrypts a single message block.</t>
        <artwork><![CDATA[
State (after processing AD "Hello"):
  S0:  a04980e6407654f2760e59be74c05f9c
  S1:  308859e5787ab6c1705abbaecebfc316
  S2:  4c1d423c06799e9f3e325836a2ff3bcc
  S3:  007a12163596057152dc58a0f78cef2c
  S4:  7ce304cf04de20f8116cef51eea19e24
  S5:  c554da7a91164fc30e38c76ec038e66a
  S6:  3edcba33d2a5d02a4b598c5ffa003513
  S7:  50db6b4f18b7e282b8918311685abc18
  S8:  4253eebe1b72fec70ac3ec478cf9f2f2
  S9:  6bc09743dc45ba191c18a0d275ef9a8f
  S10: 251524aba97200f5b31eeeecb0f0a1c1
  S11: e1a99d3dd105e14085d6a0200f1d0c35
  S12: ec1663f16036ad7c67880342deed5310
  S13: 7d6ca34814e6e065c8cb4fa11ba2f8c4
  S14: 2b545cefe484f2e0ba5fb6359faffeca
  S15: 4672d0d4a6a8fc93fe85701ff61a9e10

Message Block: 576f726c640000000000000000000000

Ciphertext Block: 03e5d2157300b718595429195c9278e7

Updated State after Enc:
  S0:  308859e5787ab6c1705abbaecebfc316
  S1:  4c1d423c06799e9f3e325836a2ff3bcc
  S2:  5715607a5196057152dc58a0f78cef2c
  S3:  7ce304cf04de20f8116cef51eea19e24
  S4:  c554da7a91164fc30e38c76ec038e66a
  S5:  3edcba33d2a5d02a4b598c5ffa003513
  S6:  50db6b4f18b7e282b8918311685abc18
  S7:  4253eebe1b72fec70ac3ec478cf9f2f2
  S8:  6bc09743dc45ba191c18a0d275ef9a8f
  S9:  251524aba97200f5b31eeeecb0f0a1c1
  S10: e1a99d3dd105e14085d6a0200f1d0c35
  S11: ec1663f16036ad7c67880342deed5310
  S12: 2a03d12470e6e065c8cb4fa11ba2f8c4
  S13: 2b545cefe484f2e0ba5fb6359faffeca
  S14: 4672d0d4a6a8fc93fe85701ff61a9e10
  S15: 9c56037e72109cee878398424f789257
]]></artwork>
      </section>
      <section anchor="finalize-function-example">
        <name>Finalize Function Example</name>
        <t>The Finalize function produces the authentication tag.</t>
        <artwork><![CDATA[
State (after processing all AD and message):
  S0:  308859e5787ab6c1705abbaecebfc316
  S1:  4c1d423c06799e9f3e325836a2ff3bcc
  S2:  5715607a5196057152dc58a0f78cef2c
  S3:  7ce304cf04de20f8116cef51eea19e24
  S4:  c554da7a91164fc30e38c76ec038e66a
  S5:  3edcba33d2a5d02a4b598c5ffa003513
  S6:  50db6b4f18b7e282b8918311685abc18
  S7:  4253eebe1b72fec70ac3ec478cf9f2f2
  S8:  6bc09743dc45ba191c18a0d275ef9a8f
  S9:  251524aba97200f5b31eeeecb0f0a1c1
  S10: e1a99d3dd105e14085d6a0200f1d0c35
  S11: ec1663f16036ad7c67880342deed5310
  S12: 2a03d12470e6e065c8cb4fa11ba2f8c4
  S13: 2b545cefe484f2e0ba5fb6359faffeca
  S14: 4672d0d4a6a8fc93fe85701ff61a9e10
  S15: 9c56037e72109cee878398424f789257

AD length:  5 bytes
Msg length: 5 bytes

Length encoding block: 2800000000000000 2800000000000000
                      (40 bits)        (40 bits)

Tag = S0 ^ S1 ^ ... ^ S15 = 45178cd06ef0a8bed8e9082fe49ec818
]]></artwork>
      </section>
      <section anchor="complete-encryption-example">
        <name>Complete Encryption Example</name>
        <artwork><![CDATA[
Key:       0123456789abcdef0123456789abcdef
           0123456789abcdef0123456789abcdef
Nonce:     00112233445566778899aabbccddeeff
AD:        48656c6c6f ("Hello")
Plaintext: 576f726c64 ("World")

Ciphertext: 03e5d21573
Tag:        45178cd06ef0a8bed8e9082fe49ec818
]]></artwork>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+1963bcRpLm/3oKrPpHkzOsEu4XbntmaEqy1dZtRHnavXPG
UgJIkGhVFcqFKom05Tn7cx9hf+6z7AvsO+yT7BeRmUACVSRL3e657LFPN4UC
EnmJjMsXkZGJ6XQ62dSbuTx1Hry5ks7X9dlj52y7uZLLTV2IjSydx8tifbPa
1M3SOZtfNut6c7V4MBF5vpYf8Ba98WBSNsVSLFBLuRbVZrq6EotpUa0vp1e1
kFM3mFBdePnm1Gk35WRSr9anzma9bTe+62auP3kvbz426/LUebrcyPVSbqaP
qKbJbxzcfn+5brarU+ecOtI4T5r1djFpt/miblv0683NCi0/ffzmyWTSbsSy
fCvmzRK3bmQ7aRdivXn7w7bZyFbdWdWnzj9vmuLEaZv1Zi2rFlc3C7r4l8lE
YPDN+nTiTCcO/quXeOvJzHkkl3XLd9Q4n6zF8r11t1lfimX9oyA64aloN/Mb
jKWY8VO5EPX81KnKf3DdaobRDap/NXNegWBW7a+uts3ysr87rP3rrfgoa7ti
ovdsxS/9wxU/nRXNYtDIMzSyFrmcW8082xaitW/f186cXpit+IXbGrqYORfb
pdXKxdX2x6tm2929r5F2u2zVK3YTk2WzXuCdD/J0gtJPnr66mJ49vjjlNw0L
n5UfxLIA08qeaZkjxLp0jlD8+AGXXxco/ESWci3mmKVKVY3Cr9ZNIcFUIP6F
fg8E2uZzEgYq4GWJqmIj1pdyc+pcbTar9vThw+WH+WqbtzMwxGZ22Xx4SBd0
5yF19eGLpxdvZnQ1Qw2zVVlxJR2z8X9T/S+T6NR5wS1yB1sMcLuRTlNZ3cK/
zhtZXC2beXN54xxRE8dcRQlhO3UgWd7U8yBsZoCadq9fnp+fTcekWzrfzjdr
Mf26vrxy3lxB4i6vVtuNA6pNvxQtiHqrXrgoruRCOmjFib86hVS09eWS+/d0
sZrj0XLDY7GIr0SZO07lXsgNyblzIYstNAxGc3724gJD8AM9Za1c16gXQzHk
evTy6anjuTPPdZOHWZJOAygabxq5URZO/beefyeJmVdfz5yzJdrv7iqOfS0+
1IMHo9fA4l+Chd+PXrvY5leilHI1eDp692zmnAtQqm5Gb58ty7UUo4ejl7+Z
OU+277ftVb0Qo9e/ET9ur+pS7hQYVfFm5jxtm1yOXn8j3gtIWD14uDvsb+qb
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
nvbT9sAAAA==

-->

</rfc>
