Table of Contents

Enum SslCertificateUsageFlags

Namespace
CENTREL.XIA.Configuration.Types
Assembly
CENTREL.XIA.Configuration.Types.dll

Represents the permitted usage of an SSL certificate.

[Flags]
public enum SslCertificateUsageFlags

Fields

CrlSign = 2

The key can be used to sign a certificate revocation list (CRL).

DataEncipherment = 16

The key can be used for data encryption.

DecipherOnly = 32768

The key can be used for decryption only.

DigitalSignature = 128

The key can be used as a digital signature.

EncipherOnly = 1

The key can be used for encryption only.

KeyAgreement = 8

The key can be used to determine key agreement, such as a key created using the Diffie-Hellman key agreement algorithm.

KeyCertSign = 4

The key can be used to sign certificates.

KeyEncipherment = 32

The key can be used for key encryption.

NonRepudiation = 64

The key can be used for authentication.

None = 0

No key usage parameters.