Skip to content

Commit

Permalink
Change max document size
Browse files Browse the repository at this point in the history
- Max document size is now 10MiB (used to be 16MB).
- Updated some text to indicate that the limit is on Encrypted Documents, not Structured Documents.
  • Loading branch information
Derek Trider committed Jul 18, 2021
1 parent bc43253 commit d9a3911
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -489,8 +489,7 @@ <h2>
The fundamental unit of storage in data vaults is the encrypted
structured document which, when decrypted, provides a data structure that
can be expressed in popular syntaxes such as JSON and CBOR. Documents can
store structured data and metadata about the structured data. Structured
document sizes are limited to 16MB.
store structured data and metadata about the structured data.
</p>
</section>

Expand All @@ -500,7 +499,7 @@ <h2>
</h2>

<p>
For files larger than 16MB or for raw binary data formats such as audio,
For files larger than 10MiB or for raw binary data formats such as audio,
video, and office productivity files, a streaming API is provided that
enables data to be streamed to/from a data vault. Streams are described using
structured documents, but the storage of the data is separated from the
Expand Down Expand Up @@ -761,7 +760,7 @@ <h4>
are easily managed by a server. It is the responsibility of the client to set
the chunk size of each resource and chunk large data into manageable chunks for
the server. It is the responsibility of the server to deny requests to store
chunks larger that it can handle.
chunks larger than 10MiB, which is the maximum size for a single Encrypted Document.
</p>
<p>
Each chunk is encrypted individually using authenticated encryption. Doing so
Expand Down Expand Up @@ -1177,7 +1176,7 @@ <h4>
<p>
An encrypted document is used to store a structured document in a way that
ensures that no entity can read the information without the consent of the
data controller.
data controller. Encrypted document sizes MUST NOT exceed 10MiB.
</p>

<p class="issue">
Expand Down

0 comments on commit d9a3911

Please sign in to comment.