2
0

X509KeyUsageFlags.cs 599 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // X509KeyUsageFlags.cs - System.Security.Cryptography.X509Certificates.X509KeyUsageFlags
  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.X509Certificates {
  12. // Note: Match the definition of framework version 1.2.3400.0 on http://longhorn.msdn.microsoft.com
  13. public enum X509KeyUsageFlags {
  14. EncipherOnly,
  15. CRLSign,
  16. KeyCertSign,
  17. KeyAgreement,
  18. DataEncipherment,
  19. KeyEncipherment,
  20. NonRepudiation,
  21. DigitalSignature,
  22. DecipherOnly
  23. }
  24. }
  25. #endif