mscorlib(4.0.0.0) API with additions
X509KeyUsageFlags.cs
2 {
4  [Flags]
5  public enum X509KeyUsageFlags
6  {
8  None = 0x0,
10  EncipherOnly = 0x1,
12  CrlSign = 0x2,
14  KeyCertSign = 0x4,
16  KeyAgreement = 0x8,
18  DataEncipherment = 0x10,
20  KeyEncipherment = 0x20,
22  NonRepudiation = 0x40,
24  DigitalSignature = 0x80,
26  DecipherOnly = 0x8000
27  }
28 }
The key can be used for secret agreement generation and key exchange.
X509KeyUsageFlags
Defines how the certificate key can be used. If this value is not defined, the key can be used for an...
The key can be used to sign a certificate revocation list (CRL).