<?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-rfc2629 version 1.5.17 -->
<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ssmith-cesr-01" category="info" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.11.1 -->
  <front>
    <title abbrev="CESR">Composable Event Streaming Representation (CESR)</title>
    <seriesInfo name="Internet-Draft" value="draft-ssmith-cesr-01"/>
    <author initials="S." surname="Smith" fullname="S. Smith">
      <organization>ProSapien LLC</organization>
      <address>
        <email>sam@prosapien.com</email>
      </address>
    </author>
    <date year="2021" month="November" day="29"/>
    <area>TODO</area>
    <workgroup>TODO Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>The Composable Event Streaming Representation (CESR) is dual text-binary encoding format that has the unique property of text-binary concatenation composability. This composability property enables the round trip conversion en-masse of concatenated primitives between the text domain and binary domain while maintaining separability of individual primtives. This enables convenient usability in the text domain and compact transmission in the binary domain. CESR primitives are self-framing. CESR supports self-framing group codes that enable stream processing and pipelining in both the text and binary domains. CESR supports composable text-binary encodings for general data types as well as suites of cryptographic material. Popular cryptographic material suites have compact encodings for efficiency while less compact encodings provide sufficient extensibility to support all foreseeable types. CESR streams also support interleaved JSON, CBOR, and MGPK serializations. CESR is a universal encoding that uniquely provides dual text and binary domain representations via composable conversion.</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/WebOfTrust/ietf-cesr"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <name>Introduction</name>
      <t>One way to better secure Internet communications is to use cryptographically verifiable primitives and data structures in communication. These provide essential building blocks for zero trust computing and networking architectures. Traditionally cryptographic primitives that include but are not limited to digests, salts, seeds (private keys), public keys, and digital signatures have been largely represented in some type of binary encoding. This limits their usability in domains or protocols that are human centric or equivalently that only support <xref target="ASCII" format="default"/> text-printable characters, <xref target="RFC20" format="default"/>. These domains include source code, <xref target="JSON" format="default"/> documents, <xref target="RFC4627" format="default"/>, system logs, audit logs, Ricardian contracts, and human readable text documents of many types.</t>
      <t>Generic binary-to-text, <xref target="Bin2Txt" format="default"/>, or simply textual encodings such as Base64, <xref target="RFC4648" format="default"/>, do not provide any information about the type or size of the underlying cryptographic primitive. Base64 only provides value information. More recently <xref target="Base58Check" format="default"/> was developed as a fit for purpose textual encoding of cryptographic primitives for shared distributed ledger applications that in addition to value may include information about the type and in some cases the size of the underlying cryptographic primitive, <xref target="WIF" format="default"/>. But each application may use a non-interoperable encoding of type and optionally size. Interestingly because a binary encoding may include as a subset some codes that are in the text-printable compatible subset of <xref target="ASCII" format="default"/> such as ISO Latin-1, <xref target="Latin1" format="default"/> or UTF-8, <xref target="UTF8" format="default"/>, one may <em>serendipitously</em> find, for a given cryptographic primitive, a text-printable type code from a binary code table such as the table <xref target="MCTable" format="default"/> from <xref target="MultiCodec" format="default"/> for <xref target="IPFS" format="default"/>. Indeed some <xref target="Base58Check" format="default"/> applications take advantage of the binary MultiCodec tables but only used <em>serendipitous</em> text compatible type codes. Serindipoudous text encodings that appear in binary code tables, do not, however, work in general for any size or type. So the serindipoudous approach is not universally applicable and is no substitute for a true textual encoding protocol for cryptographic primitives.</t>
      <t>In general there is no standard text based encoding protocol that provides universal type, size, and value encoding for cryptographic primitives. Providing this capability is the primary motivation for the encoding protocol defined herein.</t>
      <t>Importantly, a textual encoding that includes type, size, and value is self-framing. A self-framing text primitive may be parsed without needing any additional delimiting characters. Thus a stream of concatenated primitives may be individually parsed without the need to encapsulate the primitives inside textual delimiters or envelopes. Thus a textual self-framing encoding provides the core capability for a streaming text protocol like <xref target="STOMP" format="default"/> or <xref target="RAET" format="default"/>. Although a first class textual encoding of cryptographic primitives is the primary motivation for the CESR protocol defined herein, CESR is sufficiently flexible and extensible to support other useful data types, such as, integers of various sizes, floating point numbers, date-times as well as generic text. Thus this protocol is generally useful to encode in text data data structures of all types not merely those that contain cryptographic primitives.</t>
      <t>Textual encodings have numerous usability advantages over binary encodings. The one advantage, however, a binary encoding has over text is compactness. An encoding protocol that has the property we call <em>text-binary concatentation composability</em> or more succinctly <em>composability</em>, enables both the usability of text and the compactness of binary. Composability may be the most uniquely innovative and useful feature of the encoding protocol defined herein.</t>
      <section anchor="composability" numbered="true" toc="default">
        <name>Composability</name>
        <t><em>Composability</em> as defined here is short for <em>text-binary concatenation composability</em>. An encoding has <em>composability</em> when any set of self-framing concatenated primitives expressed in either the text domain or binary domain may be converted as a group to the other domain and back again without loss. Essentially <em>composability</em> provides round-trippable lossless conversion between text and binary representations of any set of concatenated primitives when converted as a set not merely individually. The property enables a stream processor to safely convert en-masse a a stream of text primitives to binary for compact transmission that the stream processor at the other end may safely convert back to text en-masse for further processing or archival storage as text. With the addition of group framing codes as composable primitives, such a composable encoding protocol enables pipelining (multi-plexing and de-multiplexing) of streams in either text or compact binary. This allows management at scale for high-bandwidth applications that benefit from core affinity off-loading of streams <xref target="Affinity" format="default"/>.</t>
      </section>
      <section anchor="abstract-domain-representations" numbered="true" toc="default">
        <name>Abstract Domain Representations</name>
        <t>The cryptographic primitives defined here (i.e. CESR) inhabit three different domains each with a different representation.  The first domain we call streamable text or <em>text</em> and is denoted as <em>T</em>. The third domain we call streamable binary or <em>binary</em> and is denoted as <em>B</em>. Composability is defined between the <em>T</em> and <em>B</em> domains. The third domain we call <em>raw</em> and is denoted as <em>R</em>. The third domain is special because primitives in this domain are represented by a pair or two tuple of values namely <em>(text code, raw binary)</em>. The <em>text code</em> element of the <em>R</em> domain pair is string of one or more text characters that provides the type and size information for the encoded primitive when in the <em>T</em> domain. Actual use of cryptographic primitives happens in the <em>R</em> domain using the <em>raw binary</em> element of the <tt>(code, raw binary)</tt> pair. Cryptographic primitive values are usually represented as strings of bytes that represent very large integers. Cryptographic libraries typically assume that the inputs and outputs of their functions will be such strings of bytes. The <em>raw binary</em> element of the <em>R</em> domain pair is such a string of bytes.</t>
        <t>A given primitive in the <em>T</em> domain is denoted with <tt>t</tt>.  A member of an indexed set of primitives in the <em>T</em> domain is denoted with <tt>t[k]</tt>. Likewise a given primitive in the <em>B</em> domain is denoted with <tt>b</tt>. A member of an indexed set of primitives in the <em>B</em> domain is denoted with <tt>b[k]</tt>. Similarly a given primitive in the <em>R</em> domain is denoted with <tt>r</tt>. A member of indexed set of primitives in the <em>R</em> domain is denoted with  <tt>r[k]</tt>.</t>
        <section anchor="transformations-between-domains" numbered="true" toc="default">
          <name>Transformations Between Domains</name>
          <t>Although, the composability property, mentioned above but described in detail below, only applies to conversions back and forth between the <em>T</em>, and <em>B</em>, domains, conversions between the <em>R</em>, and <em>T</em> domains as well as conversions between the <em>R</em> and <em>B</em> domains are also defined and supported by the protocol. As a result there is a total of six transformations, one in each direction between the three domains.</t>
          <t>Let <tt>T(B)</tt> denote the abstract transformation function from the <em>B</em> domain to the <em>T</em> domain. This is the dual of <tt>B(T)</tt> below.</t>
          <t>Let <tt>B(T)</tt> denote the abstract transformation function from the <em>T</em> domain to the <em>B</em> domain. This is the dual of <tt>T(B)</tt> above.</t>
          <t>Let <tt>T(R)</tt> denote the abstract transformation function from the <em>R</em> domain to the <em>T</em> domain. This is the dual of <tt>R(T)</tt> below.</t>
          <t>Let <tt>R(T)</tt> denote the abstract transformation function from the <em>T</em> domain to the <em>R</em> domain. This is the dual of <tt>T(R)</tt> above.</t>
          <t>Let <tt>B(R)</tt> denote the abstract transformation function from the <em>R</em> domain to the <em>B</em> domain. This is the dual of <tt>R(B)</tt> below.</t>
          <t>Let <tt>R(B)</tt> denote the abstract transformation function from the <em>B</em> domain to the <em>R</em> domain. This is the dual of <tt>B(R)</tt> above.</t>
          <t>Given these transformations we can complete of circuit of transformations that starts in any of the three domains and then crosses over the other two domains in either direction. For example starting in the <em>R</em> domain we can traverse a circuit that crosses into the <em>T</em> and <em>B</em> domains and then crosses back into the <em>R</em> domain as follows:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
R->T(R)->T->B(T)->B->R(B)->R
]]></artwork>
          <t>Likewise starting in the <em>R</em> domain we can traverse a circuit that crosses into the <em>B</em> and <em>T</em> domains and then crosses back into the <em>R</em> domain as follows:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
R->B(R)->B->T(B)->T->R(T)->R
]]></artwork>
        </section>
        <section anchor="concatenation-composability-property" numbered="true" toc="default">
          <name>Concatenation Composability Property</name>
          <t>Let <tt>+</tt> represent concatenation. Concatenation is associative and may be applied to any two primitives or any two groups or sets of concatenated primitives. For example:</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
t[0] + t[1] + t[2] + t[3] = (t[0] + t[1]) + (t[2] + t[3])
]]></artwork>
          <t>If we let <tt>cat(x[k])</tt> denote the concatenation of all elements of a set of indexed primitives <tt>x[k]</tt> where each element is indexed by a unique value of <tt>k</tt> then we can denote the transformation between domains of a concatenated set of primitives as follows:</t>
          <t>Let <tt>T(cat(b[k]))</tt> denote the concrete transformation of a given concatenated set of primitives, <tt>cat(b[k])</tt> from the <em>B</em> domain to the <em>T</em> domain.</t>
          <t>Let <tt>B(cat(t[k]))</tt> denote the concrete transformation of a given concatenated set of primitives, <tt>cat(t[k])</tt> from the <em>T</em> domain to the <em>B</em> domain.</t>
          <t>The concatentation composability property between <em>T</em> and <em>B</em> is expressed as follows:</t>
          <t>Given a set of primitives <tt>b[k]</tt> and <tt>t[k]</tt> and transformations <tt>T(B)</tt> and <tt>B(T)</tt> such that <tt>t[k] = T(b[k])</tt> and <tt>b[k] = B(t[k])</tt> for all <tt>k</tt>, then <tt>T(B)</tt> and <tt>B(T)</tt> are jointly concatenation composable if and only if,</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
T(cat(b[k]))=cat(T(b[k])) and B(cat(t[k]))=cat(B(t[k])) for all k
]]></artwork>
          <t>Basically composability (over concatenation) means that the transformation of a set (as a whole) of concatenated primitives is equal to the concatentation of the set of individually transformed primitives.</t>
          <t>For example, suppose we have two primitives in the text domain, namely, <tt>t[0]</tt> and <tt>t[1]</tt> that each respectively transform to primitives in the binary domain, namely, <tt>b[0]</tt> and <tt>b[1]</tt>. The transformation duals <tt>B(T)</tt> and <tt>T(B)</tt> are composable if and only if,</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
B(t[0] + t[1]) = B(t[0]) + B(t[1]) = b[0] + b[1]
]]></artwork>
          <t>and</t>
          <artwork name="" type="" align="left" alt=""><![CDATA[
T(b[0] + b[1]) = T(b[0]) + T(b[1]) = t[0] + t[1]
]]></artwork>
          <t>The composability property allows us to create arbitrary compositions of primitives via concatenation in either the <em>T</em> or <em>B</em> domain and then convert the composition en masse to the other domain and then de-concatenate the result without loss. The self-framing property of the primitives enables de-concatenation.</t>
          <t>The composability property is an essential building block for streaming in either domain. The use of framing primitives that count other primitives enables multiplexing and demultiplexing of arbitrary groups of primitives for pipelining and/or on or off loading of streams. The text domain provides usability and the binary domain provides compactness. Composability allows efficient conversion of composed (concatenated) groups of primitives without having to individually parse each primitive.</t>
        </section>
      </section>
    </section>
    <section anchor="concrete-domain-representations" numbered="true" toc="default">
      <name>Concrete Domain Representations</name>
      <t>Text, <em>T</em>, domain representations in CESR use only the characters from the the URL and filename safe variant of the IETF RFC-4648 Base64 standard, <xref target="RFC4648" format="default"/>. Unless otherwise indicated all references to Base64 (RFC-4648) in this document imply the URL and filename safe variant. The URL and filename safe variant of Base64 uses in order the 64 characters <tt>A</tt> through <tt>Z</tt>, <tt>a</tt> through <tt>z</tt>, <tt>-</tt>, and <tt>_</tt> to encode 6 bits of information. In addition Base64 uses the <tt>=</tt> character for padding but CESR does not use the <tt>=</tt> character for any purpose.</t>
      <t>Base64, <xref target="RFC4648" format="default"/>, by itself does not satisfy the composability property. 
In CESR, both <em>T</em> and <em>B</em> domain representations include a prepended framing code prefix that is structured in such a way as to ensure composability.</t>
      <t>Suppose for example we wanted to use naive Base64 characters in the text domain and naive binary bytes in the binary domain. For the sake of the example we will call these naive text and naive binary encodings and domains. Recall that a byte encodes 8 bits of information and a Base64 character encodes 6 bits information. Furthermore suppose that we have three primitives denoted <tt>x</tt>, <tt>y</tt>, and <tt>z</tt> in the naive binary domain with lengths of 1, 2, and 3 bytes respectively.</t>
      <t>In the following diagrams we denote each byte in a naive binary primitive with zero based most significant bit first indicies.  For example, <tt>b1</tt> is bit one <tt>b0</tt> is bit zero and <tt>B0</tt> for byte zero, <tt>B1</tt> for byte 1, etc.</t>
      <t>The byte and bit level diagram for <tt>x</tt> is shown below where we use <tt>X</tt> to denote its bytes:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
|           X0          |
|b7:b6:b5:b4:b3:b2:b1:b0|
]]></artwork>
      <t>Likewise for <tt>y</tt> below:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
|           Y0          |           Y1          |
|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|
]]></artwork>
      <t>And finally for <tt>z</tt> below:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
|           Z0          |           Z1          |           Z2          |
|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|
]]></artwork>
      <t>When doing a naive Base64 conversion of a naive binary primitive, one Base64 character represents only six bits from a given byte. In the following diagrams each character of a Base64 conversion is denoted with zero based most significant character first indicies.</t>
      <t>Therefore to encode <tt>x</tt> in Base64, for example, requires at least two Base64 characters because the zeroth character only captures the six bits from the first byte and another character is needed to capture the other two bits. The convention in Base64 is use a Base64 character where the non-coding bits are zeros. This is diagrammed as follows:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
|           X0          |
|b7:b6:b5:b4:b3:b2:b1:b0|
|        C0       |        C1       |
]]></artwork>
      <t>Naive Base64 encoding always pads each individual conversion of a string of bytes to an even multiple of four characters. This provides something that may be described as It may be described as a sort of one-way composability but it is not true composability because it only works for a set of distinct conversions that are concatented after conversion not a single conversion of a concatenated set.  We show the pads by replacing the spaces with <tt>=</tt> characters. The naive Base64 conversion of <tt>x</tt> is as follows:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
|           X0          |
|b7:b6:b5:b4:b3:b2:b1:b0|
|        C0       |        C1       |========C2=======|========C3=======|

]]></artwork>
      <t>Likewise <tt>y</tt> requires at least 3 Base64 characters to capture all of its 16 bits as follows:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
|           Y0          |           Y1          |
|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|
|        C0       |        C1       |        C1       |
]]></artwork>
      <t>Alignment on a 4 character boundary requires one pad character this becomes:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
|           Y0          |           Y1          |
|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|
|        C0       |        C1       |        C2       |========C3=======|
]]></artwork>
      <t>Finally because <tt>z</tt>  requires exactly four Base64 characters to capture all of its 24 bits, there are no pad characters needed.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
|           Z0          |           Z1          |           Z2          |
|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|
|        C0       |        C1       |        C2       |        C3       |
]]></artwork>
      <t>Suppose we concatenate <tt>x + y</tt> into a three byte composition in the naive binary domain before Base64 encoding the concatentated whole. We have the following:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
|           X0          |           Y0          |           Y1          |
|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|
|        C0       |        C1       |        C2       |        C3       |
]]></artwork>
      <t>We see that the least significant two bits of X0 are encoded into the same character, <tt>C1</tt> as the most significant four bits of <tt>Y0</tt>. Therefore, a text domain parser is unable to cleanly de-concatenate on a character by character basis the conversion of <tt>x + y</tt> into separate text domain primitives. Thus naive binary to Base64 conversion does not satisfy the composability constraint.</t>
      <t>Suppose instead we start in the text domain with primitives <tt>u</tt> and <tt>v</tt> of lengths 1 and 3 characters respectively.
If we concatenate these two primitives as <tt>u + v</tt> in text domain and then convert as a whole to naive binary. We have the following:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
|        U0       |        V0       |        V1       |        V2       |
|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|b7:b6:b5:b4:b3:b2:b1:b0|
|           B0          |           B1          |           B2          |
]]></artwork>
      <t>We see that all six bits of information in <tt>U0</tt> is included with the least significant two bits of information in <tt>V0</tt> in <tt>B0</tt>. Therefore a binary domain parser is unable to cleanly de-concatenate on a byte by byte basis the conversion of <tt>u + v</tt> into separate binary domain primitives. Thus naive Base64 to binary conversion does not satisfy the composability constraint.</t>
      <t>Indeed the composability property is only satisfied if each primitive in the <em>T</em> domain is an integer multiple of four Base64 characters and each primitive in the <em>B</em> domain is an integer multiple of three bytes. Each of Four Base64 characters and three bytes capture twenty-four bits of information. Twenty-four is the least common multiple of six and eight. Therefore primitive lengths that integer multiples of either four Base64 characters or three bytes in their respective domains capture integer multiples of twenty-four bits of information. Given that constraint, conversion of concatenated primitives in one domain never result in two adjacent primitives sharing the same byte or character in the converted domain.</t>
      <t>To elaborate, when converting streams made up of concatenated primitives back and forth between the <em>T</em> and <em>B</em> domains, the converted results will not align on byte or character boundaries at the end of each primitive unless the primitives themselves are integer multiples of twenty-four bits of information. In other words all primitives must be aligned on twenty-four bit boundaries to satisfy the composibility property. This means that the minimum length of any primitive in the B domain is three bytes and the minimum length of any primitive in the T domain is four Base64 characters.</t>
      <section anchor="stable-text-type-codes" numbered="true" toc="default">
        <name>Stable Text Type Codes</name>
        <t>There are many coding schemes that could satisfy the composability constraint of alignment on 24 bit boundaries. The main reason for using a <em>T</em> domain centric encoding is higher usability or human friendliness. Indeed a primary design goal of CESR is to select an encoding approach that provides such high usability or human friendliness in the <em>T</em> domain. This type of usability goal is simpley not realizable in the <em>B</em> domain. The B domain's purpose is merely to provide convenient compactness at scale. We believe usability in the <em>T</em> domain is maximized when the type portion of the prepended framing code is <em>stable</em> or <em>invariant</em>. Stable type coding makes it much easier to recognize primitives of a given type  when debugging source, reading messages, or documents in the <em>T</em> domain that include encoded primitives. This is true even when those primitives have different lengths or values. For primitive types that have fixed lengths, i.e. all primitives of that type have the same length, stable type coding aids not only visual type but visual size recognition.</t>
        <t>Usability of stable type coding is maximized when the type portion appears first in the framing code. Stability also requires that for a given type, the type coding portion must consume a fixed integer number of characters in the <em>T</em> domain. To clarify, as used here, stable type coding in the <em>T</em> domain never shares information bits with either length or value coding in any given framing code character and appears first in the framing code. Stable type coding in the <em>T</em> domain translates to stable type coding in the <em>B</em> domain except that the type coding portion of the framing code may not respect byte boundaries. This is an acceptable tradeoff because binary domain parsing tools easily accommodate bit fields and bit shifts while text domain parsing tools no not. By in large text domain parsing tools only process whole characters. This is another reason to impose a stability constraint on the <em>T</em> domain type coding instead of the <em>B</em> domain.</t>
      </section>
      <section anchor="code-characters-and-ante-bytes" numbered="true" toc="default">
        <name>Code Characters and Ante Bytes</name>
        <t>There are two ways to provide the required alignment on 24 bit boundaries to satisfy the composability property. One is to increase the size of text code to ensure that the <em>T</em> domain primitive has a total size (length) that is an integer multiple of 4. The other is to increase the size of the raw binary value by pre-pending pad bytes of zeros to the raw binary value before conversion to Base64 to ensure the total size of the raw binary value with pre-pended bytes is an integer multiple of 3 bytes. This ensures that size in characters of the Base64 conversion of the pre-padded raw binary is an integer multiple of 4 characters. In this case the length of the pre-pended type code <bcp14>MUST</bcp14> also therefore be an integer multiple of 4 characters so that the total length of the <em>T</em> domain primitive with code is an integer multiple of 4 characters.</t>
        <t>The first way may be more compact in some cases. The second way may be easier to compute in some cases. In order to avoid confusion with the use of the term <tt>pad character</tt>, when pre-padding with bytes we use the term <tt>ante bytes</tt>. The term pad may be confusing not merely because both ways use a type of padding but it is also true that the the number of pad characters when padding post-conversion equals the number of ante bytes when padding pre-conversion.</t>
        <t>Suppose for example the raw binary value is 32 bytes in length. The next higher integer multiple of 3 is 33 bytes. Thus 1 additional ante byte is needed to make the size (length in byte) of raw binary an integer multiple of 3. The 1 ante byte makes that combination a total of 33 bytes in length. The resultant Base64 converted value will be 44 characters in length, which is an integer multiple of 4 characters. In contrast, recall that when  we convert a 32 byte raw binary value to Base64 the converted value will have 1 pad character which may be replaced with a text code character. In both cases the resultant length in Base64 is 44 characters.</t>
        <t>Similarly, a 64 byte sized raw binary needs 2 ante bytes to make the combination 66 bytes in length where 66 is the next integer multiple of 3 greater than 64. When converted the result is 88 characters in length. The number of pad characters added on the result of the Base64 conversion of a 64 byte raw binary is also 2.</t>
        <t>In summary we can use pre-conversion ante bytes or post-conversion pad characters in our coding scheme to ensure composable 24 bit alignment.</t>
      </section>
      <section anchor="multiple-code-table-approach" numbered="true" toc="default">
        <name>Multiple Code Table Approach</name>
        <t>The design goals for CESR framing codes include minimizing the framing code size for the most frequently used (most popular) codes while also supporting a sufficiently comprehensive set of codes for all foreseeable current and future applications. This requires a high degree of both flexibility and extensibility. We believe this is best achieved with multiple code tables each with a different coding scheme that is optimized for a different set of features instead of a single one-size-fits-all scheme. A specification that supports multiple coding schemes may appear on the surface to be much more complex to implement but careful design of the coding schemes can reduce implementation complexity by using a relatively simple single integrated parse and conversion table. Parsing in any given domain given stable type codes may then be implemented with a single function that simply reads the appropriate type selector in the table to know how to parse and convert the rest of primitive.</t>
      </section>
    </section>
    <section anchor="text-coding-scheme-design" numbered="true" toc="default">
      <name>Text Coding Scheme Design</name>
      <section anchor="text-code-size" numbered="true" toc="default">
        <name>Text Code Size</name>
        <t>Recall from above, the R domain representation is a pair<tt>(text code, raw binary)</tt>. The text code is stable and begins with one or more Base64 characters that provide the primitive type may also include one or more additional characters that provide the length. The actual usable cryptographic material is provided by the <em>raw binary</em> element. The corresponding <em>T</em> domain representation of this pair is created by first converting the <em>raw binary</em> element to Base64, then stripping off any Base64 pad characters then finally prepending the text code element to the result of the conversion.</t>
        <t>When the length of a given naive binary string is not an integer multiple of three bytes, standard Base64 conversion software appends one or two pad characters to the resultant Base64 conversion.</t>
        <t>With pad characters, a set of Base64 strings resulting from the subsequent conversions of a set of binary strings could be concatenated and then converted back to binary en masse while preserving byte boundaries. In order to preserve byte boundaries the pad characters <bcp14>MUST</bcp14> be stripped in the conversion.  Because the pad characters are stripped, this approach does not provide two-way or true composability as defined above. The number of pad characters is a function of the length of the binary string. Let <em>N</em> be the length the string. When <tt>N mod 3 = 1</tt> then there are 8 bits in remainder that must be encoded into Base64. Recall the examples above, a single byte (8 bits) require two Base64 characters. The first encodes  6 bits and the second the remaining 2 bits for a total of 8 bits. The last character is selected such that its non-coding 4 bits are zero. Thus two additional pad characters are required to pad out the resulting conversion so that its length is an integer multiple of 4 Base64 characters. When <tt>N mod 3 = 2</tt> then two bytes (16 bits) require three Base64 characters. The first two encode 6 bits each (for 12 bits) and the third encodes the remaining 4 bits for a total of 16. The last character is selected such that its non-coding 2 bits are zero. Thus one additional pad character is required to pad out the resulting conversion so that is length is an integer multiple of 4 characters. When <tt>N mod 3 = 0</tt> then the binary string is aligned on a 24 bit boundary and no pad characters are required to ensure the length of the Base64 conversion is an integer multiple of 4 characters.</t>
        <t>The number of requred Base64 pad characters to ensure that a given conversion to Base64 has a length that is an integer multiple of 4 may be computed with the following formula:</t>
        <t><tt>ps = (3 - (N mod 3)) mod 3)</tt>, where <tt>ps</tt> is the pad size and <tt>N</tt> is the size in bytes of the binary string.</t>
        <t>Recall that composability is provided here by prepending text codes that are of the appropirate length to ensure 24 bit boundaries in both the <em>T</em> and the corresponding <em>B</em> domain. The advantage of this approach is that naive Base64 software tooling may be used to convert back and forth between the <em>T</em> and <em>B</em> domains, i.e. <tt>T(B)</tt> is naive Base64 encode and <tt>B(T)</tt> is naive Base64 decode. In other words CESR primitives are compatible with existing Base64 (RFC-4648) tooling. Whereas new software tooling is needed for conversions between the <em>R</em> and <em>T</em> domains, e.g. <tt>T(R)</tt> and <tt>R(T</tt> and the <em>R</em> and <em>B</em> domains, e.g. <tt>B(R)</tt> and <tt>R(B)</tt>.</t>
        <t>This pad size computation is also useful for computing the size of the text codes. Because true composability also requires that the <em>T</em> domain value <bcp14>MUST</bcp14> be an integer multiple of 4 characters in length the size of the text code <bcp14>MUST</bcp14> also be function of the pad size, <tt>ps</tt>, and hence the length of the raw binary element, <tt>N</tt>. Thus the size of the text code in Base64 characters is a function of the equivalent pad size determined by the length <tt>N mod 3</tt> of the raw binary value. If we let <em>M</em> be a non-negative integer valued variable then we have three cases:</t>
        <table align="center">
          <thead>
            <tr>
              <th align="center">Pad Size</th>
              <th align="right">Code Size</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="center">0</td>
              <td align="right">4M</td>
            </tr>
            <tr>
              <td align="center">1</td>
              <td align="right">4M+1</td>
            </tr>
            <tr>
              <td align="center">2</td>
              <td align="right">4M+2</td>
            </tr>
          </tbody>
        </table>
        <t>The minimum code sizes are 1, 2, and 4 characters for pad sizes of 1, 2, and 0 characters with <em>M</em> equal 0, 0, and 1 respectively. By increasing <em>M</em> we can have larger code sizes for a given pad size.</t>
      </section>
      <section anchor="count-group-or-framing-codes" numbered="true" toc="default">
        <name>Count, Group, or Framing Codes</name>
        <t>As mentioned above one of the primary advantages of a composable encoding is that special framing codes can be specified to support groups of primitivies. Grouping enables pipelining. Other suitable terms for these special framing codes are <em>group codes</em> or <em>count codes</em>. These are suitable because they can be used to count characters, primitives in a group, or count groups of primitives in a larger group. We can also use count codes as separators to organize a stream of primitives or to interleave non-native serializations. A count code is its own primitive. But it is a primitive that does not include a raw binary value, only the text code. Because a count code's raw binary element is empty, its pad size is always 0. Thus a count code's size is always an integer multiple of 4 characters i.e. 4, 8, etc.</t>
      </section>
      <section anchor="interleaved-non-cesr-serializations" numbered="true" toc="default">
        <name>Interleaved Non-CESR Serializations</name>
        <t>One extremely useful property of CESR is that special count codes enable CESR to be interleaved with other serializations. For example, Many applications use JSON <xref target="RFC4627" format="default">JSON</xref>, CBOR <xref target="RFC8949" format="default">CBOR</xref>, or MsgPack (MGPK) <xref target="MGPK" format="default"/> to serialize flexible self-describing data structures based on hash maps, also know as dictionaries. With respect to hash map serializations, CESR primitives may appear in two different contexts. The first context is as a delimited text primitive inside of a hash map serialization. The delimited text may be either the key or value of a (key, value) pair. The second context is as a standalone serialization that is interleaved with hash map serializations in a stream. Special CESR count codes enable support for the second context of interleaving standalone CESR with other serializations.</t>
      </section>
      <section anchor="cold-start-stream-parsing-problem" numbered="true" toc="default">
        <name>Cold Start Stream Parsing Problem</name>
        <t>After a cold start a stream processor looks for framing information to know how to parse groups of elements in the stream. If that framing information is ambiguous then the parser may become confused and require yet another cold start. While processing a given stream a parser may become confused especially if a portion of the stream is malformed in some way. This usually requires flushing the stream and forcing a cold start to resynchronize the parser to subsequent stream elements. Better yet is a re-synchronization mechanism that does not require flushing the in-transit buffers but merely skipping to the next well defined stream element boundary in order to execute  cold start. Good cold start  re-synchronization is essential to robust performant stream processing.</t>
        <t>For example, in TCP a cold start usually means closing and then reopening the TCP connection. This flushes the TCP buffers and sends a signal to the other end of the stream that may be interpreted as a restart or cold start. In UDP each packet is individually framed but a stream may be segmented into multiple packets so a cold start may require an explicit ack or nack to force a restart.</t>
        <t>Special CESR count codes support re-synchronization at each boundary between interleaved CESR and other serializations like JSON, CBOR, or MGPK</t>
        <section anchor="performant-resynchronization-with-unique-start-bits" numbered="true" toc="default">
          <name>Performant Resynchronization with Unique Start Bits</name>
          <t>Given the popularity of three specific serializations, namely, JSON, CBOR, and MGPK, more fine grained serialization boundary detection for interleaving CESR may be highly beneficial both from a performation and robustness perspective. One way to provide this is by selecting the count code start bits such that there is always a unique (mutually distinct) set of start bits at each interleaved boundary between CESR, JSON, CBOR, and MGPK.</t>
          <t>Furthermore, it may also be highly beneficial to support in-stride switching between interleaved CESR text domain streams and CESR binary domain streams. In other words the start bits for count (framing) codes in both the <em>T</em> domain (Base64) and the <em>B</em> domain should be unique. This would provide the analogous equivalent of a UTF Byte Order Mark (BOM) <xref target="BOM" format="default"/>. A BOM enables a parser of UTF encoded documents to determine if the UTF codes are big endian or little endian [[19]]. In the CESR case this feature would enable a stream parser to know if a count code along with its associated counted or framed group of primitives are expressed in the <em>T</em> or <em>B</em> domain. Toghether these impose the constraint that the boundary start bits for interleaved text CESR, binary CESR, JSON, CBOR, and MGPK be mutually distinct.</t>
          <t>Amongst the codes for map objects in the JSON, CBOR, and MGPK only the first three bits are fixed and not dependent on mapping size. In JSON a serialized mapping object always starts with <tt>{</tt>. This is encoded as <tt>0x7b</tt>. the first three bits are <tt>0b011</tt>. In CBOR the first three bits of the major type of the serialized mapping object are <tt>0b101</tt>. In MGPK (MsgPack) there are three different mapping object codes. The <em>FixMap</em> code starts with <tt>0b100</tt>. Both the <em>Map16</em> code and <em>Map32</em> code start with <tt>0b110</tt>.</t>
          <t>So we have the set of four used starting tritets (3 bits) in numeric order of <tt>0b011</tt>, <tt>0b100</tt>, <tt>0b101</tt>, and <tt>0b110</tt>. This leaves four unused tritets, namely, <tt>0b000</tt>, <tt>0b001</tt>, <tt>0b010</tt>, and <tt>0b111</tt> that may be selected as the CESR count (framing) code start bits. In Base64 there are two codes that satisfy our constraints. The first is the dash character, <tt>-</tt>, encoded as <tt>0x2d</tt>. Its first three bits are <tt>0b001</tt>. The second is the underscore character,<tt>_</tt>, encoded as <tt>0x5f</tt>. Its first three bits are <tt>0b010</tt>. Both of these are distinct from the starting tritets of any of the JSON, CBOR, and MGPK encodings above. Moreover the starting tritet of the corresponding binary encodings of <tt>-</tt> and <tt>_</tt> is <tt>0b111</tt> which is also distinct from the all the others. To elaborate, Base64 uses <tt>_</tt> in position 62 or <tt>0x3E</tt> (hex) and uses <tt>_</tt> in position 63 or <tt>0x3F</tt> (hex) both of which have starting tritet of <tt>0b111</tt></t>
          <t>This gives us two different Base64 characters, <tt>-</tt> and <tt>_</tt> we can use for the first character of any framing (count) code in the <em>T</em> domain. This also means we can have two different classes of framing (count) codes. This also provides a BOM like capability to determine if a framing code is expressed in the <em>T</em> or <em>B</em> domain. To clarify, if a stream  starts with the tritet <tt>0b111</tt> then the stream is <em>B</em> domain CESR and a stream parser would thereby know how to convert the first sextet of the stream to determine which of the two framing codes is being used, <tt>0x3E</tt> or <tt>ox3F</tt> . If on the other hand the framing code starts with either of the tritets <tt>0b001</tt> or <tt>0b010</tt> then the framing code is expressed in the <em>T</em> domain and a stream parser likewise would thereby know how to convert the first character (octet) of the framing code to determine which framing code is being used. Otherwise if a stream starts with  <tt>0b100</tt> then is JSON, with <tt>0b101</tt> then its CBOR and with either <tt>0b011</tt>,and <tt>0b110</tt> then its MGPK.</t>
          <t>This is summaraized in the following table:</t>
          <table align="center">
            <thead>
              <tr>
                <th align="center">Starting Tritet</th>
                <th align="center">Serialization</th>
                <th align="center">Character</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="center">0b000</td>
                <td align="center"> </td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="center">0b001</td>
                <td align="center">CESR <em>T</em> Domain Count (Group) Code</td>
                <td align="center">
                  <tt>-</tt></td>
              </tr>
              <tr>
                <td align="center">0b010</td>
                <td align="center">CESR <em>T</em> Domain Op Code</td>
                <td align="center">
                  <tt>_</tt></td>
              </tr>
              <tr>
                <td align="center">0b011</td>
                <td align="center">JSON</td>
                <td align="center">
                  <tt>{</tt></td>
              </tr>
              <tr>
                <td align="center">0b100</td>
                <td align="center">MGPK</td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="center">0b101</td>
                <td align="center">CBOR</td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="center">0b110</td>
                <td align="center">MGPK</td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="center">0b111</td>
                <td align="center">CESR <em>B</em> Domain</td>
                <td align="center"> </td>
              </tr>
            </tbody>
          </table>
        </section>
        <section anchor="stream-parsing-rules" numbered="true" toc="default">
          <name>Stream Parsing Rules</name>
          <t>Given this set of tritets (3 bits) we can express a requirement for well formed stream start and restart.</t>
          <t>Each stream <bcp14>MUST</bcp14> start (restart) with one of five tritets:</t>
          <t>1) A framing count (group) code in CESR <em>T</em> domain
2) A framing count (group) code in CESR <em>B</em> Domain.
3) A JSON encoded mapping.
4) A CBOR encoded Mapping.
5) A MGPK encoded mapping.</t>
          <t>A parser merely needs to examine the first tritet (3 bits) of the first byte of the stream start to determine which one of the five it is. When the first tritet is a framing code then, the remainder of framing code itself will include the additional information needed to parse the attached group. When the first tritet indicates its JSON, CBOR, or MGPK, then the mapping's first field must be a version string that provides the additional information needed to fully parse the associated encoded serialization.</t>
          <t>The stream <bcp14>MUST</bcp14> resume with a starting byte that starts with one of the 5 tritets, either another framing code expressed in the <em>T</em> or <em>B</em> domain or a new JSON, CBOR, or MGPK encoded mapping.</t>
          <t>This provides an extremely compact and elegant stream parsing formula that generalizes not only support for CESR composabilty but also support for interleaved CESR with three of the most popular hash map serializations.</t>
        </section>
      </section>
      <section anchor="compact-fixed-size-codes" numbered="true" toc="default">
        <name>Compact Fixed Size Codes</name>
        <t>As mentioned above, CESR uses a multiple code table design that enables both size optimized text codes for the most popular primitive types and extensible universal support for all other primitive types. Modern cryptographic suites support limited sets of raw binary primitives with fixed (not variable) sizes. The design aesthetic is based on the understanding that there is a minimally sufficient cryptographic strength and more cryptographic strength is just wasting computation and bandwidth. Cryptographic strength is measured in bits of entropy which also corresponds to the number trials that must be attempted to succeed in a brute force attack. The accepted minimum for cryptographic strength is 128 bits of entropy or equivalently <tt>2**128</tt> (2 raised to the 128th power) brute force trials. The size in bytes of a given raw binary primitive for a given modern cryptographic suite is usually directly related to this minimum strength of 128 bits (16 bytes). 
For example the raw binary primitives from the well known <xref target="NaCL" format="default"/> ECC (Elliptic Curve Cryptography) library all satisfy this 128 bit strength goal. In particular the digital signing public key raw binary primitives for EdDSA are 256 bits (32 bytes) in length because well known algorithms can reduce the number of trials to brute force invert an ECC public key to get the private key by the square root of the number of scalar multiplications which is also related to the size of both the private key and public key coordinates (discrete logarithm problem <xref target="DLog" format="default"/>). Thus  256 bit (32 byte) ECC keys are needed to achieve 128 bits of cryptographic strength. In general the size of a given raw binary primitive is typically some multiple of 128 bits of cryptographic strength. This is also true for the associated EdDSA raw binary signatures which 512 bits (64 bytes) in length.</t>
        <t>Similar scale factors exist for cryptographic digests. A standard default Blake3 digest is 256 bits (32 bytes) in length in order to get 128 bits of cryptographic strength. This is also true of SHA3-256. Indeed the sweet spots for modern cryptographic raw primitive lengths are 32 bytes for many digests as well as EdDSA public keys and 64 bytes for EdDSA and ECDSA-secp256k1 signatures and 64 byte variants of the most popular digests. Therefore optimized text code tables for these two sweet spots (32 and 64 bytes) would be highly advantageous.</t>
        <t>A 32 byte raw binary value has a pad size of 1 character.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
(3 - (32 mod 3)) mod 3) = 1
]]></artwork>
        <t>Therefore the minimal text code size is 1 character for 32 byte raw binary cryptographic material and all other raw binary material values whose pad size is 1 character.</t>
        <t>A 64 byte raw binary value has a pad size of 2 characters.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
(3 - (64 mod 3)) mod 3) = 2
]]></artwork>
        <t>Therefore the minimal text code size for is 2 characters for 64 byte raw binary cryptographic material and all other raw binary material values whose pad size is 1 character. For example a 16 byte raw binary value also has a pad size of 2 characters.</t>
        <t>For all other cryptographic material values whose pad size is 0, then the minimium size text code is 4 characters. So the minimally sized texts code tables are 1, 2, and 4 characters respectively.</t>
        <t>Given that a given cryptographic primitive type has a known fixed raw binary size then we can efficiently encode that primitive type and size with just the type information. The size is given by the type.</t>
        <t>So for example an Ed25519 (EdDSA) raw public key is always 32 bytes so knowing that the type is <tt>Ed25519 public key</tt> implies the size of 32 bytes and a pad size of 1 character that therefore may be encoded with a 1 character text code. Likewise an Ed25519 (EdDSA) signature is always 64 bytes so knowing that the type is  <tt>Ed25519 signature</tt> implies the size of 64 bytes and a pad size of 2 characters that therefore may be encoded with a 2 character text code.</t>
      </section>
      <section anchor="code-table-selectors" numbered="true" toc="default">
        <name>Code Table Selectors</name>
        <t>In order to efficiently parse a stream of primitives with types from multiple text code tables the first character in the text code must be a code table selector character. Thus the 1 character text code table must do double duty. It must provide selectors for the different text code tables and also provide type codes for the most popular primitives that have a pad size of 1. There are 64 Base64 characters (64 values). We only need 12 tables to support all the codes and code formats needed for the foreseeable future. Therefore only 12 of those characters need be dedicated as code table selectors that leaves 52 characters that may be used for 1 character type codes. This gives a total of 13 type code tables consisting of the dual purpose 1 character selector table and 12 other tables.</t>
        <t>As described above the selector characters for the framing or count code tables that best support interleaved JSON, CBOR, and MGPK are <tt>-</tt> and <tt>_</tt>. We use the numerals <tt>0</tt> through <tt>9</tt> to each serve as a selector. That leaves the letters <tt>A</tt> through <tt>Z</tt> and <tt>a</tt> through <tt>z</tt> as single character selectors. This provides 52 unique type codes for fixed length primitive types with raw binary values that have a pad size of 1.</t>
        <t>To clarify, the first character of any primitive is either a selector or a 1 character code type. The characters <tt>0</tt> through <tt>9</tt>, <tt>-</tt> and <tt>_</tt> are selectors that select a given code table and indicate the number of remaining characters in the text code.</t>
      </section>
      <section anchor="small-fixed-raw-size-tables" numbered="true" toc="default">
        <name>Small Fixed Raw Size Tables</name>
        <t>There are two special tables that are dedicated to the most popular fixed size raw binary cryptographic primitive types. These are the most compact so they optimize bandwidth but only provide a small number of total types. In both of these the text code size equals the number of pad characters, i.e. the pad size.</t>
        <section anchor="one-character-fixed-raw-size-table" numbered="true" toc="default">
          <name>One Character Fixed Raw Size Table</name>
          <t>The one character type code table does not have selector character per se but uses as type codes the non-selector characters <tt>A</tt> - <tt>Z</tt> and <tt>a</tt> - <tt>z</tt>. This provides 52 unique type codes for fixed size raw binary values with pad size of 1.</t>
        </section>
        <section anchor="two-character-fixed-raw-size-table" numbered="true" toc="default">
          <name>Two Character Fixed Raw Size Table</name>
          <t>The two character type code table uses selector <tt>0</tt> as its first character. The second character is the type code. This provides 64 unique type codes for fixed size raw binary values that have a pad size of 2.</t>
        </section>
      </section>
      <section anchor="large-fixed-raw-size-tables" numbered="true" toc="default">
        <name>Large Fixed Raw Size Tables</name>
        <t>The three tables in this group are for large fixed raw size primitives. These three tables use 0, 1 or 2 ante bytes as appropriate for a pad size of 0, 1 or 2 for a given fixed raw binary value. The text code size for all three tables is 4 characters. The selector not only encodes the table but also implicitly encodes the number of ante bytes. With 3 characters for each unique type code, each table provides 262,144 unique type codes. This should be enough type codes to accommodate all fixed raw size primitive types for the foreseeable future.</t>
        <section anchor="large-fixed-raw-size-table-with-0-ante-bytes" numbered="true" toc="default">
          <name>Large Fixed Raw Size Table With 0 Ante Bytes</name>
          <t>This table uses <tt>1</tt> as its first character or selector. The remaining 3 characters provide the types codes. Only fixed size raw binaries with pad size of 0 are encoded with this table. The 3 character type code provides a total of 262,144 unique type code values (<tt>262144 = 64**3)</tt> for fixed size raw binary primitives with pad size of 0.</t>
        </section>
        <section anchor="large-fixed-raw-size-table-with-1-ante-byte" numbered="true" toc="default">
          <name>Large Fixed Raw Size Table With 1 Ante Byte</name>
          <t>This table uses <tt>2</tt> as its first character or selector. The remaining 3 characters provide the types codes. Only fixed size raw binaries with pad size of 1 are encoded with this table. The 3 character type code provides a total of 262,144 unique type code values (<tt>262144 = 64**3)</tt> . Together with the 52 values from the 1 character code table above there are 262,196 type codes for fixed size raw binary primitives with pad size of 1.</t>
        </section>
        <section anchor="large-fixed-raw-size-table-with-1-ante-byte-1" numbered="true" toc="default">
          <name>Large Fixed Raw Size Table With 1 Ante Byte</name>
          <t>This table uses <tt>3</tt> as its first character or selector. The remaining 3 characters provide the types codes. Only fixed size raw binaries with pad size of 2 are encoded with this table. The 3 character type code provides a total of 262,144 unique type code values (<tt>262144 = 64**3)</tt> . Together with the 64 values from the 2 character code table above (selector <tt>0</tt>) there are 262,208 type codes for fixed size raw binary primitives with pad size of 2.</t>
        </section>
      </section>
      <section anchor="small-variable-raw-size-tables" numbered="true" toc="default">
        <name>Small Variable Raw Size Tables</name>
        <t>Although many primitives have fixed raw binary sizes especially those for modern cryptographic suites such as keys, signatures and digests, there are other primitives that benefit from variable sizing such as encrypted material. Indeed CESR is meant to support not only cryptographic material types but other basic types such as generic text strings. These benefit from variable size codes.</t>
        <t>The three tables in this group are for small variable raw size primitives. These three tables use 0, 1 or 2 ante bytes as appropriate given the pad size of 0, 1 or 2 for a given variable size raw binary value. The text code size for all three tables is 4 characters.
The first character is the selector, the second character is the type, and the last two characters provide the size of the value as a Base64 encoded integer. The number of unique type codes is 64. A given type code is repeated in each table for the same type. What is different for each table is the number of ante bytes. The selector not only encodes the table but also implicitly encodes the number of ante bytes. The variable size is measured in quadlets of 4 characters each in the <em>T</em> domain and equivalently in triplets of 3 bytes each in the <em>B</em> domain. Thus computing the number of characters when parsing or off-loading in the <em>T</em> domain means multiplying the variable size by 4. Computing the number of bytes when parsing or off-loading in the <em>B</em> domain means multiplying the variable size by 3. The two Base64 size characters provide value lengths in quadlets/triplets from 0 to 4095 (<tt>64**2 -1</tt>). This corresponds to value lengths of up to 16,380 characters (<tt>4095 * 4</tt>) or 12,285 bytes (<tt>4095 * 3</tt>).</t>
        <section anchor="small-variable-raw-size-table-with-0-ante-bytes" numbered="true" toc="default">
          <name>Small Variable Raw Size Table With 0 Ante Bytes</name>
          <t>This table uses <tt>4</tt> as its first character or selector. The second character provides the type. The final two characters provide the size of the value in quadlets/triplets as a Base64 encoded integer. Only raw binaries with pad size of 0 are encoded with this table. The 1 character type code provides a total of 64 unique type code values. The maximum length of the value provided by the 2 size characters is 4095 quadlets of characters in the <em>T</em> domain and triplets of bytes in the <em>B</em> domain. All are raw binary primitives with pad size of 0 that each include 0 ante bytes.</t>
        </section>
        <section anchor="small-variable-raw-size-table-with-1-ante-byte" numbered="true" toc="default">
          <name>Small Variable Raw Size Table With 1 Ante Byte</name>
          <t>This table uses <tt>5</tt> as its first character or selector. The second character provides the type. The final two characters provide the size of the value in quadlets/triplets as a Base64 encoded integer. Only raw binaries with pad size of 1 are encoded with this table. The 1 character type code provides a total of 64 unique type code values. The maximum length of the value provided by the 2 size characters is 4095 quadlets of characters in the <em>T</em> domain and triplets of bytes in the <em>B</em> domain. All are raw binary primitives with pad size of 1 that each include 1 ante byte.</t>
        </section>
        <section anchor="small-variable-raw-size-table-with-2-ante-bytes" numbered="true" toc="default">
          <name>Small Variable Raw Size Table With 2 Ante Bytes</name>
          <t>This table uses <tt>6</tt> as its first character or selector. The second character provides the type. The final two characters provide the size of the value in quadlets/triplets as a Base64 encoded integer. Only raw binaries with pad size of 0 are encoded with this table. The 1 character type code provides a total of 64 unique type code values. The maximum length of the value provided by the 2 size characters is 4095 quadlets of characters in the <em>T</em> domain and triplets of bytes int the <em>B</em> domain. All are raw binary primitives with pad size of 2 that each include 2 ante bytes.</t>
        </section>
      </section>
      <section anchor="large-variable-raw-size-tables" numbered="true" toc="default">
        <name>Large Variable Raw Size Tables</name>
        <t>Many legacy cryptographic libraries such as OpenSSL and GPG support any sized  variable sized primitive for keys, signatures and digests. Although this approach is often criticized for providing too much flexibility, many legacy applications depend on this degree of flexibility. Consequently these large variable raw size tables provide a sufficiently expansive set of tables with enough types and sizes to accommodate all the legacy cryptographic libraries as well as all the variable sized raw primitives for the foreseeable future.</t>
        <t>The three tables in this group are for large variable raw size primitives. These three tables use 0, 1 or 2 ante bytes as appropriate for the associated pad size of 0, 1 or 2 for a given variable sized raw binary value. The text code size for all three tables is 8 characters.
The first character is the selector, the next three characters provide the type, and the last four characters provide the size of the value as a Base64 encoded integer. With 3 characters for each unique type code, each table provides 262,144 unique type codes. This should be enough type codes to accommodate all fixed raw size primitive types for the foreseeable future.  A given type code is repeated in each table for the same type. What is different for each table is the number of ante bytes. The selector not only encodes the table but also implicitly encodes the number of ante bytes. The variable size is measured in quadlets of 4 characters each in the <em>T</em> domain and equivalently in triplets of 3 bytes each in the <em>B</em> domain. Thus computing the number of characters when parsing or off-loading in the <em>T</em> domain means multiplying the variable size by 4. Likewise computing the number of bytes when parsing or off-loading in the <em>B</em> domain means multiplying the variable size by 3. The four Base64 size characters provide value lengths in quadlets/triplets from 0 to 16,777,215 (<tt>64**4 -1</tt>). This corresponds to value lengths of up to 67,108,860 characters (<tt>16777215 * 4</tt>) or 50,331,645 bytes (<tt>16777215 * 3</tt>).</t>
        <section anchor="large-variable-raw-size-table-with-0-ante-bytes" numbered="true" toc="default">
          <name>Large Variable Raw Size Table With 0 Ante Bytes</name>
          <t>This table uses <tt>7</tt> as its first character or selector. The next three characters provide the type. The final four characters provide the size of the value in quadlets/triplets as a Base64 encoded integer. Only raw binaries with pad size of 0 are encoded with this table. The 3 character type code provides a total of 262,144 unique type code values. The maximum length of the value provided by the 4 size characters is 16,777,215 quadlets of characters in the <em>T</em> domain and triplets of bytes in the <em>B</em> domain. All are raw binary primitives with pad size of 0 that each include 0 ante bytes.</t>
        </section>
        <section anchor="large-variable-raw-size-table-with-1-ante-byte" numbered="true" toc="default">
          <name>Large Variable Raw Size Table With 1 Ante Byte</name>
          <t>This table uses <tt>8</tt> as its first character or selector. The next three characters provide the type. The final four characters provide the size of the value in quadlets/triplets as a Base64 encoded integer. Only raw binaries with pad size of 1 are encoded with this table. The 3 character type code provides a total of 262,144 unique type code values. The maximum length of the value provided by the 4 size characters is 16,777,215 quadlets of characters in the <em>T</em> domain and triplets of bytes in the <em>B</em> domain. All are raw binary primitives with pad size of 1 that each include 1 ante bytes.</t>
        </section>
        <section anchor="large-variable-raw-size-table-with-2-ante-bytes" numbered="true" toc="default">
          <name>Large Variable Raw Size Table With 2 Ante Bytes</name>
          <t>This table uses <tt>9</tt> as its first character or selector. The next three characters provide the type. The final four characters provide the size of the value in quadlets/triplets as a Base64 encoded integer. Only raw binaries with pad size of 2 are encoded with this table. The 3 character type code provides a total of 262,144 unique type code values. The maximum length of the value provided by the 4 size characters is 16,777,215 quadlets of characters in the <em>T</em> domain and triplets of bytes in the <em>B</em> domain. All are raw binary primitives with pad size of 2 that each include 2 ante bytes.</t>
        </section>
      </section>
      <section anchor="count-framing-code-tables" numbered="true" toc="default">
        <name>Count (Framing) Code Tables</name>
        <t>There may be as many at 13 count code tables, but only two are currently specified. These two are the small count, four character table and the large count, eight character table. Because count codes only count quadlets/triplets, primitives or groups of primitives, count codes have no value component, but only type and size components. Because primitives are already guaranteed to be composable count codes do not need to account for pad size as long as the count code itself is aligned on a 24 bit boundary. The count code type indicates the type of primitive being counted and the size indicates how many of that type. Both count code tables use the first two characters as a nested set of selectors. The first selector uses<tt>-</tt> as the initial selector for count codes. The next character is either a selector for another count code table or is the type for the small count code table. When the  second character is numeral <tt>0</tt> - <tt>9</tt> or the letters <tt>-</tt> or <tt>_</tt> then it is a secondary cound code table selector. When the second character is a letter in the range <tt>A</tt> - <tt>Z</tt> or <tt>a</tt> - <tt>z</tt> then it is a unique count code type. This given a total of 52 single character count code types.</t>
        <section anchor="small-count-code-table" numbered="true" toc="default">
          <name>Small Count Code Table</name>
          <t>Codes in the small count code table are each four characters long. The first character is the selector <tt>-</tt>. The second character is the count code type. the last two characters are the count size as a Base64 encoded integer. The count code type <bcp14>MUST</bcp14> be a letter <tt>A</tt> - <tt>Z</tt> or <tt>a</tt> - <tt>z</tt>. If the second character is not a letter but is a numeral <tt>0</tt> - <tt>9</tt> or <tt>-</tt> or <tt>_</tt> then it is a selector for a different count code table. The set of letters provide 52 unique count codes. A two character size provides counts from 0 to 4095 (<tt>64**2 - 1</tt>).</t>
        </section>
        <section anchor="large-count-code-table" numbered="true" toc="default">
          <name>Large Count Code Table</name>
          <t>Codes in the large count code table are each 8 characters long. The first two characters are the selectors <tt>-</tt>0. The next two characters are the count code type. the last four characters are the count size as a Base64 encoded integer. With two characters for type, there are 4096 unique large count code types. A four character size provides counts from 0 to 16,777,215 (<tt>64**4 - 1</tt>).</t>
        </section>
      </section>
      <section anchor="op-code-tables" numbered="true" toc="default">
        <name>Op Code Tables</name>
        <t>The <tt>_</tt> selector is reserved for the yet to be defined op code table or tables. Op codes are meant to provide stream processing instructions that are more general and flexible than simply concatenated primitives or groups of primitives.</t>
      </section>
      <section anchor="selector-codes-and-encoding-schemes" numbered="true" toc="default">
        <name>Selector Codes and Encoding Schemes</name>
        <t>The following table summarizes the <em>T</em> domain coding schemes for the 13 code tables defined above.</t>
        <table align="center">
          <thead>
            <tr>
              <th align="center">Selector</th>
              <th align="center">Selector</th>
              <th align="center">Type Chars</th>
              <th align="center">Value Size Chars</th>
              <th align="center">Code Size</th>
              <th align="center">Ante Bytes</th>
              <th align="center">Pad Size</th>
              <th align="right">Format</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="right"> </td>
            </tr>
            <tr>
              <td align="center">
                <tt>[A-Z,a-z]</tt></td>
              <td align="center"> </td>
              <td align="center">1*</td>
              <td align="center">0</td>
              <td align="center">1</td>
              <td align="center">0</td>
              <td align="center">1</td>
              <td align="right">
                <tt>$&amp;&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>0</tt></td>
              <td align="center"> </td>
              <td align="center">1</td>
              <td align="center">0</td>
              <td align="center">2</td>
              <td align="center">0</td>
              <td align="center">2</td>
              <td align="right">
                <tt>0$&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>1</tt></td>
              <td align="center"> </td>
              <td align="center">3</td>
              <td align="center">0</td>
              <td align="center">4</td>
              <td align="center">0</td>
              <td align="center">0</td>
              <td align="right">
                <tt>1$$$&amp;&amp;&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>2</tt></td>
              <td align="center"> </td>
              <td align="center">3</td>
              <td align="center">0</td>
              <td align="center">4</td>
              <td align="center">1</td>
              <td align="center">1</td>
              <td align="right">
                <tt>2$$$&amp;&amp;&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>3 </tt></td>
              <td align="center"> </td>
              <td align="center">3</td>
              <td align="center">0</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">2</td>
              <td align="right">
                <tt>3$$$&amp;&amp;&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>4</tt></td>
              <td align="center"> </td>
              <td align="center">1</td>
              <td align="center">2</td>
              <td align="center">4</td>
              <td align="center">0</td>
              <td align="center">0</td>
              <td align="right">
                <tt>4$##&amp;&amp;&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>5</tt></td>
              <td align="center"> </td>
              <td align="center">1</td>
              <td align="center">2</td>
              <td align="center">4</td>
              <td align="center">1</td>
              <td align="center">1</td>
              <td align="right">
                <tt>5$##&amp;&amp;&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>6</tt></td>
              <td align="center"> </td>
              <td align="center">1</td>
              <td align="center">2</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">2</td>
              <td align="right">
                <tt>6$##&amp;&amp;&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>7</tt></td>
              <td align="center"> </td>
              <td align="center">3</td>
              <td align="center">4</td>
              <td align="center">8</td>
              <td align="center">0</td>
              <td align="center">0</td>
              <td align="right">
                <tt>7$$$####&amp;&amp;&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>8</tt></td>
              <td align="center"> </td>
              <td align="center">3</td>
              <td align="center">4</td>
              <td align="center">8</td>
              <td align="center">1</td>
              <td align="center">1</td>
              <td align="right">
                <tt>8$$$####&amp;&amp;&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>9</tt></td>
              <td align="center"> </td>
              <td align="center">3</td>
              <td align="center">4</td>
              <td align="center">8</td>
              <td align="center">2</td>
              <td align="center">2</td>
              <td align="right">
                <tt>9$$$####&amp;&amp;&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>-</tt></td>
              <td align="center">
                <tt>[A-Z,a-z]</tt></td>
              <td align="center">1*</td>
              <td align="center">0</td>
              <td align="center">4</td>
              <td align="center">0</td>
              <td align="center">0</td>
              <td align="right">
                <tt>-$##</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>-</tt></td>
              <td align="center">
                <tt>0</tt></td>
              <td align="center">2</td>
              <td align="center">0</td>
              <td align="center">8</td>
              <td align="center">0</td>
              <td align="center">0</td>
              <td align="right">
                <tt>-0$$####</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>_</tt></td>
              <td align="center"> </td>
              <td align="center">TBD</td>
              <td align="center">TBD</td>
              <td align="center">TBD</td>
              <td align="center">TBD</td>
              <td align="center">TBD</td>
              <td align="right">
                <tt>_</tt></td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="right"> </td>
            </tr>
          </tbody>
        </table>
        <t><tt>*</tt> selector character is also type character</t>
        <t>Character format symbol definitions:<br/>
          <tt>$</tt> means type code character from  subset of Base64  [A-Z,a-z,0-9,-,_]. <br/>
          <tt>#</tt> means a Base64 digit as part of a base 64 integer that determines the number of following quadlets or triplets in the primitive or when part of a count code, the count of following primitives or groups of primitives.<br/>
          <tt>&amp;</tt> represents one or more Base64 value characters representing the converted raw binary value included ante bytes when applicable. The actual number of chars is determined by the prep-ended text code.<br/>
          <tt>TBD</tt> means to be determined</t>
      </section>
      <section anchor="parse-size-table" numbered="true" toc="default">
        <name>Parse Size Table</name>
        <t>Text domain parsing can be simplified by using a parse size table. A text domain parser uses the first character selector code to look up the hard size (stable) portion of the text code. The parse then extracts hard size characters from the text stream. These characters form an index in to the parse size table which includes a set of sizes for the remainder of the primitive. Using these sizes for a given code allows a parser to extract and convert a given primitive. In the binary domian the same text parse table may be used but each size value represents a multiple of a sextet of bits instead of Base64 characters. Example entries from that table are provided below. Two of the rows may always be calculated given the other 4 rows so the table need only have 4 entries in each row. Thus all basic primitives may be parsed with one parse size table.</t>
        <table align="center">
          <thead>
            <tr>
              <th align="center">selector</th>
              <th align="center">hs</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">
                <tt>B</tt></td>
              <td align="center">1</td>
            </tr>
            <tr>
              <td align="center">
                <tt>0</tt></td>
              <td align="center">2</td>
            </tr>
            <tr>
              <td align="center">
                <tt>5</tt></td>
              <td align="center">2</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
          </tbody>
        </table>
        <table align="center">
          <thead>
            <tr>
              <th align="center">hard sized index</th>
              <th align="center">hs</th>
              <th align="center">ss</th>
              <th align="center">vs</th>
              <th align="center">fs</th>
              <th align="center">as</th>
              <th align="center">ps</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">
                <tt>B</tt></td>
              <td align="center">1</td>
              <td align="center">0</td>
              <td align="center">43*</td>
              <td align="center">44</td>
              <td align="center">0</td>
              <td align="center">1</td>
            </tr>
            <tr>
              <td align="center">
                <tt>0B</tt></td>
              <td align="center">2</td>
              <td align="center">0</td>
              <td align="center">86*</td>
              <td align="center">88</td>
              <td align="center">0</td>
              <td align="center">2*</td>
            </tr>
            <tr>
              <td align="center">
                <tt>5A</tt></td>
              <td align="center">2</td>
              <td align="center">2</td>
              <td align="center">#</td>
              <td align="center">#</td>
              <td align="center">1</td>
              <td align="center">1*</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
          </tbody>
        </table>
        <t><tt>*</tt> size may be calculated from other sizes.<br/>
          <tt>#</tt> size may be calculated from extracted code characters given by other sizes.</t>
        <t><em>hs</em> means hard size in chars.<br/>
          <em>ss</em> means soft size in chars.<br/>
          <em>cs</em> means code size where <em>cs = hs + ss</em>.<br/>
          <em>vs</em> means value size in chars.<br/>
          <em>fs</em> means full size in chars where <em>fs = hs + ss + vs</em>.<br/>
          <em>as</em> means ante size in bytes.<br/>
          <em>ps</em> means pad size in chars. <br/>
          <em>rs</em> means raw size in bytes of binary value.<br/>
          <em>as</em> means ante size in bytes.<br/>
          <em>bs</em> means binary size in bytes where <em>bs = as + rs</em>.</t>
      </section>
      <section anchor="special-context-specific-code-tables" numbered="true" toc="default">
        <name>Special Context Specific Code Tables</name>
        <t>The table above that provides the encoding schemes each with an associated code table that provides the type codes or  set of codes for each associated primitive type. These coding schemes constitute the basic set of code tables. This basic set may be extended with context specific code tables. The context in which a primitive occurs may provide an additional implicit selector that is not part of the actual explicit text code. This allows context specific coding schemes that would otherwise conflict with the basic code tables. Currently there is only one context specific coding scheme, that is, for indexed signatures. A common use case are thresholded multi-signature schemes. A threshold satisficing subset of signatures belonging to an ordered  or list of public keys may be provided as part of stream of primitives. One way to compactly associated each signature with its public key is to include in the text code for that signature the index into the ordered set of public keys. The typical raw binary size for signatures is 64 bytes which has a pad size of 2. This gives two code characters for a compact text code. The first character is the selector and type code. The second character is Base64 encoded integer index.  By using a similar dual selector type code character scheme as above, where the selectors are the numbers <tt>0</tt> -<tt>9</tt> and <tt>-</tt> and <tt>_</tt>. Then there are 52 type codes given by the letters <tt>A</tt> - <tt>Z</tt> and <tt>a</tt> - <tt>z</tt>. The index has 64 values which supports up to 64 members in the public key list. A selector can be used to select a large text code with more characters dedicated to larger indicies. Current only a small table is defined.</t>
        <t>A new signature scheme based on Ed448 with 114 byte signatures signatures is also supported. These signatures have a pad size of zero so require a four charactor text code. The first characters is the selector <tt>0</tt>, the second characters is the type with 64 values, the last two characters provide the index as a Base64 encoded integer with 4096 different values.</t>
        <t>The associate indexed schemes are provided in the following table.</t>
        <table align="center">
          <thead>
            <tr>
              <th align="center">Selector</th>
              <th align="center">Selector</th>
              <th align="center">Type Chars</th>
              <th align="center">Index Chars</th>
              <th align="center">Code Size</th>
              <th align="center">Ante Bytes</th>
              <th align="center">Pad Size</th>
              <th align="right">Format</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="right"> </td>
            </tr>
            <tr>
              <td align="center">
                <tt>[A-Z,a-z]</tt></td>
              <td align="center"> </td>
              <td align="center">1*</td>
              <td align="center">1</td>
              <td align="center">2</td>
              <td align="center">0</td>
              <td align="center">2</td>
              <td align="right">
                <tt>$#&amp;&amp;</tt></td>
            </tr>
            <tr>
              <td align="center">
                <tt>0</tt></td>
              <td align="center"> </td>
              <td align="center">1</td>
              <td align="center">2</td>
              <td align="center">4</td>
              <td align="center">0</td>
              <td align="center">0</td>
              <td align="right">` 0$##&amp;&amp;&amp;&amp;`</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="right"> </td>
            </tr>
          </tbody>
        </table>
        <t><tt>*</tt> selector character is also type character</t>
        <t>Character format symbol definitions:<br/>
          <tt>$</tt> means type code character from  subset of Base64  [A-Z,a-z,0-9,-,_]. <br/>
          <tt>#</tt> means a Base64 digit as part of a base 64 integer that determines the index.<br/>
          <tt>&amp;</tt> represents one or more Base64 value characters representing the converted raw binary value included ante bytes when applicable. The actual number of chars is determined by the prep-ended text code.<br/>
          <tt>TBD</tt> means to be determined</t>
      </section>
    </section>
    <section anchor="master-code-table" numbered="true" toc="default">
      <name>Master Code Table</name>
      <section anchor="filling-code-table" numbered="true" toc="default">
        <name>Filling Code Table</name>
        <t>The approach to filling the tables is a first needed first served basis. In addition the requirement that all cryptographic operations maintain at least 128 bits of cryptographic strength precludes the entry of many weak cryptographic suites into the compact tables. CESR's compact code table includes only best-of-class cryptographic operations. In 2022 it is expected that NIST will approve standardized post-quantum resistant cryptographic signatures at which time codes for  the most appropriate post quantume signature suites will be added. Falcon appears to be the leader with open source code already available.</t>
      </section>
      <section anchor="description" numbered="true" toc="default">
        <name>Description</name>
        <t>This master table includes all three types of codes separated by headers. The table has 5 columns. These are as follows:</t>
        <t>1) The Base64 stable (hard) text code itself. 
2) A description of what is encoded or appended to the code.
3) The length in characters of the code.
4) the length in characters of the index or count portion of the code 
5) The length in characters of the fully qualified primitive including code and append material or number of elements in group.</t>
        <table align="center">
          <thead>
            <tr>
              <th align="center">Code</th>
              <th align="left">Description</th>
              <th align="center">Code Length</th>
              <th align="center">Count or Index Length</th>
              <th align="center">Total Length</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="center"> </td>
              <td align="left">
                <strong>Basic One Character Codes</strong></td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">A</td>
              <td align="left">Random seed of Ed25519 private key of length 256 bits</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">44</td>
            </tr>
            <tr>
              <td align="center">B</td>
              <td align="left">Ed25519 non-transferable prefix public signing verification key. Basic derivation.</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">44</td>
            </tr>
            <tr>
              <td align="center">C</td>
              <td align="left">X25519 public encryption key. May be converted from Ed25519 public signing verification key.</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">44</td>
            </tr>
            <tr>
              <td align="center">D</td>
              <td align="left">Ed25519 public signing verification key. Basic derivation.</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">44</td>
            </tr>
            <tr>
              <td align="center">E</td>
              <td align="left">Blake3-256 Digest. Self-addressing derivation.</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">44</td>
            </tr>
            <tr>
              <td align="center">F</td>
              <td align="left">Blake2b-256 Digest. Self-addressing derivation.</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">44</td>
            </tr>
            <tr>
              <td align="center">G</td>
              <td align="left">Blake2s-256 Digest. Self-addressing derivation.</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">44</td>
            </tr>
            <tr>
              <td align="center">H</td>
              <td align="left">SHA3-256 Digest. Self-addressing derivation.</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">44</td>
            </tr>
            <tr>
              <td align="center">I</td>
              <td align="left">SHA2-256 Digest. Self-addressing derivation.</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">44</td>
            </tr>
            <tr>
              <td align="center">J</td>
              <td align="left">Random seed of ECDSA secp256k1 private key of length 256 bits</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">44</td>
            </tr>
            <tr>
              <td align="center">K</td>
              <td align="left">Random seed of Ed448 private key of length 448 bits</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">76</td>
            </tr>
            <tr>
              <td align="center">L</td>
              <td align="left">X448 public encryption key. May be converted from Ed448 public signing verification key.</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">76</td>
            </tr>
            <tr>
              <td align="center">M</td>
              <td align="left">Short value of length 16 bits</td>
              <td align="center">1</td>
              <td align="center"> </td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="left">
                <strong>Basic Two Character Codes</strong></td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">0A</td>
              <td align="left">Random salt, seed, private key, or sequence number of length 128 bits</td>
              <td align="center">2</td>
              <td align="center"> </td>
              <td align="center">24</td>
            </tr>
            <tr>
              <td align="center">0B</td>
              <td align="left">Ed25519 signature. Self-signing derivation.</td>
              <td align="center">2</td>
              <td align="center"> </td>
              <td align="center">88</td>
            </tr>
            <tr>
              <td align="center">0C</td>
              <td align="left">ECDSA secp256k1 signature. Self-signing derivation.</td>
              <td align="center">2</td>
              <td align="center"> </td>
              <td align="center">88</td>
            </tr>
            <tr>
              <td align="center">0D</td>
              <td align="left">Blake3-512 Digest. Self-addressing derivation.</td>
              <td align="center">2</td>
              <td align="center"> </td>
              <td align="center">88</td>
            </tr>
            <tr>
              <td align="center">0E</td>
              <td align="left">Blake2b-512 Digest. Self-addressing derivation.</td>
              <td align="center">2</td>
              <td align="center"> </td>
              <td align="center">88</td>
            </tr>
            <tr>
              <td align="center">0F</td>
              <td align="left">SHA3-512 Digest. Self-addressing derivation.</td>
              <td align="center">2</td>
              <td align="center"> </td>
              <td align="center">88</td>
            </tr>
            <tr>
              <td align="center">0G</td>
              <td align="left">SHA2-512 Digest. Self-addressing derivation.</td>
              <td align="center">2</td>
              <td align="center"> </td>
              <td align="center">88</td>
            </tr>
            <tr>
              <td align="center">0H</td>
              <td align="left">Long value of length 32 bits</td>
              <td align="center">2</td>
              <td align="center"> </td>
              <td align="center">8</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="left">
                <strong>Basic Four Character Codes</strong></td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">1AAA</td>
              <td align="left">ECDSA secp256k1 non-transferable prefix public signing verification key. Basic derivation.</td>
              <td align="center">4</td>
              <td align="center"> </td>
              <td align="center">48</td>
            </tr>
            <tr>
              <td align="center">1AAB</td>
              <td align="left">ECDSA secp256k1 public signing verification or encryption key. Basic derivation.</td>
              <td align="center">4</td>
              <td align="center"> </td>
              <td align="center">48</td>
            </tr>
            <tr>
              <td align="center">1AAC</td>
              <td align="left">Ed448 non-transferable prefix public signing verification key. Basic derivation.</td>
              <td align="center">4</td>
              <td align="center"> </td>
              <td align="center">80</td>
            </tr>
            <tr>
              <td align="center">1AAD</td>
              <td align="left">Ed448 public signing verification key. Basic derivation.</td>
              <td align="center">4</td>
              <td align="center"> </td>
              <td align="center">80</td>
            </tr>
            <tr>
              <td align="center">1AAE</td>
              <td align="left">Ed448 signature. Self-signing derivation.</td>
              <td align="center">4</td>
              <td align="center"> </td>
              <td align="center">156</td>
            </tr>
            <tr>
              <td align="center">1AAF</td>
              <td align="left">Tag Base64 4 chars or 3 byte number</td>
              <td align="center">4</td>
              <td align="center"> </td>
              <td align="center">8</td>
            </tr>
            <tr>
              <td align="center">1AAG</td>
              <td align="left">DateTime Base64 custom encoded 32 char ISO-8601 DateTime</td>
              <td align="center">4</td>
              <td align="center"> </td>
              <td align="center">36</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="left">
                <strong>Indexed Two Character Codes</strong></td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">A#</td>
              <td align="left">Ed25519 indexed signature</td>
              <td align="center">2</td>
              <td align="center">1</td>
              <td align="center">88</td>
            </tr>
            <tr>
              <td align="center">B#</td>
              <td align="left">ECDSA secp256k1 indexed signature</td>
              <td align="center">2</td>
              <td align="center">1</td>
              <td align="center">88</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="left">
                <strong>Indexed Four Character Codes</strong></td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">0A##</td>
              <td align="left">Ed448 indexed signature</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">156</td>
            </tr>
            <tr>
              <td align="center">0B##</td>
              <td align="left">Label Base64 chars of variable length L=N*4 where N is value of index  total = L+4</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">Variable</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="left">
                <strong>Counter Four Character Codes</strong></td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">-A##</td>
              <td align="left">Count of attached qualified Base64 indexed controller signatures</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-B##</td>
              <td align="left">Count of attached qualified Base64 indexed witness signatures</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-C##</td>
              <td align="left">Count of attached qualified Base64 nontransferable identifier receipt couples  pre+sig</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-D##</td>
              <td align="left">Count of attached qualified Base64 transferable identifier receipt quadruples  pre+snu+dig+sig</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-E##</td>
              <td align="left">Count of attached qualified Base64 first seen replay couples fn+dt</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-F##</td>
              <td align="left">Count of attached qualified Base64 transferable indexed sig groups pre+snu+dig + idx sig group</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="left"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">-U##</td>
              <td align="left">Count of qualified Base64 groups or primitives in message data</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-V##</td>
              <td align="left">Count of total attached grouped material qualified Base64 4 char quadlets</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-W##</td>
              <td align="left">Count of total message data grouped material qualified Base64 4 char quadlets</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-X##</td>
              <td align="left">Count of total group message data plus attachments qualified Base64 4 char quadlets</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-Y##</td>
              <td align="left">Count of qualified Base64 groups or primitives in group. (context dependent)</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-Z##</td>
              <td align="left">Count of grouped material qualified Base64 4 char quadlets (context dependent)</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="left"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">-a##</td>
              <td align="left">Count of anchor seal groups in list  (anchor seal list) (a)</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-c##</td>
              <td align="left">Count of config traits (each trait is 4 char quadlet   (configuration trait list) (c)</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-d##</td>
              <td align="left">Count of digest seal Base64 4 char quadlets in digest  (digest seal  (d)</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-e##</td>
              <td align="left">Count of event seal Base64 4 char quadlets in seal triple of (event seal) (i, s, d)</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-k##</td>
              <td align="left">Count of keys in list  (key list) (k)</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-l##</td>
              <td align="left">Count of locations seal Base64 4 char quadlets in seal quadruple of (location seal) (i, s, t, p)</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-r##</td>
              <td align="left">Count of root digest seal Base64 4 char quadlets in root digest  (root digest) (rd)</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center">-w##</td>
              <td align="left">Count of witnesses in list  (witness list or witness remove list or witness add list) (w, wr, wa)</td>
              <td align="center">4</td>
              <td align="center">2</td>
              <td align="center">4</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="left">
                <strong>Counter Eight Character Codes</strong></td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">-0U#####</td>
              <td align="left">Count of qualified Base64 groups or primitives in message data</td>
              <td align="center">8</td>
              <td align="center">5</td>
              <td align="center">8</td>
            </tr>
            <tr>
              <td align="center">-0V#####</td>
              <td align="left">Count of total attached grouped material qualified Base64 4 char quadlets</td>
              <td align="center">8</td>
              <td align="center">5</td>
              <td align="center">8</td>
            </tr>
            <tr>
              <td align="center">-0W#####</td>
              <td align="left">Count of total message data grouped material qualified Base64 4 char quadlets</td>
              <td align="center">8</td>
              <td align="center">5</td>
              <td align="center">8</td>
            </tr>
            <tr>
              <td align="center">-0X#####</td>
              <td align="left">Count of total group message data plus attachments qualified Base64 4 char quadlets</td>
              <td align="center">8</td>
              <td align="center">5</td>
              <td align="center">8</td>
            </tr>
            <tr>
              <td align="center">-0Y#####</td>
              <td align="left">Count of qualified Base64 groups or primitives in group (context dependent)</td>
              <td align="center">8</td>
              <td align="center">5</td>
              <td align="center">8</td>
            </tr>
            <tr>
              <td align="center">-0Z#####</td>
              <td align="left">Count of grouped  material qualified Base64 4 char quadlets (context dependent)</td>
              <td align="center">8</td>
              <td align="center">5</td>
              <td align="center">8</td>
            </tr>
            <tr>
              <td align="center"> </td>
              <td align="left"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
              <td align="center"> </td>
            </tr>
            <tr>
              <td align="center">-0a#####</td>
              <td align="left">Count of anchor seals  (seal groups in list)</td>
              <td align="center">8</td>
              <td align="center">5</td>
              <td align="center">8</td>
            </tr>
          </tbody>
        </table>
        <t>The table includes complex groups that are composed of other groups. For example consider the counter attachment group 
with code<tt>-F##</tt> where <tt>##</tt> is replaced by the two character Base64 count of the number of complex groups.<br/>
This is known as the TransIndexedSigGroups counter.  Within the complex group are one more more attached
groups where each group consists of a triple pre+snu+dig
followed by a ControllerIdxSigs group that in turn consists of a counter code <tt>-A##</tt> followed by one or more
indexed signature primitives. The following example details how this complex group may appear.</t>
        <t>The example has only one group. The example is annotated with comments, spaces and line feeds for clarity.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
-FAB     # Trans Indexed Sig Groups counter code 1 following group
E_T2_p83_gRSuAYvGhqV3S0JzYEF2dIa-OCPLbIhBO7Y    # trans prefix of signer for sigs
-EAB0AAAAAAAAAAAAAAAAAAAAAAB    # sequence number of est event of signer's public keys for sigs
EwmQtlcszNoEIDfqD-Zih3N6o5B3humRKvBBln2juTEM      # digest of est event of signer's public keys for sigs
-AAD     # Controller Indexed Sigs counter code 3 following sigs
AA5267UlFg1jHee4Dauht77SzGl8WUC_0oimYG5If3SdIOSzWM8Qs9SFajAilQcozXJVnbkY5stG_K4NbKdNB4AQ         # sig 0
ABBgeqntZW3Gu4HL0h3odYz6LaZ_SMfmITL-Btoq_7OZFe3L16jmOe49Ur108wH7mnBaq2E_0U0N0c5vgrJtDpAQ    # sig 1
ACTD7NDX93ZGTkZBBuSeSGsAQ7u0hngpNTZTK_Um7rUZGnLRNJvo5oOnnC1J2iBQHuxoq8PyjdT3BHS2LiPrs2Cg  # sig 2

]]></artwork>
      </section>
    </section>
    <section anchor="conventions-and-definitions" numbered="true" toc="default">
      <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" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they
appear in all capitals, as shown here.</t>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>TODO Security</t>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC4648" target="https://datatracker.ietf.org/doc/rfc4648/">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author initials="S." surname="Josefsson" fullname="Simon Josefsson">
              <organization/>
            </author>
            <date year="2020" month="January" day="21"/>
          </front>
        </reference>
        <reference anchor="RFC20" target="https://datatracker.ietf.org/doc/rfc20/">
          <front>
            <title>ASCII format for network interchange</title>
            <author>
              <organization/>
            </author>
            <date year="2020" month="July" day="29"/>
          </front>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="KERI" target="https://arxiv.org/abs/1907.02143">
          <front>
            <title>Key Event Receipt Infrastructure (KERI)</title>
            <author initials="S." surname="Smith" fullname="Samuel M. Smith">
              <organization>ProSapien LLC</organization>
            </author>
            <date year="2021"/>
          </front>
        </reference>
        <reference anchor="JSON" target="https://www.json.org/json-en.html">
          <front>
            <title>JavaScript Object Notation Delimeters</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC4627" target="https://datatracker.ietf.org/doc/rfc4627/">
          <front>
            <title>The application/json Media Type for JavaScript Object Notation (JSON)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CBOR" target="https://en.wikipedia.org/wiki/CBOR">
          <front>
            <title>CBOR Mapping Object Codes</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC8949" target="https://datatracker.ietf.org/doc/rfc8949/">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author initials="C." surname="Bormann" fullname="Carsten Bormann">
              <organization/>
            </author>
            <author initials="P." surname="Hoffman" fullname="Paul Hoffman">
              <organization/>
            </author>
            <date year="2020" month="December" day="04"/>
          </front>
        </reference>
        <reference anchor="MGPK" target="https://github.com/msgpack/msgpack/blob/master/spec.md">
          <front>
            <title>Msgpack Mapping Object Codes</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="BOM" target="https://en.wikipedia.org/wiki/Byte_order_mark">
          <front>
            <title>UTF Byte Order Mark</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="DLog" target="https://en.wikipedia.org/wiki/Discrete_logarithm">
          <front>
            <title>Discrete Logarithm Problem</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="NaCL" target="https://nacl.cr.yp.to">
          <front>
            <title>NaCl Networking and Cryptography library</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="MultiCodec" target="https://github.com/multiformats/multicodec">
          <front>
            <title>MultiCodec Multiformats Codecs</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="MCTable" target="https://github.com/multiformats/multicodec/blob/master/table.csv">
          <front>
            <title>MultiCodec Table</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="IPFS" target="https://richardschneider.github.io/net-ipfs-core/api/Ipfs.Registry.HashingAlgorithm.html">
          <front>
            <title>IPFS MultiFormats</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Base58Check" target="https://en.bitcoin.it/wiki/Base58Check_encoding">
          <front>
            <title>Base58Check Encoding</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="WIF" target="https://en.bitcoin.it/wiki/Wallet_import_format">
          <front>
            <title>Wallet Import Format ECDSA Base58Check</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Bin2Txt" target="https://en.wikipedia.org/wiki/Binary-to-text_encoding">
          <front>
            <title>Binary to Text Encoding</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ASCII" target="https://en.wikipedia.org/wiki/ASCII">
          <front>
            <title>Text Printable ASCII Characters</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="UTF8" target="https://en.wikipedia.org/wiki/UTF-8">
          <front>
            <title>UTF-8 Unicode</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Latin1" target="https://en.wikipedia.org/wiki/ISO/IEC_8859-1">
          <front>
            <title>Latin-1 ISO 8859-1</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="STOMP" target="https://stomp.github.io">
          <front>
            <title>Simple Text Oriented Messaging Protocol</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RAET" target="https://github.com/RaetProtocol/raet">
          <front>
            <title>Reliable Asynchronous Event Transport</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="Affinity" target="https://crd.lbl.gov/assets/Uploads/Nathan-NDM14.pdf">
          <front>
            <title>Analysis of the Effect of Core Affinity on High-Throughput Flows</title>
            <author>
              <organization/>
            </author>
            <date year="2014" month="November" day="16"/>
          </front>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments" toc="default">
      <name>Acknowledgments</name>
      <t>The keripy development team, the KERI community and the ToIP ACDC working group.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
t1f9m3/V/dtqlSvTBe6n5u9PS//VzRufem/2W780w9bHt71yT50N/NWmD52g
/Lf89P7y17/+tYc98UfgnFWY9Nvdyt+mp/ZfsCfTUaeuoy318rb6u22a9jp/
+QtCpDrqrtZRx59br1vpaCvordJR159ab8t2ZJG0vRhJ3SVz2/7Lgwelnh6t
1lN5co+qPe2s1lN5djvVnh4vRjj3sVueXe8x4AiOq3JPu6v1pGbX263v6clq
PanZ9Z7U99SinkrbRm+V2rXjV6E/R04tB5LbNXp3VNDEr7UZLNfRu5q5XRwc
Ifda8K/64WKUJcSU/r4DP2k0ehvqCPPFaiq8QkYJ87jRcMlfnGIc5DfTfirX
rlCJvnwPlPjeX3ricnBWDVXOA09cvk1G3xAemEVqtltPmq3mu7ebAfb1wPRl
pQYqyIRyxIxuIcECPVjADAMfzB1hfMWMqb9YdkC5I8rZRDJn8hBJy2mQWE1T
/C0ynpM2mkq+8bpe4WDF6f215+64t3ex0zkusxWdXtegkObusgtz33mlGIeY
WYbawUxTkYgAK/BC35g27bu6yIJUvUoSr5VtYYH8oS6oAHMBerULL2KPeZdk
iFdUX0BlCzYu1P0Uxptlbh8kPyJdP9jHS9n4uiIuUeDCDkj4LnUSsUqtNPSa
HHAWMVK6eopcTJdYnSMTS8VaXnDhvNI1TGq+iDVbcZKLL4Z4CYHrRMuwJlPC
xMzTDVVsePJF3SlfdTeMPhAdcl5uedam/BavLus3bGiIPypJyqsT6pH0ZvA6
F/LJ6+6lJOyESMrqygyqjkqzlFIDUm7M3GXpOj/xrp2GpcGrMZxXmu5oY9Rx
9QZVFQDVO85jx9kyFasNEnrltUJVolrukc+LKBwqtqLTFY+lsAkW3Itd/gpa
e6wS5ayqEcx+k3JeBXsZYoPvaaGSIGgMCydYKA73nssnYIPLNrfnrGcZgKxj
ZI8ji922hcT48DMakq5DnEwk+aJ0T15fyMFcK5hUyWOThORcCcmXefmaVSvH
1p0n+Ms+7x30lHjhHrd77hB0Tx+pp0Ft3wic3SRDoXULY5Dzryv+NeJfIf+a
4a/aWazwa9FEV/m1ABlGiNgiiWLbChMi4QR2zF77QOPFyAw79N7urn6vu6Hf
e7Tvvce/HghYD9xAJNUE956jSAJIQeb2c0fZtE3kTqv4o5xbD5Y3F0YRDUun
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
AQA=

-->

</rfc>
