This repository was archived by the owner on Apr 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 100
Removed references to TLS as primary auth method #171
Open
jaxoncreed
wants to merge
3
commits into
solid:master
Choose a base branch
from
jaxoncreed:deprecate-tls
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
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 hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -97,9 +97,6 @@ statements: | |
| to make the display of the user's contributions identifiable. | ||
| 3. A profile MAY provide a `foaf:nick` nickname as a short string for use by user interfaces where | ||
| space is limited. | ||
| 3. A profile SHOULD include `cert:key` public key certificate information, for | ||
| use with WebID+TLS (which is currently the primary Solid authentication | ||
| mechanism). | ||
|
Contributor
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. MAY |
||
| 4. A profile SHOULD point to the root storage location using `pim:storage` | ||
| (so that applications will know where to read and write their data). | ||
|
|
||
|
|
@@ -113,8 +110,6 @@ statements: | |
| foaf:name "Alice" ; | ||
| <http://www.w3.org/ns/auth/cert#key> <#key6b4c> ; | ||
| <http://www.w3.org/ns/pim/space#storage> <../> ; | ||
| <#key6b4c> | ||
| # ... certificate key statements go here, see Certificates section | ||
| ``` | ||
|
|
||
| ### Recommendation for User Names in Profiles | ||
|
|
@@ -190,45 +185,6 @@ these cases, and also to make it extensible in future for when | |
| the congruent trees may be rooted in files corresponding to groups and organizations | ||
| of which the user is a member. | ||
|
|
||
|
|
||
| ## Public Key Certificates | ||
|
|
||
| Solid currently uses WebID+TLS as its main Authentication mechanism. | ||
| To enable this, WebID Profile documents on Solid-compliant servers MAY contain | ||
| one or more Public Key Certificate sections, linked to from the main WebID | ||
| subject via `cert:key` predicates. | ||
|
|
||
| Example profile with a public key certificate (created by LDNode): | ||
|
|
||
| ```ttl | ||
| @prefix foaf: <http://xmlns.com/foaf/0.1/>. | ||
| @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. | ||
| @prefix cert: <http://www.w3.org/ns/auth/cert#>. | ||
| @prefix dc: <http://purl.org/dc/terms/>. | ||
| @prefix XML: <http://www.w3.org/2001/XMLSchema#>. | ||
|
|
||
| <https://alice.databox.com/profile/card> | ||
| a foaf:PersonalProfileDocument ; | ||
| foaf:primaryTopic <#me> . | ||
| <#me> | ||
| a foaf:Person ; | ||
| foaf:name "Alice" ; | ||
| <http://www.w3.org/ns/auth/cert#key> <#key6b4c> ; | ||
| <http://www.w3.org/ns/pim/space#storage> <../> ; | ||
| <#key6b4c> | ||
| dc:created | ||
| "2016-02-12T15:07:46.916Z"^^XML:dateTime; | ||
| dc:title | ||
| "Created by ldnode"; | ||
| a cert:RSAPublicKey; | ||
| rdfs:label | ||
| "LDNode Localhost Test Cert"; | ||
| cert:exponent | ||
| "65537"^^XML:int; | ||
| cert:modulus | ||
| "970E88..(many digits here)..167801"^^XML:hexBinary. | ||
| ``` | ||
|
|
||
| ## Account Resource Discovery | ||
|
|
||
| Solid WebID Profile documents MAY contain the following links, to support | ||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.