-
Notifications
You must be signed in to change notification settings - Fork 109
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 suggestion to use Oblivious HTTP when fetching resources. #1322
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -4385,7 +4385,7 @@ <h3>Long-Lived Identifier-Based Correlation</h3> | |||||||||||||
</section> | ||||||||||||||
|
||||||||||||||
<section class="informative"> | ||||||||||||||
<h3>Device Fingerprinting</h3> | ||||||||||||||
<h3>Device Tracking and Fingerprinting</h3> | ||||||||||||||
|
||||||||||||||
<p> | ||||||||||||||
There are mechanisms external to <a>verifiable credentials</a> that are used to | ||||||||||||||
|
@@ -4406,6 +4406,36 @@ <h3>Device Fingerprinting</h3> | |||||||||||||
In some cases, tracking technologies might need to be disabled on devices that | ||||||||||||||
transmit <a>verifiable credentials</a> on behalf of a <a>holder</a>. | ||||||||||||||
</p> | ||||||||||||||
|
||||||||||||||
<p> | ||||||||||||||
The Oblivious HTTP protocol [[?OHTTP]] is one mechanism that implementers might | ||||||||||||||
consider using when fetching external resources that are associated with a | ||||||||||||||
<a>verifiable credential</a> or a <a>verifiable presentation</a>. | ||||||||||||||
Oblivious HTTP allows a client to make multiple requests to an origin server | ||||||||||||||
without that server being able to link those requests to that client or even to | ||||||||||||||
identify those requests as having come from a single client, while placing only | ||||||||||||||
limited trust in the nodes used to forward the messages. Hence, Oblivious HTTP | ||||||||||||||
is one privacy-preserving mechanism that can be used to reduce the possibility | ||||||||||||||
of device tracking and fingerprinting. Concrete examples for how Oblivious HTTP | ||||||||||||||
can benefit ecosystem participants are included below. | ||||||||||||||
</p> | ||||||||||||||
|
||||||||||||||
<ul> | ||||||||||||||
<li> | ||||||||||||||
A <a>holder</a> using a digital wallet can reduce the chances that they | ||||||||||||||
will be tracked by a 3rd party when accessing external links within a | ||||||||||||||
Comment on lines
+4425
to
+4426
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
<a>verifiable credential</a> stored in their digital wallet. | ||||||||||||||
For example, a digital wallet might fetch and render linked images, or | ||||||||||||||
check the validity of a <a>verifiable credential</a> by fetching an | ||||||||||||||
externally linked revocation list. | ||||||||||||||
Comment on lines
+4428
to
+4430
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
</li> | ||||||||||||||
<li> | ||||||||||||||
A <a>verifier</a> can reduce signalling to an <a>issuer</a> that the | ||||||||||||||
<a>verifier</a> has received a specific <a>verifiable credential</a>. | ||||||||||||||
For example, a <a>verifier</a> might fetch an externally linked revocation | ||||||||||||||
list while performing status checks on a <a>verifiable credential</a>. | ||||||||||||||
Comment on lines
+4435
to
+4436
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||
</li> | ||||||||||||||
</ul> | ||||||||||||||
</section> | ||||||||||||||
|
||||||||||||||
<section class="informative"> | ||||||||||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.