forked from openssi/peer-did-method-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
139 lines (124 loc) · 4.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Peer DID Method Specification</title>
<style>
#instructions {
border: dashed 1px black;
padding: 1em;
background-color:#d0d0d0;
}
.replace-me {
font-style:italic;
color:magenta
}
</style>
<script src='https://www.w3.org/Tools/respec/respec-w3c-common' class='remove'></script>
<script class='remove'>
var respecConfig = {
specStatus: "ED",
editors: [
{
name: "Daniel Hardman",
url: "https://github.com/dhh1128",
company: "Hyperledger Aries Project / Sovrin Foundation / Evernym",
companyURL: "https://github.com/hyperledger/aries",
mailto: "[email protected]"
}
],
authors: [
{
name: "Oskar Deventer",
url: "https://github.com/Oskar-van-Deventer",
company: "TNO",
companyURL: "https://tno.nl"
},
{
name: "Christian Lundkvist",
url: "https://github.com/christianlundkvist",
company: "ConsenSys",
companyURL: "https://consensys.net"
},
{
name: "Marton Csernai",
url: "https://github.com/csmarc",
company: "KILT",
companyURL: "https://kilt.io"
},
{
name: "Brent Zundel",
url: "https://github.com/brentzundel",
company: "Evernym",
companyURL: "https://evernym.com"
},
{
name: "Sam Curren",
url: "https://github.com/TelegramSam",
company: "Sovrin Foundation / Decentralized Identity Foundation",
companyURL: "https://sovrin.org"
},
{
name: "Mike Varley",
url: "https://github.com/mavarley",
company: "SecureKey",
companyURL: "https://securekey.com"
},
{
name: "Devin Fisher",
url: "https://github.com/devin-fisher",
company: "Evernym",
companyURL: "https://evernym.com"
},
{
name: "Tobias Looker",
url: "https://github.com/tplooker",
company: "Mattr",
companyURL: "https://www.mattr.global"
}
],
processVersion: 2017,
edDraftURI: "https://github.com/openssi/peer-did-method-spec",
shortName: "peer-did-method",
subtitle: "blockchain-independent decentralized identifiers",
github: "https://github.com/openssi/peer-did-method-spec",
wg: "greater SSI community",
pluralize: true
};
</script>
</head>
<body>
<section id='abstract'>
<p>This document defines a "peer" <a href="https://w3c-ccg.github.io/did-spec/#specific-did-method-schemes"
target="didspec">DID Method</a> that conforms to the <a href="https://w3c-ccg.github.io/did-spec/"
target="didspec">DID Spec</a>. The method can be used independent of any central source of truth, and is
intended to be cheap, fast, scalable, and secure. It is suitable for most private relationships between people,
organizations, and things. We expect that peer-to-peer relationships in every blockchain ecosystem can benefit
by offloading pairwise and n-wise relationships to peer DIDs.</p>
</section>
<section id='sotd'>
<p>
</p>
</section>
<section id="intro" class="informative" data-include="intro.html">
</section>
<section id="core" data-include="core.html">
</section>
<section id="diddocs" data-include="did-docs.html">
</section>
<section id="protocols" data-include="protocols.html">
</section>
<section id="security-considerations" class="informative appendix" data-include="security.html">
</section>
<section id="privacy-considerations" class="informative appendix" data-include="privacy.html">
</section>
<section id="grafting" class="informative appendix" data-include="grafting.html">
</section>
<section id="nwise-info" class="informative appendix" data-include="n-wise.html">
</section>
<section id="ref-impl" class="informative appendix" data-include="ref-impl.html">
</section>
<section id="resources" class="informative appendix" data-include="resources.html">
</section>
</body>
</html>