| 1234567891011121314151617181920212223 |
- //
- // KeyAgreeKeyChoice.cs - System.Security.Cryptography.Pkcs.KeyAgreeKeyChoice
- //
- // Author:
- // Sebastien Pouliot ([email protected])
- //
- // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
- //
- #if NET_1_2
- using System;
- namespace System.Security.Cryptography.Pkcs {
- public enum KeyAgreeKeyChoice {
- Unknown,
- EphemeralKey,
- StaticKey
- }
- }
- #endif
|