You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
337 B

namespace com.hitrust.Security.Certificates
{
using System;
[Flags]
public enum KeyUsage
{
CrlSign = 2,
DataEncipherment = 0x10,
DigitalSignature = 0x80,
KeyAgreement = 8,
KeyCertSign = 4,
KeyEncipherment = 0x20,
NonRepudiation = 0x40
}
}