KeyAgreeKeyChoice.cs 362 B

1234567891011121314151617181920212223
  1. //
  2. // KeyAgreeKeyChoice.cs - System.Security.Cryptography.Pkcs.KeyAgreeKeyChoice
  3. //
  4. // Author:
  5. // Sebastien Pouliot ([email protected])
  6. //
  7. // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
  8. //
  9. #if NET_1_2
  10. using System;
  11. namespace System.Security.Cryptography.Pkcs {
  12. public enum KeyAgreeKeyChoice {
  13. Unknown,
  14. EphemeralKey,
  15. StaticKey
  16. }
  17. }
  18. #endif