r509 0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. data/README.md +447 -0
  2. data/Rakefile +38 -0
  3. data/bin/r509 +96 -0
  4. data/bin/r509-parse +35 -0
  5. data/doc/R509.html +154 -0
  6. data/doc/R509/Cert.html +3954 -0
  7. data/doc/R509/Cert/Extensions.html +360 -0
  8. data/doc/R509/Cert/Extensions/AuthorityInfoAccess.html +391 -0
  9. data/doc/R509/Cert/Extensions/AuthorityKeyIdentifier.html +148 -0
  10. data/doc/R509/Cert/Extensions/BasicConstraints.html +482 -0
  11. data/doc/R509/Cert/Extensions/CrlDistributionPoints.html +316 -0
  12. data/doc/R509/Cert/Extensions/ExtendedKeyUsage.html +780 -0
  13. data/doc/R509/Cert/Extensions/KeyUsage.html +1230 -0
  14. data/doc/R509/Cert/Extensions/SubjectAlternativeName.html +467 -0
  15. data/doc/R509/Cert/Extensions/SubjectKeyIdentifier.html +216 -0
  16. data/doc/R509/CertificateAuthority.html +126 -0
  17. data/doc/R509/CertificateAuthority/Signer.html +855 -0
  18. data/doc/R509/Config.html +127 -0
  19. data/doc/R509/Config/CaConfig.html +2144 -0
  20. data/doc/R509/Config/CaConfigPool.html +599 -0
  21. data/doc/R509/Config/CaProfile.html +656 -0
  22. data/doc/R509/Config/SubjectItemPolicy.html +578 -0
  23. data/doc/R509/Crl.html +126 -0
  24. data/doc/R509/Crl/Administrator.html +2077 -0
  25. data/doc/R509/Crl/Parser.html +1224 -0
  26. data/doc/R509/Csr.html +2248 -0
  27. data/doc/R509/IOHelpers.html +564 -0
  28. data/doc/R509/MessageDigest.html +396 -0
  29. data/doc/R509/NameSanitizer.html +319 -0
  30. data/doc/R509/Ocsp.html +128 -0
  31. data/doc/R509/Ocsp/Request.html +126 -0
  32. data/doc/R509/Ocsp/Request/Nonce.html +160 -0
  33. data/doc/R509/Ocsp/Response.html +837 -0
  34. data/doc/R509/OidMapper.html +393 -0
  35. data/doc/R509/PrivateKey.html +1647 -0
  36. data/doc/R509/R509Error.html +134 -0
  37. data/doc/R509/Spki.html +1424 -0
  38. data/doc/R509/Subject.html +836 -0
  39. data/doc/R509/Validity.html +160 -0
  40. data/doc/R509/Validity/Checker.html +320 -0
  41. data/doc/R509/Validity/DefaultChecker.html +283 -0
  42. data/doc/R509/Validity/DefaultWriter.html +330 -0
  43. data/doc/R509/Validity/Status.html +561 -0
  44. data/doc/R509/Validity/Writer.html +394 -0
  45. data/doc/_index.html +501 -0
  46. data/doc/class_list.html +53 -0
  47. data/doc/css/common.css +1 -0
  48. data/doc/css/full_list.css +57 -0
  49. data/doc/css/style.css +328 -0
  50. data/doc/file.README.html +534 -0
  51. data/doc/file.r509.html +149 -0
  52. data/doc/file_list.html +58 -0
  53. data/doc/frames.html +28 -0
  54. data/doc/index.html +534 -0
  55. data/doc/js/app.js +208 -0
  56. data/doc/js/full_list.js +173 -0
  57. data/doc/js/jquery.js +4 -0
  58. data/doc/methods_list.html +1932 -0
  59. data/doc/top-level-namespace.html +112 -0
  60. data/lib/r509.rb +22 -0
  61. data/lib/r509/cert.rb +414 -0
  62. data/lib/r509/cert/extensions.rb +309 -0
  63. data/lib/r509/certificateauthority.rb +290 -0
  64. data/lib/r509/config.rb +407 -0
  65. data/lib/r509/crl.rb +379 -0
  66. data/lib/r509/csr.rb +324 -0
  67. data/lib/r509/exceptions.rb +5 -0
  68. data/lib/r509/io_helpers.rb +52 -0
  69. data/lib/r509/messagedigest.rb +49 -0
  70. data/lib/r509/ocsp.rb +85 -0
  71. data/lib/r509/oidmapper.rb +32 -0
  72. data/lib/r509/privatekey.rb +185 -0
  73. data/lib/r509/spki.rb +112 -0
  74. data/lib/r509/subject.rb +133 -0
  75. data/lib/r509/validity.rb +92 -0
  76. data/lib/r509/version.rb +4 -0
  77. data/r509.yaml +73 -0
  78. data/spec/cert/extensions_spec.rb +632 -0
  79. data/spec/cert_spec.rb +321 -0
  80. data/spec/certificate_authority_spec.rb +260 -0
  81. data/spec/config_spec.rb +349 -0
  82. data/spec/crl_spec.rb +215 -0
  83. data/spec/csr_spec.rb +302 -0
  84. data/spec/fixtures.rb +233 -0
  85. data/spec/fixtures/cert1.der +0 -0
  86. data/spec/fixtures/cert1.pem +24 -0
  87. data/spec/fixtures/cert1_public_key_modulus.txt +1 -0
  88. data/spec/fixtures/cert3.p12 +0 -0
  89. data/spec/fixtures/cert3.pem +28 -0
  90. data/spec/fixtures/cert3_key.pem +27 -0
  91. data/spec/fixtures/cert3_key_des3.pem +30 -0
  92. data/spec/fixtures/cert4.pem +14 -0
  93. data/spec/fixtures/cert5.pem +30 -0
  94. data/spec/fixtures/cert6.pem +26 -0
  95. data/spec/fixtures/cert_expired.pem +26 -0
  96. data/spec/fixtures/cert_not_yet_valid.pem +26 -0
  97. data/spec/fixtures/cert_san.pem +27 -0
  98. data/spec/fixtures/cert_san2.pem +22 -0
  99. data/spec/fixtures/config_pool_test_minimal.yaml +15 -0
  100. data/spec/fixtures/config_test.yaml +41 -0
  101. data/spec/fixtures/config_test_engine_key.yaml +7 -0
  102. data/spec/fixtures/config_test_engine_no_key_name.yaml +6 -0
  103. data/spec/fixtures/config_test_minimal.yaml +7 -0
  104. data/spec/fixtures/config_test_password.yaml +7 -0
  105. data/spec/fixtures/config_test_various.yaml +100 -0
  106. data/spec/fixtures/crl_list_file.txt +1 -0
  107. data/spec/fixtures/crl_with_reason.pem +17 -0
  108. data/spec/fixtures/csr1.der +0 -0
  109. data/spec/fixtures/csr1.pem +17 -0
  110. data/spec/fixtures/csr1_key.der +0 -0
  111. data/spec/fixtures/csr1_key.pem +27 -0
  112. data/spec/fixtures/csr1_key_encrypted_des3.pem +30 -0
  113. data/spec/fixtures/csr1_newlines.pem +32 -0
  114. data/spec/fixtures/csr1_no_begin_end.pem +15 -0
  115. data/spec/fixtures/csr1_public_key_modulus.txt +1 -0
  116. data/spec/fixtures/csr2.pem +15 -0
  117. data/spec/fixtures/csr2_key.pem +27 -0
  118. data/spec/fixtures/csr3.pem +16 -0
  119. data/spec/fixtures/csr4.pem +25 -0
  120. data/spec/fixtures/csr_dsa.pem +15 -0
  121. data/spec/fixtures/csr_invalid_signature.pem +13 -0
  122. data/spec/fixtures/dsa_key.pem +20 -0
  123. data/spec/fixtures/key4.pem +27 -0
  124. data/spec/fixtures/key4_encrypted_des3.pem +30 -0
  125. data/spec/fixtures/missing_key_identifier_ca.cer +21 -0
  126. data/spec/fixtures/missing_key_identifier_ca.key +27 -0
  127. data/spec/fixtures/ocsptest.r509.local.pem +27 -0
  128. data/spec/fixtures/ocsptest.r509.local_ocsp_request.der +0 -0
  129. data/spec/fixtures/ocsptest2.r509.local.pem +27 -0
  130. data/spec/fixtures/second_ca.cer +26 -0
  131. data/spec/fixtures/second_ca.key +27 -0
  132. data/spec/fixtures/spkac.der +0 -0
  133. data/spec/fixtures/spkac.txt +1 -0
  134. data/spec/fixtures/spkac_dsa.txt +1 -0
  135. data/spec/fixtures/stca.pem +22 -0
  136. data/spec/fixtures/stca_ocsp_request.der +0 -0
  137. data/spec/fixtures/stca_ocsp_response.der +0 -0
  138. data/spec/fixtures/test1.csr +17 -0
  139. data/spec/fixtures/test_ca.cer +22 -0
  140. data/spec/fixtures/test_ca.key +28 -0
  141. data/spec/fixtures/test_ca.p12 +0 -0
  142. data/spec/fixtures/test_ca_des3.key +30 -0
  143. data/spec/fixtures/test_ca_ocsp.cer +26 -0
  144. data/spec/fixtures/test_ca_ocsp.key +27 -0
  145. data/spec/fixtures/test_ca_ocsp.p12 +0 -0
  146. data/spec/fixtures/test_ca_ocsp_chain.txt +48 -0
  147. data/spec/fixtures/test_ca_ocsp_response.der +0 -0
  148. data/spec/fixtures/test_ca_subroot.cer +26 -0
  149. data/spec/fixtures/test_ca_subroot.key +27 -0
  150. data/spec/fixtures/test_ca_subroot_ocsp.cer +25 -0
  151. data/spec/fixtures/test_ca_subroot_ocsp.key +27 -0
  152. data/spec/fixtures/test_ca_subroot_ocsp_response.der +0 -0
  153. data/spec/fixtures/unknown_oid.csr +17 -0
  154. data/spec/message_digest_spec.rb +89 -0
  155. data/spec/ocsp_spec.rb +111 -0
  156. data/spec/oid_mapper_spec.rb +31 -0
  157. data/spec/privatekey_spec.rb +198 -0
  158. data/spec/spec_helper.rb +14 -0
  159. data/spec/spki_spec.rb +157 -0
  160. data/spec/subject_spec.rb +203 -0
  161. data/spec/validity_spec.rb +98 -0
  162. metadata +257 -0
@@ -0,0 +1,394 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <title>
7
+ Class: R509::Validity::Writer
8
+
9
+ &mdash; Documentation by YARD 0.8.0
10
+
11
+ </title>
12
+
13
+ <link rel="stylesheet" href="../../css/style.css" type="text/css" media="screen" charset="utf-8" />
14
+
15
+ <link rel="stylesheet" href="../../css/common.css" type="text/css" media="screen" charset="utf-8" />
16
+
17
+ <script type="text/javascript" charset="utf-8">
18
+ hasFrames = window.top.frames.main ? true : false;
19
+ relpath = '../../';
20
+ framesUrl = "../../frames.html#!" + escape(window.location.href);
21
+ </script>
22
+
23
+
24
+ <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
25
+
26
+ <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
27
+
28
+
29
+ </head>
30
+ <body>
31
+ <div id="header">
32
+ <div id="menu">
33
+
34
+ <a href="../../_index.html">Index (W)</a> &raquo;
35
+ <span class='title'><span class='object_link'><a href="../../R509.html" title="R509 (module)">R509</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Validity.html" title="R509::Validity (module)">Validity</a></span></span>
36
+ &raquo;
37
+ <span class="title">Writer</span>
38
+
39
+
40
+ <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
41
+ </div>
42
+
43
+ <div id="search">
44
+
45
+ <a class="full_list_link" id="class_list_link"
46
+ href="../../class_list.html">
47
+ Class List
48
+ </a>
49
+
50
+ <a class="full_list_link" id="method_list_link"
51
+ href="../../method_list.html">
52
+ Method List
53
+ </a>
54
+
55
+ <a class="full_list_link" id="file_list_link"
56
+ href="../../file_list.html">
57
+ File List
58
+ </a>
59
+
60
+ </div>
61
+ <div class="clear"></div>
62
+ </div>
63
+
64
+ <iframe id="search_frame"></iframe>
65
+
66
+ <div id="content"><h1>Class: R509::Validity::Writer
67
+
68
+
69
+
70
+ </h1>
71
+
72
+ <dl class="box">
73
+
74
+ <dt class="r1">Inherits:</dt>
75
+ <dd class="r1">
76
+ <span class="inheritName">Object</span>
77
+
78
+ <ul class="fullTree">
79
+ <li>Object</li>
80
+
81
+ <li class="next">R509::Validity::Writer</li>
82
+
83
+ </ul>
84
+ <a href="#" class="inheritanceTree">show all</a>
85
+
86
+ </dd>
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+ <dt class="r2 last">Defined in:</dt>
97
+ <dd class="r2 last">lib/r509/validity.rb</dd>
98
+
99
+ </dl>
100
+ <div class="clear"></div>
101
+
102
+ <h2>Overview</h2><div class="docstring">
103
+ <div class="discussion">
104
+
105
+ <p>abstract base class for a Writer</p>
106
+
107
+
108
+ </div>
109
+ </div>
110
+ <div class="tags">
111
+
112
+
113
+ </div><div id="subclasses">
114
+ <h2>Direct Known Subclasses</h2>
115
+ <p class="children"><span class='object_link'><a href="DefaultWriter.html" title="R509::Validity::DefaultWriter (class)">DefaultWriter</a></span></p>
116
+ </div>
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+ <h2>
126
+ Instance Method Summary
127
+ <small>(<a href="#" class="summary_toggle">collapse</a>)</small>
128
+ </h2>
129
+
130
+ <ul class="summary">
131
+
132
+ <li class="public ">
133
+ <span class="summary_signature">
134
+
135
+ <a href="#is_available%3F-instance_method" title="#is_available? (instance method)">- (Boolean) <strong>is_available?</strong> </a>
136
+
137
+
138
+
139
+ </span>
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+ <span class="summary_desc"><div class='inline'>
150
+ <p>is_available? is meant to be implemented to check if the backend store you
151
+ choose to implement is currently working.</p>
152
+ </div></span>
153
+
154
+ </li>
155
+
156
+
157
+ <li class="public ">
158
+ <span class="summary_signature">
159
+
160
+ <a href="#issue-instance_method" title="#issue (instance method)">- (Object) <strong>issue</strong>(issuer, serial) </a>
161
+
162
+
163
+
164
+ </span>
165
+
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+ <span class="summary_desc"><div class='inline'></div></span>
175
+
176
+ </li>
177
+
178
+
179
+ <li class="public ">
180
+ <span class="summary_signature">
181
+
182
+ <a href="#revoke-instance_method" title="#revoke (instance method)">- (Object) <strong>revoke</strong>(issuer, serial, reason) </a>
183
+
184
+
185
+
186
+ </span>
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+ <span class="summary_desc"><div class='inline'></div></span>
197
+
198
+ </li>
199
+
200
+
201
+ </ul>
202
+
203
+
204
+
205
+
206
+ <div id="instance_method_details" class="method_details_list">
207
+ <h2>Instance Method Details</h2>
208
+
209
+
210
+ <div class="method_details first">
211
+ <h3 class="signature first" id="is_available?-instance_method">
212
+
213
+ - (<tt>Boolean</tt>) <strong>is_available?</strong>
214
+
215
+
216
+
217
+
218
+
219
+ </h3><div class="docstring">
220
+ <div class="discussion">
221
+
222
+ <p>is_available? is meant to be implemented to check if the backend store you
223
+ choose to implement is currently working. see r509-ocsp-responder and
224
+ r509-validity-redis for an example of use</p>
225
+
226
+
227
+ </div>
228
+ </div>
229
+ <div class="tags">
230
+
231
+ <p class="tag_title">Returns:</p>
232
+ <ul class="return">
233
+
234
+ <li>
235
+
236
+
237
+ <span class='type'>(<tt>Boolean</tt>)</span>
238
+
239
+
240
+
241
+ </li>
242
+
243
+ </ul>
244
+ <p class="tag_title">Raises:</p>
245
+ <ul class="raise">
246
+
247
+ <li>
248
+
249
+
250
+ <span class='type'>(<tt>NotImplementedError</tt>)</span>
251
+
252
+
253
+
254
+ </li>
255
+
256
+ </ul>
257
+
258
+ </div><table class="source_code">
259
+ <tr>
260
+ <td>
261
+ <pre class="lines">
262
+
263
+
264
+ 51
265
+ 52
266
+ 53</pre>
267
+ </td>
268
+ <td>
269
+ <pre class="code"><span class="info file"># File 'lib/r509/validity.rb', line 51</span>
270
+
271
+ <span class='kw'>def</span> <span class='id identifier rubyid_is_available?'>is_available?</span>
272
+ <span class='id identifier rubyid_raise'>raise</span> <span class='const'>NotImplementedError</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>You must call #is_available? on a subclass of Writer</span><span class='tstring_end'>&quot;</span></span>
273
+ <span class='kw'>end</span></pre>
274
+ </td>
275
+ </tr>
276
+ </table>
277
+ </div>
278
+
279
+ <div class="method_details ">
280
+ <h3 class="signature " id="issue-instance_method">
281
+
282
+ - (<tt>Object</tt>) <strong>issue</strong>(issuer, serial)
283
+
284
+
285
+
286
+
287
+
288
+ </h3><div class="docstring">
289
+ <div class="discussion">
290
+
291
+
292
+ </div>
293
+ </div>
294
+ <div class="tags">
295
+
296
+ <p class="tag_title">Raises:</p>
297
+ <ul class="raise">
298
+
299
+ <li>
300
+
301
+
302
+ <span class='type'>(<tt>NotImplementedError</tt>)</span>
303
+
304
+
305
+
306
+ </li>
307
+
308
+ </ul>
309
+
310
+ </div><table class="source_code">
311
+ <tr>
312
+ <td>
313
+ <pre class="lines">
314
+
315
+
316
+ 41
317
+ 42
318
+ 43</pre>
319
+ </td>
320
+ <td>
321
+ <pre class="code"><span class="info file"># File 'lib/r509/validity.rb', line 41</span>
322
+
323
+ <span class='kw'>def</span> <span class='id identifier rubyid_issue'>issue</span><span class='lparen'>(</span><span class='id identifier rubyid_issuer'>issuer</span><span class='comma'>,</span> <span class='id identifier rubyid_serial'>serial</span><span class='rparen'>)</span>
324
+ <span class='id identifier rubyid_raise'>raise</span> <span class='const'>NotImplementedError</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>You must call #issue on a subclass of Writer</span><span class='tstring_end'>&quot;</span></span>
325
+ <span class='kw'>end</span></pre>
326
+ </td>
327
+ </tr>
328
+ </table>
329
+ </div>
330
+
331
+ <div class="method_details ">
332
+ <h3 class="signature " id="revoke-instance_method">
333
+
334
+ - (<tt>Object</tt>) <strong>revoke</strong>(issuer, serial, reason)
335
+
336
+
337
+
338
+
339
+
340
+ </h3><div class="docstring">
341
+ <div class="discussion">
342
+
343
+
344
+ </div>
345
+ </div>
346
+ <div class="tags">
347
+
348
+ <p class="tag_title">Raises:</p>
349
+ <ul class="raise">
350
+
351
+ <li>
352
+
353
+
354
+ <span class='type'>(<tt>NotImplementedError</tt>)</span>
355
+
356
+
357
+
358
+ </li>
359
+
360
+ </ul>
361
+
362
+ </div><table class="source_code">
363
+ <tr>
364
+ <td>
365
+ <pre class="lines">
366
+
367
+
368
+ 45
369
+ 46
370
+ 47</pre>
371
+ </td>
372
+ <td>
373
+ <pre class="code"><span class="info file"># File 'lib/r509/validity.rb', line 45</span>
374
+
375
+ <span class='kw'>def</span> <span class='id identifier rubyid_revoke'>revoke</span><span class='lparen'>(</span><span class='id identifier rubyid_issuer'>issuer</span><span class='comma'>,</span> <span class='id identifier rubyid_serial'>serial</span><span class='comma'>,</span> <span class='id identifier rubyid_reason'>reason</span><span class='rparen'>)</span>
376
+ <span class='id identifier rubyid_raise'>raise</span> <span class='const'>NotImplementedError</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>You must call #revoke on a subclass of Writer</span><span class='tstring_end'>&quot;</span></span>
377
+ <span class='kw'>end</span></pre>
378
+ </td>
379
+ </tr>
380
+ </table>
381
+ </div>
382
+
383
+ </div>
384
+
385
+ </div>
386
+
387
+ <div id="footer">
388
+ Generated on Tue Oct 23 22:48:02 2012 by
389
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
390
+ 0.8.0 (ruby-1.9.3).
391
+ </div>
392
+
393
+ </body>
394
+ </html>
data/doc/_index.html ADDED
@@ -0,0 +1,501 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6
+ <title>
7
+ Documentation by YARD 0.8.0
8
+
9
+ </title>
10
+
11
+ <link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
12
+
13
+ <link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
14
+
15
+ <script type="text/javascript" charset="utf-8">
16
+ hasFrames = window.top.frames.main ? true : false;
17
+ relpath = '';
18
+ framesUrl = "frames.html#!" + escape(window.location.href);
19
+ </script>
20
+
21
+
22
+ <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
23
+
24
+ <script type="text/javascript" charset="utf-8" src="js/app.js"></script>
25
+
26
+
27
+ </head>
28
+ <body>
29
+ <div id="header">
30
+ <div id="menu">
31
+
32
+
33
+ <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
34
+ </div>
35
+
36
+ <div id="search">
37
+
38
+ <a class="full_list_link" id="class_list_link"
39
+ href="class_list.html">
40
+ Class List
41
+ </a>
42
+
43
+ <a class="full_list_link" id="method_list_link"
44
+ href="method_list.html">
45
+ Method List
46
+ </a>
47
+
48
+ <a class="full_list_link" id="file_list_link"
49
+ href="file_list.html">
50
+ File List
51
+ </a>
52
+
53
+ </div>
54
+ <div class="clear"></div>
55
+ </div>
56
+
57
+ <iframe id="search_frame"></iframe>
58
+
59
+ <div id="content"><h1 class="noborder title">Documentation by YARD 0.8.0</h1>
60
+ <div id="listing">
61
+ <h1 class="alphaindex">Alphabetic Index</h1>
62
+
63
+ <h2>File Listing</h2>
64
+ <ul id="files" class="index_inline_list">
65
+
66
+
67
+ <li class="r1"><a href="index.html" title="README">README</a></li>
68
+
69
+
70
+ <li class="r2"><a href="file.r509.html" title="r509">r509</a></li>
71
+
72
+
73
+ </ul>
74
+
75
+ <div class="clear"></div>
76
+ <h2>Namespace Listing A-Z</h2>
77
+
78
+
79
+
80
+
81
+ <table>
82
+ <tr>
83
+ <td valign='top' width="33%">
84
+
85
+
86
+ <ul id="alpha_A" class="alpha">
87
+ <li class="letter">A</li>
88
+ <ul>
89
+
90
+ <li>
91
+ <span class='object_link'><a href="R509/Crl/Administrator.html" title="R509::Crl::Administrator (class)">Administrator</a></span>
92
+
93
+ <small>(R509::Crl)</small>
94
+
95
+ </li>
96
+
97
+ <li>
98
+ <span class='object_link'><a href="R509/Cert/Extensions/AuthorityInfoAccess.html" title="R509::Cert::Extensions::AuthorityInfoAccess (class)">AuthorityInfoAccess</a></span>
99
+
100
+ <small>(R509::Cert::Extensions)</small>
101
+
102
+ </li>
103
+
104
+ <li>
105
+ <span class='object_link'><a href="R509/Cert/Extensions/AuthorityKeyIdentifier.html" title="R509::Cert::Extensions::AuthorityKeyIdentifier (class)">AuthorityKeyIdentifier</a></span>
106
+
107
+ <small>(R509::Cert::Extensions)</small>
108
+
109
+ </li>
110
+
111
+ </ul>
112
+ </ul>
113
+
114
+
115
+ <ul id="alpha_B" class="alpha">
116
+ <li class="letter">B</li>
117
+ <ul>
118
+
119
+ <li>
120
+ <span class='object_link'><a href="R509/Cert/Extensions/BasicConstraints.html" title="R509::Cert::Extensions::BasicConstraints (class)">BasicConstraints</a></span>
121
+
122
+ <small>(R509::Cert::Extensions)</small>
123
+
124
+ </li>
125
+
126
+ </ul>
127
+ </ul>
128
+
129
+
130
+ <ul id="alpha_C" class="alpha">
131
+ <li class="letter">C</li>
132
+ <ul>
133
+
134
+ <li>
135
+ <span class='object_link'><a href="R509/Config/CaConfig.html" title="R509::Config::CaConfig (class)">CaConfig</a></span>
136
+
137
+ <small>(R509::Config)</small>
138
+
139
+ </li>
140
+
141
+ <li>
142
+ <span class='object_link'><a href="R509/Config/CaConfigPool.html" title="R509::Config::CaConfigPool (class)">CaConfigPool</a></span>
143
+
144
+ <small>(R509::Config)</small>
145
+
146
+ </li>
147
+
148
+ <li>
149
+ <span class='object_link'><a href="R509/Config/CaProfile.html" title="R509::Config::CaProfile (class)">CaProfile</a></span>
150
+
151
+ <small>(R509::Config)</small>
152
+
153
+ </li>
154
+
155
+ <li>
156
+ <span class='object_link'><a href="R509/Cert.html" title="R509::Cert (class)">Cert</a></span>
157
+
158
+ <small>(R509)</small>
159
+
160
+ </li>
161
+
162
+ <li>
163
+ <span class='object_link'><a href="R509/CertificateAuthority.html" title="R509::CertificateAuthority (module)">CertificateAuthority</a></span>
164
+
165
+ <small>(R509)</small>
166
+
167
+ </li>
168
+
169
+ <li>
170
+ <span class='object_link'><a href="R509/Validity/Checker.html" title="R509::Validity::Checker (class)">Checker</a></span>
171
+
172
+ <small>(R509::Validity)</small>
173
+
174
+ </li>
175
+
176
+ <li>
177
+ <span class='object_link'><a href="R509/Config.html" title="R509::Config (module)">Config</a></span>
178
+
179
+ <small>(R509)</small>
180
+
181
+ </li>
182
+
183
+ <li>
184
+ <span class='object_link'><a href="R509/Crl.html" title="R509::Crl (module)">Crl</a></span>
185
+
186
+ <small>(R509)</small>
187
+
188
+ </li>
189
+
190
+ <li>
191
+ <span class='object_link'><a href="R509/Cert/Extensions/CrlDistributionPoints.html" title="R509::Cert::Extensions::CrlDistributionPoints (class)">CrlDistributionPoints</a></span>
192
+
193
+ <small>(R509::Cert::Extensions)</small>
194
+
195
+ </li>
196
+
197
+ <li>
198
+ <span class='object_link'><a href="R509/Csr.html" title="R509::Csr (class)">Csr</a></span>
199
+
200
+ <small>(R509)</small>
201
+
202
+ </li>
203
+
204
+ </ul>
205
+ </ul>
206
+
207
+
208
+ <ul id="alpha_D" class="alpha">
209
+ <li class="letter">D</li>
210
+ <ul>
211
+
212
+ <li>
213
+ <span class='object_link'><a href="R509/Validity/DefaultChecker.html" title="R509::Validity::DefaultChecker (class)">DefaultChecker</a></span>
214
+
215
+ <small>(R509::Validity)</small>
216
+
217
+ </li>
218
+
219
+ <li>
220
+ <span class='object_link'><a href="R509/Validity/DefaultWriter.html" title="R509::Validity::DefaultWriter (class)">DefaultWriter</a></span>
221
+
222
+ <small>(R509::Validity)</small>
223
+
224
+ </li>
225
+
226
+ </ul>
227
+ </ul>
228
+
229
+
230
+ <ul id="alpha_E" class="alpha">
231
+ <li class="letter">E</li>
232
+ <ul>
233
+
234
+ <li>
235
+ <span class='object_link'><a href="R509/Cert/Extensions/ExtendedKeyUsage.html" title="R509::Cert::Extensions::ExtendedKeyUsage (class)">ExtendedKeyUsage</a></span>
236
+
237
+ <small>(R509::Cert::Extensions)</small>
238
+
239
+ </li>
240
+
241
+ <li>
242
+ <span class='object_link'><a href="R509/Cert/Extensions.html" title="R509::Cert::Extensions (module)">Extensions</a></span>
243
+
244
+ <small>(R509::Cert)</small>
245
+
246
+ </li>
247
+
248
+ </ul>
249
+ </ul>
250
+
251
+
252
+ <ul id="alpha_I" class="alpha">
253
+ <li class="letter">I</li>
254
+ <ul>
255
+
256
+ <li>
257
+ <span class='object_link'><a href="R509/IOHelpers.html" title="R509::IOHelpers (module)">IOHelpers</a></span>
258
+
259
+ <small>(R509)</small>
260
+
261
+ </li>
262
+
263
+ </ul>
264
+ </ul>
265
+
266
+
267
+ <ul id="alpha_K" class="alpha">
268
+ <li class="letter">K</li>
269
+ <ul>
270
+
271
+ <li>
272
+ <span class='object_link'><a href="R509/Cert/Extensions/KeyUsage.html" title="R509::Cert::Extensions::KeyUsage (class)">KeyUsage</a></span>
273
+
274
+ <small>(R509::Cert::Extensions)</small>
275
+
276
+ </li>
277
+
278
+ </ul>
279
+ </ul>
280
+
281
+
282
+ </td><td valign='top' width="33%">
283
+
284
+
285
+ <ul id="alpha_M" class="alpha">
286
+ <li class="letter">M</li>
287
+ <ul>
288
+
289
+ <li>
290
+ <span class='object_link'><a href="R509/MessageDigest.html" title="R509::MessageDigest (class)">MessageDigest</a></span>
291
+
292
+ <small>(R509)</small>
293
+
294
+ </li>
295
+
296
+ </ul>
297
+ </ul>
298
+
299
+
300
+ <ul id="alpha_N" class="alpha">
301
+ <li class="letter">N</li>
302
+ <ul>
303
+
304
+ <li>
305
+ <span class='object_link'><a href="R509/NameSanitizer.html" title="R509::NameSanitizer (class)">NameSanitizer</a></span>
306
+
307
+ <small>(R509)</small>
308
+
309
+ </li>
310
+
311
+ <li>
312
+ <span class='object_link'><a href="R509/Ocsp/Request/Nonce.html" title="R509::Ocsp::Request::Nonce (module)">Nonce</a></span>
313
+
314
+ <small>(R509::Ocsp::Request)</small>
315
+
316
+ </li>
317
+
318
+ </ul>
319
+ </ul>
320
+
321
+
322
+ <ul id="alpha_O" class="alpha">
323
+ <li class="letter">O</li>
324
+ <ul>
325
+
326
+ <li>
327
+ <span class='object_link'><a href="R509/Ocsp.html" title="R509::Ocsp (module)">Ocsp</a></span>
328
+
329
+ <small>(R509)</small>
330
+
331
+ </li>
332
+
333
+ <li>
334
+ <span class='object_link'><a href="R509/OidMapper.html" title="R509::OidMapper (class)">OidMapper</a></span>
335
+
336
+ <small>(R509)</small>
337
+
338
+ </li>
339
+
340
+ </ul>
341
+ </ul>
342
+
343
+
344
+ <ul id="alpha_P" class="alpha">
345
+ <li class="letter">P</li>
346
+ <ul>
347
+
348
+ <li>
349
+ <span class='object_link'><a href="R509/Crl/Parser.html" title="R509::Crl::Parser (class)">Parser</a></span>
350
+
351
+ <small>(R509::Crl)</small>
352
+
353
+ </li>
354
+
355
+ <li>
356
+ <span class='object_link'><a href="R509/PrivateKey.html" title="R509::PrivateKey (class)">PrivateKey</a></span>
357
+
358
+ <small>(R509)</small>
359
+
360
+ </li>
361
+
362
+ </ul>
363
+ </ul>
364
+
365
+
366
+ <ul id="alpha_R" class="alpha">
367
+ <li class="letter">R</li>
368
+ <ul>
369
+
370
+ <li>
371
+ <span class='object_link'><a href="R509.html" title="R509 (module)">R509</a></span>
372
+
373
+ </li>
374
+
375
+ <li>
376
+ <span class='object_link'><a href="R509/R509Error.html" title="R509::R509Error (class)">R509Error</a></span>
377
+
378
+ <small>(R509)</small>
379
+
380
+ </li>
381
+
382
+ <li>
383
+ <span class='object_link'><a href="R509/Ocsp/Request.html" title="R509::Ocsp::Request (module)">Request</a></span>
384
+
385
+ <small>(R509::Ocsp)</small>
386
+
387
+ </li>
388
+
389
+ <li>
390
+ <span class='object_link'><a href="R509/Ocsp/Response.html" title="R509::Ocsp::Response (class)">Response</a></span>
391
+
392
+ <small>(R509::Ocsp)</small>
393
+
394
+ </li>
395
+
396
+ </ul>
397
+ </ul>
398
+
399
+
400
+ <ul id="alpha_S" class="alpha">
401
+ <li class="letter">S</li>
402
+ <ul>
403
+
404
+ <li>
405
+ <span class='object_link'><a href="R509/CertificateAuthority/Signer.html" title="R509::CertificateAuthority::Signer (class)">Signer</a></span>
406
+
407
+ <small>(R509::CertificateAuthority)</small>
408
+
409
+ </li>
410
+
411
+ <li>
412
+ <span class='object_link'><a href="R509/Spki.html" title="R509::Spki (class)">Spki</a></span>
413
+
414
+ <small>(R509)</small>
415
+
416
+ </li>
417
+
418
+ <li>
419
+ <span class='object_link'><a href="R509/Validity/Status.html" title="R509::Validity::Status (class)">Status</a></span>
420
+
421
+ <small>(R509::Validity)</small>
422
+
423
+ </li>
424
+
425
+ <li>
426
+ <span class='object_link'><a href="R509/Subject.html" title="R509::Subject (class)">Subject</a></span>
427
+
428
+ <small>(R509)</small>
429
+
430
+ </li>
431
+
432
+ <li>
433
+ <span class='object_link'><a href="R509/Cert/Extensions/SubjectAlternativeName.html" title="R509::Cert::Extensions::SubjectAlternativeName (class)">SubjectAlternativeName</a></span>
434
+
435
+ <small>(R509::Cert::Extensions)</small>
436
+
437
+ </li>
438
+
439
+ <li>
440
+ <span class='object_link'><a href="R509/Config/SubjectItemPolicy.html" title="R509::Config::SubjectItemPolicy (class)">SubjectItemPolicy</a></span>
441
+
442
+ <small>(R509::Config)</small>
443
+
444
+ </li>
445
+
446
+ <li>
447
+ <span class='object_link'><a href="R509/Cert/Extensions/SubjectKeyIdentifier.html" title="R509::Cert::Extensions::SubjectKeyIdentifier (class)">SubjectKeyIdentifier</a></span>
448
+
449
+ <small>(R509::Cert::Extensions)</small>
450
+
451
+ </li>
452
+
453
+ </ul>
454
+ </ul>
455
+
456
+
457
+ <ul id="alpha_V" class="alpha">
458
+ <li class="letter">V</li>
459
+ <ul>
460
+
461
+ <li>
462
+ <span class='object_link'><a href="R509/Validity.html" title="R509::Validity (module)">Validity</a></span>
463
+
464
+ <small>(R509)</small>
465
+
466
+ </li>
467
+
468
+ </ul>
469
+ </ul>
470
+
471
+
472
+ <ul id="alpha_W" class="alpha">
473
+ <li class="letter">W</li>
474
+ <ul>
475
+
476
+ <li>
477
+ <span class='object_link'><a href="R509/Validity/Writer.html" title="R509::Validity::Writer (class)">Writer</a></span>
478
+
479
+ <small>(R509::Validity)</small>
480
+
481
+ </li>
482
+
483
+ </ul>
484
+ </ul>
485
+
486
+ </td>
487
+ </tr>
488
+ </table>
489
+
490
+ </div>
491
+
492
+ </div>
493
+
494
+ <div id="footer">
495
+ Generated on Tue Oct 23 22:48:01 2012 by
496
+ <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
497
+ 0.8.0 (ruby-1.9.3).
498
+ </div>
499
+
500
+ </body>
501
+ </html>