2004-05-26 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / corlib / System.Security.Cryptography / KeyNumber.cs
1 //
2 // KeyNumber.cs: Key Number for CAPI containers
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 {
15
16         public enum KeyNumber {
17                 Exchange,
18                 Signature
19         } 
20 }
21
22 #endif