System.Security.Cryptography.CngKeyUsages
namespace System.Security.Cryptography
{
public enum CngKeyUsages
{
AllUsages = 16777215,
Decryption = 1,
KeyAgreement = 4,
None = 0,
Signing = 2
}
}