svn path=/branches/mono-1-1-9/mcs/; revision=51216
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.X509Certificates / X509Chain.cs
1 //
2 // System.Security.Cryptography.X509Certificates.X509Chain
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 // Copyright (C) 2004-2005 Novell Inc. (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if NET_2_0
31
32 namespace System.Security.Cryptography.X509Certificates {
33
34         public class X509Chain {
35
36                 private bool _machineContext;
37                 private X509ChainElementCollection _elements;
38                 private X509ChainPolicy _policy;
39                 private X509ChainStatus[] _status;
40
41                 // constructors
42
43                 public X509Chain () : this (false)
44                 {
45                 }
46
47                 public X509Chain (bool useMachineContext) 
48                 {
49                         _machineContext = useMachineContext;
50                         _elements = new X509ChainElementCollection ();
51                         _policy = new X509ChainPolicy ();
52                 }
53
54                 public X509Chain (IntPtr chainContext)
55                 {
56                         // CryptoAPI compatibility (unmanaged handle)
57                         throw new NotSupportedException ();
58                 }
59
60                 // properties
61
62                 public IntPtr ChainContext {
63                         get { return IntPtr.Zero; }
64                 }
65
66                 public X509ChainElementCollection ChainElements {
67                         get { return _elements; }
68                 }
69
70                 public X509ChainPolicy ChainPolicy {
71                         get { return _policy; }
72                         set { _policy = value; }
73                 }
74
75                 public X509ChainStatus[] ChainStatus {
76                         get { 
77                                 if (_status == null)
78                                         _status = new X509ChainStatus [0]; 
79                                 return _status;
80                         }
81                 } 
82
83                 // methods
84
85                 [MonoTODO]
86                 public bool Build (X509Certificate2 certificate)
87                 {
88                         return false;
89                 }
90
91                 [MonoTODO]
92                 public void Reset () 
93                 {
94                 }
95
96                 // static methods
97
98                 public static X509Chain Create ()
99                 {
100                         return new X509Chain ();
101                 }
102         }
103 }
104
105 #endif