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

Add OWF attribution and explain !sd #270

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
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
17 changes: 15 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,14 @@ <h2>Securing JSON-LD Verifiable Credentials with SD-JWT</h2>
<code>cty</code>.
</p>
<p>
A [=conforming SD-JWT verifier implementation=] MUST use [[SD-JWT]] to verify [=conforming JWS documents=] that use this media type.
A [=conforming SD-JWT verifier implementation=] MUST use [[SD-JWT]] to verify [=conforming SD-JWT documents=] that use this media type.
</p>
<p>
Note that the example below uses the
<a href="https://github.com/openwallet-foundation-labs/sd-jwt-python">Open Wallet Foundation Python SD-JWT implementation</a>
to generate the SD-JWT content.
The syntax `!sd` indicates that the claim value was selectively disclosed.
</p>

<pre class="example vc-jose-cose-sd-jwt" title="A simple example of a verifiable credential secured with SD-JWT">
{
Expand Down Expand Up @@ -491,7 +497,7 @@ <h2>Securing JSON-LD Verifiable Presentations with SD-JWT</h2>
<code>cty</code>.
</p>
<p>
A [=conforming SD-JWT verifier implementation=] MUST use [[SD-JWT]] to verify [=conforming JWS documents=] that use this media type.
A [=conforming SD-JWT verifier implementation=] MUST use [[SD-JWT]] to verify [=conforming SD-JWT documents=] that use this media type.
</p>
<p>
Credentials in verifiable presentations MUST use the <a data-cite="VC-DATA-MODEL-2.0/#defn-EnvelopedVerifiableCredential">Enveloped Verifiable Credential</a>
Expand All @@ -501,6 +507,13 @@ <h2>Securing JSON-LD Verifiable Presentations with SD-JWT</h2>
Credentials in verifiable presentations MUST be secured.
These credentials are secured using SD-JWT in this case.
selfissued marked this conversation as resolved.
Show resolved Hide resolved
<p>
<p>
Note that the example below uses the
<a href="https://github.com/openwallet-foundation-labs/sd-jwt-python">Open Wallet Foundation Python SD-JWT implementation</a>
to generate the SD-JWT content.
The syntax `!sd` indicates that the claim value was selectively disclosed.
</p>

<pre class="example vc-jose-cose-sd-jwt" title="A simple example of a verifiable presentation secured with SD-JWT">
{
"@context": [
Expand Down
Loading