[Mono.Security]: Add the new certificate store.
[mono.git] / mcs / class / Mono.Security / Mono.Security.X509 / X509Stores.cs
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 //
9
10 //
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.
29 //
30
31 using System;
32 using System.Collections;
33 using System.IO;
34
35 using Mono.Security.X509.Extensions;
36
37 namespace Mono.Security.X509 {
38
39 #if INSIDE_CORLIB
40         internal
41 #else
42         public 
43 #endif
44         class X509Stores {
45
46                 private string _storePath;
47                 private bool _newFormat;
48                 private X509Store _personal;
49                 private X509Store _other;
50                 private X509Store _intermediate;
51                 private X509Store _trusted;
52                 private X509Store _untrusted;
53
54                 internal X509Stores (string path, bool newFormat)
55                 {
56                         _storePath = path;
57                         _newFormat = newFormat;
58                 }
59
60                 // properties
61
62                 public X509Store Personal {
63                         get { 
64                                 if (_personal == null) {
65                                         string path = Path.Combine (_storePath, Names.Personal);
66                                         _personal = new X509Store (path, false, false);
67                                 }
68                                 return _personal; 
69                         }
70                 }
71
72                 public X509Store OtherPeople {
73                         get { 
74                                 if (_other == null) {
75                                         string path = Path.Combine (_storePath, Names.OtherPeople);
76                                         _other = new X509Store (path, false, false);
77                                 }
78                                 return _other; 
79                         }
80                 }
81
82                 public X509Store IntermediateCA {
83                         get { 
84                                 if (_intermediate == null) {
85                                         string path = Path.Combine (_storePath, Names.IntermediateCA);
86                                         _intermediate = new X509Store (path, true, _newFormat);
87                                 }
88                                 return _intermediate; 
89                         }
90                 }
91
92                 public X509Store TrustedRoot {
93                         get { 
94                                 if (_trusted == null) {
95                                         string path = Path.Combine (_storePath, Names.TrustedRoot);
96                                         _trusted = new X509Store (path, true, _newFormat);
97                                 }
98                                 return _trusted; 
99                         }
100                 }
101
102                 public X509Store Untrusted {
103                         get { 
104                                 if (_untrusted == null) {
105                                         string path = Path.Combine (_storePath, Names.Untrusted);
106                                         _untrusted = new X509Store (path, false, _newFormat);
107                                 }
108                                 return _untrusted; 
109                         }
110                 }
111
112                 // methods
113
114                 public void Clear () 
115                 {
116                         // this will force a reload of all stores
117                         if (_personal != null)
118                                 _personal.Clear ();
119                         _personal = null;
120                         if (_other != null)
121                                 _other.Clear ();
122                         _other = null;
123                         if (_intermediate != null)
124                                 _intermediate.Clear ();
125                         _intermediate = null;
126                         if (_trusted != null)
127                                 _trusted.Clear ();
128                         _trusted = null;
129                         if (_untrusted != null)
130                                 _untrusted.Clear ();
131                         _untrusted = null;
132                 }
133
134                 public X509Store Open (string storeName, bool create)
135                 {
136                         if (storeName == null)
137                                 throw new ArgumentNullException ("storeName");
138
139                         string path = Path.Combine (_storePath, storeName);
140                         if (!create && !Directory.Exists (path))
141                                 return null;
142
143                         return new X509Store (path, true, false);
144                 }
145
146                 // names
147
148                 public class Names {
149
150                         // do not translate
151                         public const string Personal = "My";
152                         public const string OtherPeople = "AddressBook";
153                         public const string IntermediateCA = "CA";
154                         public const string TrustedRoot = "Trust";
155                         public const string Untrusted = "Disallowed";
156
157                         public Names () {}
158                 }
159         }
160 }