Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Informative change to fix incorrect count of number of elements. #124

Merged
merged 2 commits into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ <h4>serializeBaseProofValue</h4>
header bytes `0xd9`, `0x5d`, and `0x02`.
</li>
<li>
Initialize `components` to an array with five elements containing the values of:
Initialize `components` to an array with three elements containing the values of:
`bbsSignature`, `hmacKey`, and `mandatoryPointers`.
</li>
<li>
Expand Down Expand Up @@ -887,8 +887,8 @@ <h4>parseDerivedProofValue</h4>
The following algorithm parses the components of the derived proof value.
The required input is a derived proof value (<var>proofValue</var>). A
A single <em>derived proof value</em> value object is produced as output, which
contains a set of five elements, using the names "bbsProof", "labelMap",
"mandatoryIndexes", and "selectiveIndexes".
contains a set of four elements, using the names "`bbsProof`", "`labelMap`",
"`mandatoryIndexes`", and "`selectiveIndexes`".
</p>

<ol class="algorithm">
Expand Down Expand Up @@ -918,7 +918,7 @@ <h4>parseDerivedProofValue</h4>
second element of `components` as `compressedLabelMap`.
</li>
<li>
Return <em>derived proof value</em> as an object with properties set to the five
Return <em>derived proof value</em> as an object with properties set to the four
elements, using the names "`bbsProof`", "`labelMap`", "`mandatoryIndexes`", and
"`selectiveIndexes`" respectively.
</li>
Expand Down