2003-12-07 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.X509Certificates / X509KeyUsageFlags.cs
1 //
2 // X509KeyUsageFlags.cs - System.Security.Cryptography.X509Certificates.X509KeyUsageFlags
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 #if NET_1_2
11
12 using System;
13
14 namespace System.Security.Cryptography.X509Certificates {
15
16         // Note: Match the definition of framework version 1.2.3400.0 on http://longhorn.msdn.microsoft.com
17
18         public enum X509KeyUsageFlags {
19                 EncipherOnly,
20                 CRLSign,
21                 KeyCertSign,
22                 KeyAgreement,
23                 DataEncipherment,
24                 KeyEncipherment,
25                 NonRepudiation,
26                 DigitalSignature,
27                 DecipherOnly
28         }
29 }
30
31 #endif