cert.n3
10.9 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
@base <http://www.w3.org/ns/auth/cert> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix wot: <http://xmlns.com/wot/0.1/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix dc: <http://purl.org/dc/terms/>.
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix : <cert#> .
<cert#> a owl:Ontology ;
dc:created "2008-11-13"^^xsd:date;
foaf:maker <http://bblfish.net/people/henry/card#me>;
vs:term_status "unstable";
rdfs:label "Ontology for Certificates and crypto stuff.";
rdfs:seeAlso <http://lists.foaf-project.org/mailman/listinfo/foaf-protocols>;
rdfs:seeAlso <X509Uml.svg>;
rdfs:seeAlso <rsa>;
rdfs:comment """
Ontology for Certificates and crypto stuff.
This is in development.
Some other ontologies to look at:
* http://www.w3.org/2000/10/swap/crypto
+ has cwm builtins: http://www.w3.org/2000/10/swap/doc/Trust
- a bit old perhaps. It imports daml+oil
- would help to be more completely specified
- uses literals as subjects a little liberally, which makes this a
bit difficult to work with frameworks that don't permit this
* http://xmlns.com/wot/0.1/
- limited very much to PGP (though on can map PGP to X509)
- a little coarse grained, mixes up the PGP certificate with the PGP
public key
*
Todo:
- add some classes and relations for DSA
- should this all be in one file? Or should this be cut up a little? Say one file for the general CERT ontology, and then files for RSA, DSA, PGP, etc... Or perhaps it does not really matter?
- expand more on the certification side of things
- verify this by security experts
- owl2 has some constructs for combined inverse functional properties.
This may be useful to use in defining an RSA key which is identified
by two numbers.
- also create html version of the spec by using this as a template.
- should comments such as this be in html?
"""@en.
:Certificate a owl:Class;
vs:term_status "unstable";
rdfs:isDefinedBy <cert#>;
rdfs:label "Certificate"@en;
rdfs:subClassOf foaf:Document;
rdfs:comment """A certificate is a Document that is signed.
As explained here http://www.pgpi.org/doc/pgpintro/#p16
'A digital certificate consists of three things:
* A public key.
* Certificate information. ('Identity' information about the
user, such as name, user ID, and so on.)
* One or more digital signatures.'
"""@en .
:X509Certificate a owl:Class;
vs:term_status "unstable";
rdfs:isDefinedBy <cert#>;
rdfs:label "X509Certificate";
rdfs:subClassOf :Certificate;
rdfs:seeAlso <http://en.wikipedia.org/wiki/X509>;
rdfs:comment "the class of X509 Certificates"@en .
:PGPCertificate a owl:Class;
rdfs:label "PGPCertificate";
vs:term_status "unstable";
rdfs:isDefinedBy <cert#>;
rdfs:subClassOf :Certificate;
owl:equivalentClass wot:PubKey;
rdfs:comment "the class of PGP Certificates"@en .
:Signature a owl:Class;
rdfs:label "Signature";
rdfs:isDefinedBy <cert#>;
vs:term_status "unstable";
rdfs:comment "the class of signtatures"@en .
:Key a owl:Class;
vs:term_status "unstable";
rdfs:isDefinedBy <cert#>;
rdfs:comment "the class of keys"@en .
:PublicKey a owl:Class;
rdfs:label "PublicKey";
rdfs:isDefinedBy <cert#>;
vs:term_status "unstable";
rdfs:comment "Public Key";
rdfs:subClassOf :Key .
:PrivateKey a owl:Class;
rdfs:label "PrivateKey";
rdfs:comment "Private Key"@en ;
rdfs:isDefinedBy <cert#>;
rdfs:subClassOf :Key .
# badly named, removing
#:public_key a rdf:Property;
# vs:term_status "unstable";
# rdfs:comment """
# relates the private key to the public key component, in a public/private
# key pair.
# """;
# rdfs:domain :PrivateKey;
# rdfs:range :PublicKey .
:hex a rdfs:Datatype;
rdfs:label "hexadecimal"@en;
rdfs:isDefinedBy <cert#>;
rdfs:seeAlso <http://en.wikipedia.org/wiki/Hexadecimal>;
owl:equivalentClass xsd:nonNegativeInteger;
skos:editorialNote """<span xmlns="http://www.w3.org/1999/xhtml"><p>
This relation should slowly be transited to just being a datatype.</p>
<p>Being a datatype and a property is legal as explained here
<a href="http://lists.w3.org/Archives/Public/semantic-web/2010Mar/0037.html">on the semantic web mailing list in March 2010</a>.
But it may be somewhat confusing, especially if it goes against a pattern - still to be set - by the xsd datatypes as the follow up email makes clear. </p></span>
"""@en;
rdfs:comment """<span xmlns="http://www.w3.org/1999/xhtml"><p>
An encoding of a positive integer (from 0 to infinity) as a hexadecimal string that makes it easy to read and/or fun to present on the web.</p>
<p>The purpose of this way of representing hexadecimals is to enable users to copy and paste hexadecimal notations as shown by most browsers, keychains or tools such as opensso, into their rdf representation of choice. There are a wide variety of ways in which such strings can be presented. One finds the following:</p>
<pre>
e1 dc d5 e1 00 8f 21 5e d5 cc 7c 7e c4 9c ad 86
64 aa dc 29 f2 8d d9 56 7f 31 b6 bd 1b fd b8 ee
51 0d 3c 84 59 a2 45 d2 13 59 2a 14 82 1a 0f 6e
d3 d1 4a 2d a9 4c 7e db 90 07 fc f1 8d a3 8e 38
25 21 0a 32 c1 95 31 3c ba 56 cc 17 45 87 e1 eb
fd 9f 0f 82 16 67 9f 67 fa 91 e4 0d 55 4e 52 c0
66 64 2f fe 98 8f ae f8 96 21 5e ea 38 9e 5c 4f
27 e2 48 ca ca f2 90 23 ad 99 4b cc 38 32 6d bf
</pre>
<p>
Or the same as the above, with ':' instead of spaces. We can't guarantee that these are the only ways such tools will present hexadecimals, so we are very lax.</p>
<p>The letters can be uppercase or lowercase, or mixed. </p>
<p>Some strings may start with initial 00's, and can be stripped in this notation as they often are. Doing this could, in complement of 2 notation turn a positive number into a negative one, if the first hexadecimal character happens to be one of the set {'8', '9', 'a', 'A', 'b', 'B', 'c', 'C', 'd', 'D', 'e', 'E', 'f', 'F'} . As we interpret this string as a hexadecimal number leading 00s are not important (Complement of 2 notation and hexadecimal overlap for positive numbers)</p>
<p> In order to make this fun, we allow any unicode characters in the string. A parser should </p>
<ol>
<li>remove all non hexadecimal characters</li>
<li>treat the resulting as a hexadecimal representation of a number</li>
</ol>
<p>
This will allow people to make an ascii - better yet a UTF-8 - picture of their public key when publishing it on the web.
</p>
<p>
Cert hex is also a datatype property because we used to write it out like this
</p>
<pre>
[] a rsa:RSAPublicKey;
rsa:public_exponent [ cert:hex "e1 dc d5 ..."]
</pre>
<p> The above notation is now deprecated. Now we prefer the literal format below.</p>
<pre>
[] a rsa:RSAPublicKey;
rsa:public_exponent "e1 dc d5 ..."^^cert:hex .
</pre>
</span>"""^^rdf:XMLLiteral;
vs:term_status "archaic" .
:identity a rdf:Property, owl:ObjectProperty;
vs:term_status "archaic";
rdfs:label "identity"@en;
rdfs:isDefinedBy <cert#>;
skos:editorialNote """
It turns out that this relation is unintuitive to write out and to name.
One should instead use cert:key
"""@en;
rdfs:comment """
the identity of the public key. This is the entity that knows the private key and
so can decrypt messages encrypted with the public key, or encrypt messages that can
be decrypted with the public key.
"""@en;
owl:inverseOf :key;
rdfs:domain :PublicKey .
:key a rdf:Property, owl:ObjectProperty, owl:InverseFunctionalProperty;
vs:term_status "unstable";
rdfs:label "key"@en;
rdfs:isDefinedBy <cert#>;
owl:inverseOf :identity;
rdfs:comment """relates an agent to a key - most often the public key."""@en ;
rdfs:domain foaf:Agent;
rdfs:range :Key, :PublicKey .
:RSAKey a owl:Class;
rdfs:label "RSA Key"@en;
rdfs:isDefinedBy <cert#>;
rdfs:subClassOf :Key;
vs:term_status "unstable";
rdfs:comment """
The union of the public and private components of an RSAKey.
Usually those pieces are not kept together
"""@en.
:RSAPublicKey a owl:Class;
rdfs:label "RSA Public Key"@en;
rdfs:isDefinedBy <cert#>;
rdfs:subClassOf :PublicKey, :RSAKey;
vs:term_status "unstable";
rdfs:seeAlso <http://en.wikipedia.org/wiki/RSA>;
rdfs:comment """
The RSA public key. Padded message m are encrypted by applying the function
modulus(power(m,exponent),modulus)
"""@en .
:modulus a owl:DatatypeProperty;
rdfs:label "modulus"@en;
rdfs:isDefinedBy <cert#>;
vs:term_status "unstable";
rdfs:comment """
<p>The modulus of an RSA public and private key.
Or the modulus of a DSA Key.
The modulus is encoded as a hex binary. The binary is the same as the one encoded in the
<a href="http://www.w3.org/TR/xmldsig-core/#sec-CryptoBinary">XML DSIG CryptoBinary</a>
</p>
<blockquote>
This specification defines the ds:CryptoBinary simple type for representing arbitrary-length integers (e.g. "bignums") in XML as octet strings. The integer value is first converted to a "big endian" bitstring. The bitstring is then padded with leading zero bits so that the total number of bits == 0 mod 8 (so that there are an integral number of octets). If the bitstring contains entire leading octets that are zero, these are removed (so the high-order octet is always non-zero).
</blockquote>
<p>The only difference is that the octet string is then encoded using either xsd:base64Binary or xsd:hexBinary. Currently for all usages of this relation, the xsd:hexBinary datatype should be used until the SPARQL working group specifies specifies in its <a href="http://www.w3.org/TR/sparql11-entailment/#DEntRegime">D-Entailment</a> that those two types are equivalent.</p>
<p>It would have been better had there been a hexInteger datatype that was standard and supported by all tools.</p>
"""@en;
rdfs:domain :RSAKey, :DSAKey;
rdfs:range xsd:hexBinary, xsd:base64Binary .
:exponent a owl:DatatypeProperty;
rdfs:label "exponent"@en;
rdfs:isDefinedBy <cert#>;
vs:term_status "unstable";
rdfs:comment """
The exponent used to encrypt the message. Number chosen between
1 and the totient(p*q). Often named 'e' .
"""@en;
rdfs:domain :RSAPublicKey;
rdfs:range xsd:nonNegativeInteger .
:privateExponent a owl:DatatypeProperty ;
rdfs:label "private"@en;
rdfs:isDefinedBy <cert#>;
vs:term_status "unstable";
rdfs:comment """
The exponent used to decrypt the message
calculated as
public_exponent*private_exponent = 1 modulo totient(p*q)
The private exponent is often named 'd'
"""@en;
rdfs:domain :RSAPrivateKey;
rdfs:range xsd:nonNegativeInteger .