2003-11-07 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Pkcs / KeyAgreeKeyChoice.cs
1 //
2 // KeyAgreeKeyChoice.cs - System.Security.Cryptography.Pkcs.KeyAgreeKeyChoice
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.Pkcs {
15
16         public enum KeyAgreeKeyChoice {
17                 Unknown,
18                 EphemeralKey,
19                 StaticKey
20         }
21 }
22
23 #endif