* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / Mono.Security / Mono.Security.X509 / X509ChainStatusFlags.cs
1 //
2 // X509ChainStatusFlags.cs: X.509 Chain Status
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
33 namespace Mono.Security.X509 {
34
35         // definitions from Fx 1.2
36         // commented flags aren't implemented in X509Chain
37
38         [Serializable]
39         [Flags]
40 #if INSIDE_CORLIB
41         internal
42 #else
43         public 
44 #endif
45         enum X509ChainStatusFlags {
46 //              CtlNotSignatureValid = 262144,
47 //              CtlNotTimeValid = 131072,
48 //              CtlNotValidForUsage = 524288,
49 //              Cyclic = 128,
50 //              HasExcludedNameConstraint = 32768,
51 //              HasNotDefinedNameConstraint = 8192,
52 //              HasNotPermittedNameConstraint = 16384,
53 //              HasNotSupportedNameConstraint = 4096,
54                 InvalidBasicConstraints = 1024,
55 //              InvalidExtension = 256,
56 //              InvalidNameConstraints = 2048,
57 //              InvalidPolicyConstraints = 512,
58                 NoError = 0,
59 //              NoIssuanceChainPolicy = 33554432,
60                 NotSignatureValid = 8,
61                 NotTimeNested = 2,
62                 NotTimeValid = 1,
63 //              NotValidForUsage = 16,
64 //              OfflineRevocation = 16777216,
65                 PartialChain = 65536,
66 //              RevocationStatusUnknown = 64,
67 //              Revoked = 4,
68                 UntrustedRoot = 32
69         } 
70 }