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