51463fbf9d16a938c859aa7a8a661bf15207efce
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Pkcs / SubjectIdentifierType.cs
1 //
2 // SubjectIdentifierType.cs - System.Security.Cryptography.Pkcs.SubjectIdentifierType
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_2_0
11
12 using System;
13
14 namespace System.Security.Cryptography.Pkcs {
15
16         public enum SubjectIdentifierType {
17                 Unknown,
18                 IssuerAndSerialNumber,
19                 SubjectKeyIdentifier
20         }
21 }
22
23 #endif