disable broken tests on net_4_0
[mcs.git] / class / corlib / Mono.Security.X509 / X509Stores.cs
blobbfe7451b5dee1c229ac4ff2ae990ff92a60af0b8
1 //
2 // X509Stores.cs: Handles X.509 certificates/CRLs stores group.
3 //
4 // Author:
5 // Sebastien Pouliot <sebastien@ximian.com>
6 //
7 // (C) 2004 Novell (http://www.novell.com)
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using System;
32 using System.Collections;
33 using System.IO;
35 using Mono.Security.X509.Extensions;
37 namespace Mono.Security.X509 {
39 #if INSIDE_CORLIB
40 internal
41 #else
42 public
43 #endif
44 class X509Stores {
46 private string _storePath;
47 private X509Store _personal;
48 private X509Store _other;
49 private X509Store _intermediate;
50 private X509Store _trusted;
51 private X509Store _untrusted;
53 internal X509Stores (string path)
55 _storePath = path;
58 // properties
60 public X509Store Personal {
61 get {
62 if (_personal == null) {
63 string path = Path.Combine (_storePath, Names.Personal);
64 _personal = new X509Store (path, false);
66 return _personal;
70 public X509Store OtherPeople {
71 get {
72 if (_other == null) {
73 string path = Path.Combine (_storePath, Names.OtherPeople);
74 _other = new X509Store (path, false);
76 return _other;
80 public X509Store IntermediateCA {
81 get {
82 if (_intermediate == null) {
83 string path = Path.Combine (_storePath, Names.IntermediateCA);
84 _intermediate = new X509Store (path, true);
86 return _intermediate;
90 public X509Store TrustedRoot {
91 get {
92 if (_trusted == null) {
93 string path = Path.Combine (_storePath, Names.TrustedRoot);
94 _trusted = new X509Store (path, true);
96 return _trusted;
100 public X509Store Untrusted {
101 get {
102 if (_untrusted == null) {
103 string path = Path.Combine (_storePath, Names.Untrusted);
104 _untrusted = new X509Store (path, false);
106 return _untrusted;
110 // methods
112 public void Clear ()
114 // this will force a reload of all stores
115 if (_personal != null)
116 _personal.Clear ();
117 _personal = null;
118 if (_other != null)
119 _other.Clear ();
120 _other = null;
121 if (_intermediate != null)
122 _intermediate.Clear ();
123 _intermediate = null;
124 if (_trusted != null)
125 _trusted.Clear ();
126 _trusted = null;
127 if (_untrusted != null)
128 _untrusted.Clear ();
129 _untrusted = null;
132 public X509Store Open (string storeName, bool create)
134 if (storeName == null)
135 throw new ArgumentNullException ("storeName");
137 string path = Path.Combine (_storePath, storeName);
138 if (!create && !Directory.Exists (path))
139 return null;
141 return new X509Store (path, true);
144 // names
146 public class Names {
148 // do not translate
149 public const string Personal = "My";
150 public const string OtherPeople = "AddressBook";
151 public const string IntermediateCA = "CA";
152 public const string TrustedRoot = "Trust";
153 public const string Untrusted = "Disallowed";
155 public Names () {}