mscorlib(4.0.0.0) API with additions
CngKeyUsages.cs
2 {
4  [Flags]
5  public enum CngKeyUsages
6  {
8  None = 0x0,
10  Decryption = 0x1,
12  Signing = 0x2,
14  KeyAgreement = 0x4,
16  AllUsages = 0xFFFFFF
17  }
18 }
The key can be used for signing and verification.
CngKeyUsages
Specifies the cryptographic operations that a Cryptography Next Generation (CNG) key may be used with...
Definition: CngKeyUsages.cs:5
The key can be used for all purposes.
The key can be used for secret agreement generation and key exchange.
The key can be used for encryption and decryption.